:root {
    --primary-color: #005baa;
    --secondary-color: #ff6b00;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #ddd;
    --dark-gray: #777;
    --header-height: 80px;
    --nav-height: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Skip Links */
.skip-links {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.skip-links a {
    background-color: black;
    color: white;
    padding: 10px 15px;
    position: absolute;
    left: 0;
    top: 0;
    transition: top 0.3s ease;
}

.skip-links a:focus {
    top: 100px;
}

/* Language Selector Styles */
.language-selector {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 0;
}

.language-selector-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.current-language {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    padding: 5px 10px;
}

.current-language i {
    margin-right: 5px;
}

.language-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 120px;
    margin-top: 5px;
}

.language-selector-inner:hover .language-options {
    display: block;
}

.language-options li {
    border-bottom: 1px solid #f0f0f0;
}

.language-options li:last-child {
    border-bottom: none;
}

.language-options a {
    display: block;
    padding: 8px 15px;
    color: #666;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.language-options a:hover,
.language-options a.active {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

/* Header */
#site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.text-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    margin-left: auto;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Primary Navigation */
.primary-navigation {
    background-color: var(--primary-color);
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 99;
    height: var(--nav-height);
}

.menu {
    display: flex;
    height: 100%;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    color: white;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.menu > li:hover > a,
.menu > li.active > a {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-icon {
    display: inline-block;
    margin-left: 5px;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Sub Menu */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

.sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    border-bottom: 1px solid var(--light-gray);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sub-menu li:last-child a {
    border-bottom: none;
}

.sub-menu li a:hover,
.sub-menu li.active a {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* Fullscreen Hero Section with Slider */
.fullscreen-hero {
    height: 100vh;
    width: 100%;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.hero-slide.active .hero-content {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-nav-btn.active {
    background-color: white;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    color: white;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-indicator i {
    font-size: 20px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

/* Featured Products Section */
.featured-products {
    margin-bottom: 60px;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
}

.featured-products h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.product-card p {
    padding: 0 20px 20px;
    color: var(--dark-gray);
}

.product-card .btn {
    margin: 0 20px 20px;
}

/* Company Info Section */
.company-info {
    margin-bottom: 60px;
}

.info-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-column h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.info-column h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 10px;
}

.info-column p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Latest News Section */
.latest-news {
    margin-bottom: 60px;
}

.latest-news h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
}

.latest-news h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.news-date {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.news-date .day {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.news-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.news-content {
    padding: 20px;
    flex: 1;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.news-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.view-all-news {
    text-align: center;
    margin-top: 30px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f8f8;
    padding: 60px 0;
    margin-bottom: 60px;
    text-align: center;
    border-radius: 8px;
}

.testimonials h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
}

.testimonials h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    padding: 0 20px;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: #f0f0f0;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-nav-btn.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(to right, var(--primary-color), #0077cc);
    color: white;
    padding: 60px 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 60px;
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-banner .primary-btn {
    background-color: white;
    color: var(--primary-color);
}

.cta-banner .primary-btn:hover {
    background-color: #f0f0f0;
}

.cta-banner .secondary-btn {
    background-color: transparent;
    border: 2px solid white;
}

.cta-banner .secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Text Link */
.text-link {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.text-link::after {
    content: '→';
    display: inline-block;
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.text-link:hover {
    color: var(--secondary-color);
}

.text-link:hover::after {
    margin-left: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: #004c8c;
}

.secondary-btn {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Footer */
#genesis-footer-widgets {
    background-color: #222;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column address {
    font-style: normal;
    line-height: 1.8;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

/* Page Title Banner */
.page-title-banner {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 50px;
    margin-top: calc(var(--header-height) + var(--nav-height));
    text-align: center;
}

.page-title-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info h2,
.contact-form-container h2,
.map-container h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    position: relative;
}

.contact-info h2::after,
.contact-form-container h2::after,
.map-container h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 10px;
}

.contact-info p {
    margin-bottom: 30px;
    color: #666;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item .text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item .text p {
    margin-bottom: 5px;
    color: #666;
}

.social-media h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Contact Form */
.contact-form-container {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group button {
    width: 100%;
    margin-top: 10px;
}

/* Map Container */
.map-container {
    margin-bottom: 50px;
}

.map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Products Page Styles */
.products-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.products-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.products-intro p {
    color: #666;
    line-height: 1.8;
}

/* Product Categories */
.product-categories {
    margin-bottom: 60px;
}

.product-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.product-category.reverse {
    direction: rtl;
}

.product-category.reverse .product-category-content {
    direction: ltr;
}

.product-category-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-category-image img:hover {
    transform: scale(1.02);
}

.product-category-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.product-category-content h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 10px;
}

.product-category-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.product-list {
    list-style: none;
    margin-bottom: 25px;
}

.product-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    position: relative;
    padding-left: 25px;
}

.product-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
}

.product-list li:last-child {
    border-bottom: none;
}

/* Product Applications */
.product-applications {
    background-color: #f8f8f8;
    padding: 50px 0;
    margin-bottom: 60px;
    border-radius: 8px;
}

.product-applications h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.product-applications h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.application-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.application-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.application-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.application-card p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 50px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Product Detail Page Styles */
.product-detail-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-detail-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.product-detail-content h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 10px;
}

.product-detail-content p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
}

.product-highlights {
    margin: 25px 0;
}

.highlight {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.highlight i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* Product Types */
.product-types {
    margin-bottom: 60px;
}

.product-types h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.product-types h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.product-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-type-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-type-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-type-card p {
    margin-bottom: 20px;
    color: #666;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Product Grades */
.product-grades {
    margin-bottom: 60px;
}

.product-grades h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.product-grades h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

/* Tabs */
.tabs {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.tab-header {
    display: flex;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    padding: 15px 25px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    color: #666;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.tab-btn:hover:not(.active) {
    background-color: #e9e9e9;
}

.tab-content {
    padding: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Product Table */
.product-table {
    width: 100%;
    border-collapse: collapse;
}

.product-table th, 
.product-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.product-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: var(--primary-color);
}

.product-table tr:last-child td {
    border-bottom: none;
}

.product-table tr:hover td {
    background-color: #f9f9f9;
}

/* Product Applications Section */
.product-applications-section {
    margin-bottom: 60px;
}

.product-applications-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.product-applications-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.application-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.application-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.application-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.application-image:hover img {
    transform: scale(1.05);
}

.application-image span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 500;
}

/* Technical Support */
.technical-support {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.technical-support h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.technical-support p {
    margin-bottom: 30px;
    color: #666;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.resource-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.resource-link i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.resource-link span {
    font-weight: 500;
}

/* CTA Section in Product Detail */
.cta-section .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* Header & Navigation */
    #site-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .primary-navigation {
        height: auto;
        top: var(--header-height);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .primary-navigation.active {
        transform: translateY(0);
    }
    
    .menu {
        flex-direction: column;
        height: auto;
    }
    
    .menu > li > a {
        color: var(--text-color);
        border-bottom: 1px solid var(--light-gray);
        padding: 15px 20px;
        height: auto;
    }
    
    .menu > li:last-child > a {
        border-bottom: none;
    }
    
    .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        background-color: var(--light-gray);
    }
    
    .menu-item-has-children:hover .sub-menu {
        display: none;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .slider-arrows {
        padding: 0 15px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Main Content */
    .info-columns {
        grid-template-columns: 1fr;
    }
    
    .product-detail-intro {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .tab-header {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }
    
    .tab-btn:last-child {
        border-bottom: none;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
    }
    
    .product-table {
        display: block;
        overflow-x: auto;
    }
    
    /* Contact Page */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .page-title-banner {
        padding: 80px 0 40px;
    }
    
    .page-title-banner h1 {
        font-size: 2rem;
    }
    
    /* Products Page */
    .product-category {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-category.reverse {
        direction: ltr;
    }
    
    .product-category-image {
        order: -1;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .application-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* News Section */
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        flex-direction: column;
    }
    
    .news-date {
        flex-direction: row;
        padding: 10px;
        justify-content: center;
        gap: 10px;
    }
    
    /* Testimonial Section */
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    /* CTA Banner */
    .cta-banner h2 {
        font-size: 1.8rem;
    }
    
    .cta-banner p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .slider-arrows {
        display: none;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* حذف استایل‌های قبلی language-selector */
.language-selector {
    display: none;
}

/* استایل‌های جدید هدر */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    height: var(--header-height);
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.text-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* استایل‌های سمت راست هدر */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto; /* این خط باعث می‌شود که header-right به سمت راست بچسبد */
}



/* استایل‌های انتخاب زبان با پرچم‌های SVG */
.elegant-language-selector {
    position: relative;
    font-size: 0.9rem;
    z-index: 102;
    margin-left: auto; /* این خط باعث می‌شود که انتخابگر زبان به سمت راست بچسبد */
}

.selected-language {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.selected-language:hover {
    background-color: #f0f0f0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.flag-icon-wrapper {
    display: inline-block;
    width: 24px;
    height: 18px;
    margin-right: 8px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.flag-icon {
    width: 100%;
    height: 100%;
}

.language-name {
    margin-right: 8px;
    font-weight: 500;
    color: #444;
}

.selected-language i {
    font-size: 0.7rem;
    color: #777;
    transition: transform 0.3s ease;
}

.elegant-language-selector:hover .selected-language i {
    transform: rotate(180deg);
}

/* استایل‌های منوی کشویی زبان */
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 180px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    z-index: 1000;
}

/* نمایش منوی کشویی با هاور */
.elegant-language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important; /* اطمینان از نمایش */
}

/* استایل‌های گزینه‌های زبان */
.language-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background-color: #f8f8f8;
    color: var(--primary-color);
}

.language-option .flag-icon-wrapper {
    margin-right: 10px;
}

/* افزودن افکت‌های زیبا */
.selected-language {
    position: relative;
    overflow: hidden;
}

.selected-language:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.language-dropdown:before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background-color: white;
    transform: rotate(45deg);
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    z-index: 1;
}

/* RTL support for language selector */
body[dir="rtl"] .flag-icon-wrapper {
    margin-right: 0;
    margin-left: 8px;
}

body[dir="rtl"] .language-name {
    margin-right: 0;
    margin-left: 8px;
}

body[dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
}

body[dir="rtl"] .language-dropdown:before {
    right: auto;
    left: 20px;
}

body[dir="rtl"] .language-option {
    text-align: right;
}

body[dir="rtl"] .language-option:hover {
    padding-left: 16px;
    padding-right: 20px;
}

body[dir="rtl"] .language-option .flag-icon-wrapper {
    margin-right: 0;
    margin-left: 10px;
}

/* Responsive styles for language selector */
/* Responsive styles for language selector */
@media (max-width: 768px) {
    .header-inner {
        padding: 0 10px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .text-logo {
        font-size: 1.2rem;
    }
    
    .elegant-language-selector {
        position: static;
    }
    
    .selected-language {
        padding: 6px 8px;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }
    
    .language-name {
        display: none;
    }
    
    .selected-language i {
        display: none;
    }
    
    .flag-icon-wrapper {
        margin-right: 0;
        width: 20px;
        height: 15px;
    }
    
    .elegant-language-selector {
        margin-right: 5px;
    }
    
    .language-dropdown {
        width: 150px;
        right: 0;
        top: 100%;
    }
    
    .elegant-language-selector.open .language-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .language-option {
        padding: 10px 12px;
    }
    
    .mobile-menu-toggle {
        margin-left: 10px;
    }
}

/* Our Company Page Styles */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.section-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.section-content h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-top: 10px;
}

.section-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Vision & Values Section */
.vision-values {
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.vision-values h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.vision-values h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: #666;
}

/* Leadership Team Section */
.leadership-team {
    margin-bottom: 60px;
}

.leadership-team h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.leadership-team h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-title {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Company History Timeline */
.company-history {
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.company-history h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.company-history h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}

.timeline-item::after {
    content: '';
    display: table;
    clear: both;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 1;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.timeline-item:nth-child(odd) .timeline-content {
    float: left;
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    float: right;
    margin-left: 55%;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    color: #666;
}

/* Global Presence Section */
.global-presence {
    margin-bottom: 60px;
}

.global-presence h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.global-presence h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.map-container {
    margin-bottom: 30px;
}

.map-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.location-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
}

.location-card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    margin-top: 8px;
}

.location-card ul {
    list-style: none;
}

.location-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    color: #666;
}

.location-card ul li:last-child {
    border-bottom: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-grid {
        grid-template-columns: 1fr;
    }
    
    .section-image {
        order: -1;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-date {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        margin-right: 0 !important;
        float: none !important;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-values, 
    .company-history {
        padding: 30px 20px;
    }
}