* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primaryColor: #D32C2C;
    /* Main brand color (red tone) */
    --secondaryColor: #FFFFFF;
    /* font-family: Arial, Helvetica, sans-serif; */
    /* Secondary color (white) */
}


body {
    font-family: Arial;
    background: #f8f9fa;
    color: black;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: var(--PrimaryColor);
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}



.nav-menu a.active {
    background-color: var(--primaryColor);
    color: var(--secondaryColor);
    font-weight: 600;
}

.contact-btn {
    background: var(--PrimaryColor);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    margin-left: 10px;
}

.contact-btn:hover {
    background: var(--PrimaryColor) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    isolation: isolate;
    color: white;
    padding: 140px 0 100px;
    overflow: hidden;
    margin-top: 70px;
}

/* Base image layer - filtered and prepped for colorizing */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.2) brightness(0.5);
}

/* Blue color overlay layer */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: var(--PrimaryColor);
    mix-blend-mode: color;
    opacity: 1;
}

/* Progressive enhancement fallback */
@supports not (mix-blend-mode: color) {
    .hero-overlay {
        mix-blend-mode: normal;
        opacity: 0.7;
    }
}

/* Grid pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); */
    background-size: 50px 50px;
    background-position: center;
    background-color: var(--primaryColor);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 4;
    text-align: center;
}

.hero h1 {
    font-family: 'Overpass', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.btn-primary:hover {
    background: var(--PrimaryColor);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(219, 0, 0, 0.4);
}


/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primaryColor);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Solutions Section - Staggered Layout */
.solutions-section {
    padding: 80px 0 0 0;
    background: transparent;
}

.solutions-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.solution-row .solutions-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-row {
    margin-bottom: 0;
    padding: 80px 0;
}

.solution-row:nth-child(odd) {
    background: #ffffff;
}

.solution-row:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solution-row:nth-child(even) .solutions-inner .solution-content {
    order: 2;
}

.solution-row:nth-child(even) .solutions-inner .solution-visual {
    order: 1;
}

.solution-content h3 {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.solution-content p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.crossing-systems {
    margin-bottom: 40px;
}

.crossing-systems h4 {
    color: #1a365d;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.system-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.system-link {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #1a365d;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.system-link:hover {
    border-color: var(--primaryColor);
    background: var(--primaryColor);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.system-link:hover svg {
    fill: white !important;
}

.system-link .system-grade {
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
}

.system-link:hover .system-grade {
    opacity: 0.9;
}

.solution-visual {
    height: 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.solution-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.solution-visual:hover img {
    transform: scale(1.05);
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Product Highlights Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 280px;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.1rem;
    border-radius: 15px 15px 0 0;
}

.product-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
}

.product-title {
    font-family: 'Overpass', sans-serif;
    color: var(--secondaryColor);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.view-product-btn {
    background: var(--primaryColor);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-product-btn:hover {
    background: #800202;
    transform: translateX(5px);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--primaryColor);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primaryColor);
    border: 3px solid var(--primaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.benefit-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-description {
    opacity: 0.9;
    line-height: 1.7;
    color: black;
    font-size: 1rem;
}

/* Company History Section */
.history-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-image {
    height: 400px;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.2rem;
    overflow: hidden;
    position: relative;
}

.history-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 15px;
    display: block;
}

.history-image:hover img {
    transform: scale(1.05);
}

.history-text h3 {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.history-highlight {
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.history-description {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primaryColor);
    color: rgb(255, 0, 0);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primaryColor);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-white {
    background: white;
    color: var(--primaryColor);
    padding: 18px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: var(--primaryColor);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primaryColor);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--primaryColor);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}


.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primaryColor);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 54, 93, 0.98);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primaryColor);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text strong {
    color: var(--primaryColor);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-accept {
    background: var(--primaryColor);
    color: white;
}

.cookie-btn-accept:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

.cookie-btn-essential {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-essential:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 20px;
}

.cookie-settings-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-header {
    margin-bottom: 20px;
}

.cookie-settings-header h3 {
    color: #1a365d;
    font-family: 'Overpass', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category h4 {
    color: #1a365d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.cookie-slider {
    background-color: var(--primaryColor);
}

input:checked+.cookie-slider:before {
    transform: translateX(24px);
}

.cookie-slider.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Mega Menu */
.nav-item {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 30px;
    width: 320px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

/* Custom scrollbar styling for mega menu */
.mega-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-menu::-webkit-scrollbar-track {
    background: #f0f4f8;
    border-radius: 10px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mega-menu-section h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f4f8;
}

.mega-menu-section .section-icon {
    width: 24px;
    height: 24px;
    background: var(--primaryColor);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.mega-menu-links {
    list-style: none;
}

.mega-menu-links li {
    margin-bottom: 6px;
}

.mega-menu-links a {
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-radius: 6px;
}

.mega-menu-links a:hover {
    color: var(--primaryColor);
    background: #fff5f2;
    transform: translateX(4px);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.mobile-nav-menu a:last-child {
    border-bottom: none;
}

.mobile-nav-menu .contact-btn {
    background: var(--primaryColor);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
    border-bottom: none;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    background: rgba(0, 0, 0, 0.1);
    margin: 10px 0;
    border-radius: 8px;
    padding: 10px 0;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown-content a {
    display: block;
    padding: 10px 20px !important;
    font-size: 0.9em;
    border-bottom: none !important;
}

.mobile-dropdown-content a:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .history-image {
        height: 300px;
    }

    .solution-row {
        margin-bottom: 0;
    }

    .solution-row .solutions-inner {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .solution-row .solutions-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .solution-row:nth-child(even) .solutions-inner .solution-content {
        order: 2;
    }

    .solution-row:nth-child(even) .solutions-inner .solution-visual {
        order: 1;
    }

    .solution-row:nth-child(odd) .solutions-inner .solution-content {
        order: 2;
    }

    .solution-row:nth-child(odd) .solutions-inner .solution-visual {
        order: 1;
    }

    .solution-content h3 {
        margin-bottom: 15px;
    }

    .solution-content p {
        margin-bottom: 25px;
    }

    .crossing-systems {
        margin-bottom: 30px;
        text-align: left;
        display: inline-block;
    }

    .system-links {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .solution-content h3 {
        font-size: 1.8rem;
    }

    .solution-visual {
        height: 280px;
    }

    .solution-visual picture {
        width: 100%;
        height: 100%;
        display: block;
    }

    .solution-visual .icon {
        font-size: 6rem;
    }

    .system-links {
        grid-template-columns: 1fr;
    }
}

/* Additional mobile styles for very small screens */
@media (max-width: 480px) {
    .solution-visual {
        height: 250px;
    }

    .solution-visual picture {
        width: 100%;
        height: 100%;
        display: block;
    }

    .solution-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .solutions-inner {
        gap: 20px;
    }
}

/* Drainage Section Styles */
.section.drainage-blue {
    background-color: var(--primaryColor);
    color: white;
}


.drainage-content-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 1fr;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.drainage-text {
    padding: 40px;
    color: #333;
}

.drainage-text h3 {
    color: #1a365d;
    font-family: 'Overpass', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.drainage-text p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    color: #495057;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.drainage-btn {
    background-color: var(--primaryColor);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.drainage-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
    text-decoration: none;
    color: white;
    background: var(--primaryColor);
}

.drainage-image {
    height: 100%;
    overflow: hidden;
}

.drainage-image img,
.drainage-image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drainage-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .drainage-content-wrapper {
        grid-template-columns: 1fr;
    }

    .drainage-text {
        padding: 30px;
    }

    .drainage-image {
        display: none;
    }

    .drainage-image-mobile {
        display: block;
        height: 200px;
        margin: 20px 0;
        border-radius: 10px;
        overflow: hidden;
    }

    .drainage-image-mobile img,
    .drainage-image-mobile picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: var(--primaryColor) !important;
    color: white !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: var(--primaryColor) !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background: var(--primaryColor) !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Override any conflicting styles */
.language-dropdown a.lang-option.active {
    background: var(--primaryColor) !important;
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: var(--primaryColor);
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Hide desktop switcher on mobile */
@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

/* Hide mobile switcher on desktop */
@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

/* Responsive adjustments for smaller desktop screens */
@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: var(--primaryColor);
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-menu a:hover {
    background-color: var(--primaryColor);
    color: white;
}

.nav-menu a.active {
    background-color: var(--primaryColor);
    color: white;
    font-weight: 600;
}

.contact-btn {
    background: var(--primaryColor);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    margin-left: 10px;
}

.contact-btn:hover {
    background: #D32C2C !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    isolation: isolate;
    color: white;
    padding: 140px 0 100px;
    overflow: hidden;
    margin-top: 70px;
}

/* Base image layer - filtered and prepped for colorizing */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.2) brightness(0.5);
}

/* Blue color overlay layer */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: var(--primaryColor);
    mix-blend-mode: color;
    opacity: 1;
}

/* Progressive enhancement fallback */
@supports not (mix-blend-mode: color) {
    .hero-overlay {
        mix-blend-mode: normal;
        opacity: 0.7;
    }
}

/* Grid pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: 50px 50px;
    background-position: center;
    background-repeat: repeat;
    opacity: 1;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 4;
    text-align: center;
}

.hero h1 {
    font-family: 'Overpass', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}



.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgb(255, 255, 255);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primaryColor);
    transform: translateY(-3px);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primaryColor);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Solutions Section - Staggered Layout */
.solutions-section {
    padding: 80px 0 0 0;
    background: transparent;
}

.solutions-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.solution-row .solutions-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-row {
    margin-bottom: 0;
    padding: 80px 0;
}

.solution-row:nth-child(odd) {
    background: #ffffff;
}

.solution-row:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solution-row:nth-child(even) .solutions-inner .solution-content {
    order: 2;
}

.solution-row:nth-child(even) .solutions-inner .solution-visual {
    order: 1;
}

.solution-content h3 {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.solution-content p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.crossing-systems {
    margin-bottom: 40px;
}

.crossing-systems h4 {
    color: #1a365d;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.system-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.system-link {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #1a365d;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.system-link:hover {
    border-color: var(--primaryColor);
    background: var(--primaryColor);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.system-link:hover svg {
    fill: white !important;
}

.system-link .system-grade {
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
}

.system-link:hover .system-grade {
    opacity: 0.9;
}

.solution-visual {
    height: 400px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.solution-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.solution-visual:hover img {
    transform: scale(1.05);
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Product Highlights Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 280px;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.1rem;
    border-radius: 15px 15px 0 0;
}

.product-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
}

.product-title {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.view-product-btn {
    background: var(--primaryColor);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}



/* Benefits Section */
.benefits-section {
    background-color: var(--primaryColor);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primaryColor);
    border: 3px solid var(--primaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.benefit-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-description {
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1rem;
}

/* Company History Section */
.history-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-image {
    height: 400px;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.2rem;
    overflow: hidden;
    position: relative;
}

.history-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 15px;
    display: block;
}

.history-image:hover img {
    transform: scale(1.05);
}

.history-text h3 {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.history-highlight {
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.history-description {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: var(--primaryColor);
    color: rgb(255, 0, 0);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primaryColor);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-white {
    background: white;
    color: var(--primaryColor);
    padding: 18px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: var(--primaryColor);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primaryColor);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--primaryColor);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}


.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primaryColor);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 54, 93, 0.98);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primaryColor);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text strong {
    color: var(--primaryColor);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-accept {
    background: var(--primaryColor);
    color: white;
}

.cookie-btn-accept:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

.cookie-btn-essential {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-essential:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 20px;
}

.cookie-settings-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-header {
    margin-bottom: 20px;
}

.cookie-settings-header h3 {
    color: #1a365d;
    font-family: 'Overpass', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category h4 {
    color: #1a365d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.cookie-slider {
    background-color: var(--primaryColor);
}

input:checked+.cookie-slider:before {
    transform: translateX(24px);
}

.cookie-slider.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Mega Menu */
.nav-item {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 30px;
    width: 320px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

/* Custom scrollbar styling for mega menu */
.mega-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-menu::-webkit-scrollbar-track {
    background: #f0f4f8;
    border-radius: 10px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mega-menu-section h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f4f8;
}

.mega-menu-section .section-icon {
    width: 24px;
    height: 24px;
    background: var(--primaryColor);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.mega-menu-links {
    list-style: none;
}

.mega-menu-links li {
    margin-bottom: 6px;
}

.mega-menu-links a {
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-radius: 6px;
}

.mega-menu-links a:hover {
    color: var(--primaryColor);
    background: #fff5f2;
    transform: translateX(4px);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--primaryColor);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.mobile-nav-menu.active {
    display: flex;
}

.mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: var(--primaryColor);
}

.mobile-nav-menu a.active {
    color: white;
    font-weight: 600;
}

.mobile-nav-menu a:last-child {
    border-bottom: none;
}

.mobile-nav-menu .contact-btn {
    background: var(--primaryColor);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
    border-bottom: none;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    background: rgba(0, 0, 0, 0.1);
    margin: 10px 0;
    border-radius: 8px;
    padding: 10px 0;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown-content a {
    display: block;
    padding: 10px 20px !important;
    font-size: 0.9em;
    border-bottom: none !important;
}

.mobile-dropdown-content a:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .history-image {
        height: 300px;
    }

    .solution-row {
        margin-bottom: 0;
    }

    .solution-row .solutions-inner {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .solution-row .solutions-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .solution-row:nth-child(even) .solutions-inner .solution-content {
        order: 2;
    }

    .solution-row:nth-child(even) .solutions-inner .solution-visual {
        order: 1;
    }

    .solution-row:nth-child(odd) .solutions-inner .solution-content {
        order: 2;
    }

    .solution-row:nth-child(odd) .solutions-inner .solution-visual {
        order: 1;
    }

    .solution-content h3 {
        margin-bottom: 15px;
    }

    .solution-content p {
        margin-bottom: 25px;
    }

    .crossing-systems {
        margin-bottom: 30px;
        text-align: left;
        display: inline-block;
    }

    .system-links {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .solution-content h3 {
        font-size: 1.8rem;
    }

    .solution-visual {
        height: 280px;
    }

    .solution-visual picture {
        width: 100%;
        height: 100%;
        display: block;
    }

    .solution-visual .icon {
        font-size: 6rem;
    }

    .system-links {
        grid-template-columns: 1fr;
    }
}

/* Additional mobile styles for very small screens */
@media (max-width: 480px) {
    .solution-visual {
        height: 250px;
    }

    .solution-visual picture {
        width: 100%;
        height: 100%;
        display: block;
    }

    .solution-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .solutions-inner {
        gap: 20px;
    }
}

/* Drainage Section Styles */
.section.drainage-blue {
    background-color: var(--primaryColor);
    color: white;
}


.drainage-content-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 1fr;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.drainage-text {
    padding: 40px;
    color: #333;
}

.drainage-text h3 {
    color: #1a365d;
    font-family: 'Overpass', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.drainage-text p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    color: #495057;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.drainage-btn {
    background-color: var(--primaryColor);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.drainage-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
    text-decoration: none;
    color: white;
    background: rgba(172, 1, 1, 0.726);
}

.drainage-image {
    height: 100%;
    overflow: hidden;
}

.drainage-image img,
.drainage-image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drainage-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .drainage-content-wrapper {
        grid-template-columns: 1fr;
    }

    .drainage-text {
        padding: 30px;
    }

    .drainage-image {
        display: none;
    }

    .drainage-image-mobile {
        display: block;
        height: 200px;
        margin: 20px 0;
        border-radius: 10px;
        overflow: hidden;
    }

    .drainage-image-mobile img,
    .drainage-image-mobile picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: var(--primaryColor) !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: var(--primaryColor) !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background: var(--primaryColor) !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Override any conflicting styles */
.language-dropdown a.lang-option.active {
    background: var(--primaryColor) !important;
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: var(--primaryColor);
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Hide desktop switcher on mobile */
@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

/* Hide mobile switcher on desktop */
@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

/* Responsive adjustments for smaller desktop screens */
@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}

/* Product page all css is here  */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--primaryColor);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.mobile-nav-menu.active {
    display: flex;
}

.mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: var(--primaryColor);
}

.mobile-nav-menu a.active {
    color: white;
    font-weight: 600;
}

.mobile-nav-menu a:last-child {
    border-bottom: none;
}

.mobile-nav-menu .contact-btn {
    background: var(--primaryColor);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
    border-bottom: none;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    background: rgba(0, 0, 0, 0.1);
    margin: 10px 0;
    border-radius: 8px;
    padding: 10px 0;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown-content a {
    display: block;
    padding: 10px 20px !important;
    font-size: 0.9em;
    border-bottom: none !important;
}

.mobile-dropdown-content a:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Mega Menu */
.nav-item {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 30px;
    width: 320px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

/* Custom scrollbar styling for mega menu */
.mega-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-menu::-webkit-scrollbar-track {
    background: #f0f4f8;
    border-radius: 10px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mega-menu-section h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f4f8;
}

.mega-menu-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mega-menu-links li {
    margin-bottom: 6px;
}

.mega-menu-links a {
    color: #666;
    text-decoration: none;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-radius: 6px;
}

.mega-menu-links a:hover {
    color: var(--primaryColor);
    background: #fff5f2;
    transform: translateX(4px);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

/* Mega menu icon styling */
.menu-icon {
    filter: brightness(0) invert(100%);
}

.w-5 {
    width: 20px;
}

.h-5 {
    height: 20px;
}

/* Products Hero */
.products-hero {
    position: relative;
    isolation: isolate;
    color: rgb(0, 0, 0);
    padding: 140px 0 100px;
    overflow: hidden;
    margin-top: 70px;
}

/* Base image layer - filtered and prepped for colorizing */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.2) brightness(0.5);
}

/* Blue color overlay layer */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: var(--primaryColor);
    mix-blend-mode: color;
    opacity: 1;
}

/* Progressive enhancement fallback */
@supports not (mix-blend-mode: color) {
    .hero-overlay {
        mix-blend-mode: normal;
        opacity: 0.7;
    }
}

/* Grid pattern overlay */
.products-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: 50px 50px;
    background-position: center;
    background-repeat: repeat;
    opacity: 1;
    z-index: 3;
    pointer-events: none;
}

.products-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 4;
    text-align: center;
}

.products-hero h1 {
    font-family: 'Overpass', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.products-hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
}

/* Product Categories */
.category-nav {
    background: white;
    padding: 40px 0 30px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.category-btn {
    background: #f0f4f8;
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #333;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primaryColor);
    color: white;
    transform: translateY(-2px);
}

/* Products Grid */
.products-section {
    padding: 60px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-section {
    margin-bottom: 80px;
}

.category-title {
    font-family: 'Overpass', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--primaryColor);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primaryColor);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card:hover::before {
    transform: translateX(0);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.product-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: 'Overpass', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

/* Make product images and titles clickable */
.product-card a.image-link {
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.product-card a.image-link:hover {
    opacity: 0.9;
}

.product-card a.title-link {
    text-decoration: none;
    color: #1a365d;
    display: block;
    transition: color 0.3s ease;
}

.product-card a.title-link:hover {
    color: var(--primaryColor);
}

.product-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-features {
    margin-bottom: 25px;
}

.feature-tag {
    display: inline-block;
    background: #e8f4fd;
    color: #1a365d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 5px 5px 5px 0;
}

.product-link {
    color: var(--primaryColor);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.product-link:hover {
    gap: 12px;
}

.product-link::after {
    content: '→';
    font-size: 1.2rem;
}

/* Special Product Badge */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primaryColor);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primaryColor);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}


.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primaryColor);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}


/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .products-hero h1 {
        font-size: 2.5rem;
    }

    .products-hero p {
        font-size: 1.2rem;
    }

    .category-container {
        gap: 15px;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 20px;
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: var(--primaryColor) !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: var(--primaryColor) !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background: var(--primaryColor) !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Override any conflicting styles */
.language-dropdown a.lang-option.active {
    background: var(--primaryColor) !important;
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: var(--primaryColor);
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Hide desktop switcher on mobile */
@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

/* Hide mobile switcher on desktop */
@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

/* Responsive adjustments for smaller desktop screens */
@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}




/* Walkway page css is here all  */
/* Product Hero */





.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Overpass', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text .subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    background: var(--primaryColor);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-features {
    list-style: none;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.hero-features .check {
    background: var(--primaryColor);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Sustainability Section */
.sustainability-section {
    padding: 80px 0;
    background: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sustainability-text h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
}

.sustainability-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sustainability-highlight {
    background: #e8f4fd;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ff6b35;
    margin-top: 30px;
}

.sustainability-highlight h4 {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    margin-bottom: 10px;
}

.lifespan-demo {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.lifespan-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.lifespan-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.lifespan-item.walkway {
    border-color: #ff6b35;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.lifespan-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.concrete-icon {
    background: #c0c0c0;
    color: #666;
}

.walkway-icon {
    background: var(--primaryColor);
    color: white;
}

.lifespan-label {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.lifespan-years {
    font-family: 'Overpass', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
}

.lifespan-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Key Benefits */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primaryColor);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    transform: translateX(0);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primaryColor);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.benefit-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

.benefit-desc {
    color: #666;
    line-height: 1.6;
}

/* Technical Specs */
.specs-section {
    padding: 80px 0;
    background: white;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.specs-text h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 30px;
}

.specs-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.specs-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th {
    background: var(--primaryColor);
    color: white;
    padding: 20px;
    text-align: left;
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
}

.specs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e8f4fd;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #1a365d;
    background: #f8f9fa;
}

.panel-grid-container {
    margin-top: 40px;
}

.panel-grid-container h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 20px;
    text-align: center;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.panel-grid picture {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel-grid picture:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.panel-grid img {
    width: 100%;
    height: auto;
    display: block;
}

/* Installation Gallery */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    font-weight: 600;
}

/* Applications Section */
.applications-section {
    padding: 80px 0;
    background: var(--primaryColor);
    color: white;
}

.applications-section .section-title {
    color: white;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.application-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.application-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.application-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.application-desc {
    opacity: 0.9;
    line-height: 1.6;
}


.cta-content {
    max-width: 800px;
    margin: 0 auto;
}


.cta-text {
    font-size: 1.2rem;
    color: var(--primaryColor);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}



.btn-primary:hover {
    background: #b60505;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}


/* Footer */
.footer {
    background: var(--primaryColor);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #000000;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-menu.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .sustainability-content,
    .specs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .panel-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .lifespan-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: #ff6b35 !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: #ff6b35 !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Override any conflicting styles */
.language-dropdown a.lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: #ff6b35;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Hide desktop switcher on mobile */
@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

/* Hide mobile switcher on desktop */
@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

/* Responsive adjustments for smaller desktop screens */
@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}


/* about page all css is here  */

/* About Hero */
.about-hero {
    position: relative;
    isolation: isolate;
    color: white;
    padding: 140px 0 100px;
    overflow: hidden;
    margin-top: 70px;
}

/* Base image layer - filtered and prepped for colorizing */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.2) brightness(0.5);
}

/* Blue color overlay layer */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: var(--primaryColor);
    mix-blend-mode: color;
    opacity: 1;
}

/* Progressive enhancement fallback */
@supports not (mix-blend-mode: color) {
    .hero-overlay {
        mix-blend-mode: normal;
        opacity: 0.7;
    }
}

/* Grid pattern overlay */
.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: 50px 50px;
    background-position: center;
    background-repeat: repeat;
    opacity: 1;
    z-index: 3;
    pointer-events: none;
}

.about-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 4;
    text-align: center;
}

.about-hero h1 {
    font-family: 'Overpass', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.about-hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
}

/* Main Content */
.about-content {
    padding: 80px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Overpass', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 40px;
    text-align: center;
}

.section-subtitle {
    font-family: 'Overpass', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 30px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.content-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primaryColor);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.card-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

.card-text {
    color: #666;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primaryColor);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    margin-right: 0;
    text-align: left;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primaryColor);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 10;
}

.timeline-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    background: white;
    color: #333;
    padding: 60px 0;
    margin: 60px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: 'Overpass', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondaryColor);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--primaryColor);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}


.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondaryColor);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-year {
        left: 20px;
        transform: none;
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: #ff6b35 !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: #ff6b35 !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background-color: var(--primaryColor);
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Override any conflicting styles */
.language-dropdown a.lang-option.active {
    background-color: var(--primaryColor);
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: #ff6b35;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Hide desktop switcher on mobile */
@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

/* Hide mobile switcher on desktop */
@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

/* Responsive adjustments for smaller desktop screens */
@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}




/* Antiprices page all css is here  */
/* Product Hero */


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: var(--primaryColor);
    mix-blend-mode: color;
    opacity: 1;
}

/* Grid pattern overlay using ::before */
.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: 50px 50px;
    z-index: 3;
    pointer-events: none;
}

/* Fallback for browsers that don't support mix-blend-mode */
@supports not (mix-blend-mode: color) {
    .product-hero::after {
        filter: none;
        opacity: 0.2;
    }

    .hero-overlay {
        background: var(--primaryColor);
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Overpass', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text .subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    background: var(--primaryColor);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-features {
    list-style: none;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.hero-features .check {
    background: var(--primaryColor);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Security Features Section */
.security-section {
    padding: 80px 0;
    background: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Overpass', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.security-text h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    /* background: var(--primaryColor); */
    margin-bottom: 25px;
}

.security-text p {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.security-highlight {
    background: #e8f4fd;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #D32C2C;
    margin-top: 30px;
}

.security-highlight h4 {
    font-family: 'Overpass', sans-serif;
    /* background: var(--primaryColor); */
    margin-bottom: 10px;
}

.panel-variations {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.variation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.variation-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #D32C2C;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    align-items: center;
}

.variation-image {
    width: 200px;
    height: auto;
}

.variation-content {
    display: flex;
    flex-direction: column;
}

.conical-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.conical-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .variation-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 12px;
    }

    .variation-image {
        justify-self: center;
        margin-bottom: 15px;
        width: 180px;
        height: auto;
    }

    .conical-image-container {
        height: 140px;
        margin: 15px 0;
    }
}

.variation-title {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 8px;
}

.variation-desc {
    color: #666;
    font-size: 0.9rem;
}

/* Effectiveness Stats */
.stats-section {
    padding: 80px 0;
    background: var(--primaryColor);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    padding: 30px 20px;
}

/* Key Benefits */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primaryColor);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    transform: translateX(0);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primaryColor);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.benefit-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

.benefit-desc {
    color: #666;
    line-height: 1.6;
}

/* Technical Specs */
.specs-section {
    padding: 80px 0;
    background: white;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.specs-text h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 30px;
}

.specs-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.specs-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th {
    background: var(--primaryColor);
    color: white;
    padding: 20px;
    text-align: left;
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
}

.specs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e8f4fd;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #1a365d;
    background: #f8f9fa;
}

/* Installation Gallery */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}



.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primaryColor);
    color: white;
    padding: 30px 20px 20px;
    font-weight: 600;
}

/* Applications Section */
.applications-section {
    padding: 80px 0;
    background: var(--primaryColor);
    color: white;
}

.applications-section .section-title {
    color: white;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.application-card {
    background: var(--primaryColor);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.application-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.application-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.application-desc {
    opacity: 0.9;
    line-height: 1.6;
}



.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Overpass', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primaryColor);
    margin-bottom: 20px;
}


.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #FFFFFF;
    color: var(--primaryColor);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}


/* Footer */
.footer {
    background: var(--primaryColor);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}


.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-menu.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .security-content,
    .specs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: #ff6b35 !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: #ff6b35 !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

.language-dropdown a.lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: #ff6b35;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}


/* Product Hero */



/* Fallback for browsers that don't support mix-blend-mode */
@supports not (mix-blend-mode: color) {
    .product-hero::after {
        filter: none;
        opacity: 0.2;
    }

    .hero-overlay {
        background: linear-gradient(135deg,
                rgba(26, 54, 93, 0.7) 0%,
                rgba(45, 74, 113, 0.6) 100%);
        mix-blend-mode: normal;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Overpass', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text .subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    background: var(--primaryColor);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-features {
    list-style: none;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.hero-features .check {
    background: var(--primaryColor);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Cut-to-Fit Section */
.cuttofit-section {
    padding: 80px 0;
    background: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}


.cuttofit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cuttofit-text h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
}

.cuttofit-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cuttofit-highlight {
    background: #e8f4fd;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ff6b35;
    margin-top: 30px;
}

.cuttofit-highlight h4 {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    margin-bottom: 10px;
}

.cuttofit-features {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px 0;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--primaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

/* Key Benefits */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primaryColor);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    transform: translateX(0);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primaryColor);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.benefit-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

.benefit-desc {
    color: #666;
    line-height: 1.6;
}

/* Technical Specs */
.specs-section {
    padding: 80px 0;
    background: white;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.specs-text h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 30px;
}

.specs-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.specs-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th {
    background: var(--primaryColor);
    color: white;
    padding: 20px;
    text-align: left;
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
}

.specs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e8f4fd;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #1a365d;
    background: #f8f9fa;
}

/* Installation Gallery */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}



.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    font-weight: 600;
}

/* Applications Section */
.applications-section {
    padding: 80px 0;
    background: var(--primaryColor);
    color: white;
}

.applications-section .section-title {
    color: white;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.application-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.application-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.application-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.application-desc {
    opacity: 0.9;
    line-height: 1.6;
}


.cta-content {
    max-width: 800px;
    margin: 0 auto;
}



.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Footer */
.footer {
    background: var(--primaryColor);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}


.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-menu.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cuttofit-content,
    .specs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: #ff6b35 !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: #ff6b35 !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Override any conflicting styles */
.language-dropdown a.lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: #ff6b35;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Hide desktop switcher on mobile */
@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

/* Hide mobile switcher on desktop */
@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

/* Responsive adjustments for smaller desktop screens */
@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}




/* Product Hero */



/* Fallback for browsers that don't support mix-blend-mode */
@supports not (mix-blend-mode: color) {
    .product-hero::after {
        filter: none;
        opacity: 0.2;
    }

    .hero-overlay {
        background-color: var(--primaryColor);
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Overpass', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text .subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    background: var(--primaryColor);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-features {
    list-style: none;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.hero-features .check {
    background: var(--primaryColor);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Key Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #f7baba;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primaryColor);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    transform: translateX(0);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primaryColor);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.benefit-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

.benefit-desc {
    color: #666;
    line-height: 1.6;
}

/* Technical Specs */
.specs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.specs-text h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 30px;
}

.specs-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.specs-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th {
    background: var(--primaryColor);
    color: white;
    padding: 20px;
    text-align: left;
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
}

.specs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e8f4fd;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #1a365d;
    background: #f8f9fa;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    font-weight: 600;
}

/* Applications Section */
.applications-section {
    padding: 80px 0;
    background: var(--primaryColor);
    color: white;
}

.applications-section .section-title {
    color: white;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.application-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.application-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.application-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.application-desc {
    opacity: 0.9;
    line-height: 1.6;
}



.cta-content {
    max-width: 800px;
    margin: 0 auto;
}



.btn-primary:hover {
    background: rgb(167, 2, 2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}





.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-menu.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .specs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: #ff6b35 !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: #ff6b35 !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

.language-dropdown a.lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: #ff6b35;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}



/* Contact Hero */
.contact-hero {
    position: relative;
    isolation: isolate;
    color: white;
    padding: 140px 0 100px;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.2) brightness(0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: var(--primaryColor);
    mix-blend-mode: color;
    opacity: 1;
}

/* Grid pattern overlay using ::after */
.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: 50px 50px;
    z-index: 3;
    pointer-events: none;
}

/* Fallback for browsers that don't support mix-blend-mode */
@supports not (mix-blend-mode: color) {
    .hero-background img {
        filter: none;
        opacity: 0.4;
    }

    .hero-overlay {
        background: linear-gradient(135deg,
                rgba(26, 54, 93, 0.7) 0%,
                rgba(45, 74, 113, 0.6) 100%);
        mix-blend-mode: normal;
    }
}

.contact-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 4;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Overpass', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.contact-hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
}

/* Main Content */
.contact-content {
    padding: 80px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Overpass', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: black;
    margin-bottom: 40px;
    text-align: center;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primaryColor);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8f4fd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    height: 120px;
}

.submit-btn {
    background: var(--primaryColor);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.submit-btn:hover {
    background: var(--primaryColor);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Training Section */
.training-section {
    background: white;
    padding: 60px 0;
    margin: 80px 0;
}

.training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.training-text h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 30px;
}

.training-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.training-features {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.training-features h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px 0;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--primaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.training-cta {
    background: var(--primaryColor);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.training-cta h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.training-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-btn {
    background: var(--primaryColor);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #a50303;
    transform: translateY(-2px);
}





.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-menu.active {
        display: flex;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .training-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Hidden field for bot protection */
.hidden {
    display: none;
}

/* Leaflet Map Styling */
#map {
    height: 420px;
    border-radius: 15px;
}

@media (max-width: 640px) {
    #map {
        height: 320px;
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: #ff6b35 !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: #ff6b35 !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Override any conflicting styles */
.language-dropdown a.lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: #ff6b35;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Hide desktop switcher on mobile */
@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

/* Hide mobile switcher on desktop */
@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

/* Responsive adjustments for smaller desktop screens */
@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}



/* inter locking page all csss is here  */

/* Product Hero */


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: var(--primaryColor);
    mix-blend-mode: color;
    opacity: 1;
}

/* Grid pattern overlay using ::before */
.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: 50px 50px;
    z-index: 3;
    pointer-events: none;
}

/* Fallback for browsers that don't support mix-blend-mode */


.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Overpass', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text .subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    background: var(--primaryColor);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-features {
    list-style: none;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.hero-features .check {
    background: var(--primaryColor);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Modular System Section */
.modular-section {
    padding: 80px 0;
    background: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}



.modular-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.modular-text h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
}

.modular-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.modular-highlight {
    background: #e8f4fd;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ff6b35;
    margin-top: 30px;
}

.modular-highlight h4 {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    margin-bottom: 10px;
}

.modular-diagram {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.spacing-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.spacing-example {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e8f4fd;
}

.spacing-example.irregular {
    border-color: #ff6b35;
}

.spacing-title {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
    text-align: center;
}

.spacing-title.irregular {
    color: #ff6b35;
}

.sleeper-visual {
    position: relative;
    height: 80px;
    margin-bottom: 10px;
    width: 200px;
    margin: 0 auto 10px auto;
}

.sleeper-rail {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: #666;
    border-radius: 3px;
    transform: translateY(-50%);
}

.sleeper {
    width: 15px;
    height: 60px;
    background: #8B4513;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.panel-block {
    position: absolute;
    top: 35%;
    left: -8px;
    right: -8px;
    height: 20px;
    background: linear-gradient(to right, #ff6b35, #e55a2b);
    border-radius: 3px;
    z-index: 3;
}

/* Regular spacing - 600mm centers (even spacing) */
.sleeper.regular-1 {
    position: absolute;
    left: 10px;
}

.sleeper.regular-2 {
    position: absolute;
    left: 60px;
}

.sleeper.regular-3 {
    position: absolute;
    left: 110px;
}

.sleeper.regular-4 {
    position: absolute;
    left: 160px;
}

/* Irregular spacing - varying centers */
.sleeper.irregular-1 {
    position: absolute;
    left: 10px;
}

.sleeper.irregular-2 {
    position: absolute;
    left: 50px;
}

.sleeper.irregular-3 {
    position: absolute;
    left: 130px;
}

.sleeper.irregular-4 {
    position: absolute;
    left: 165px;
}

.spacing-measurement {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    margin-top: 5px;
}

/* Key Benefits */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primaryColor);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    transform: translateX(0);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primaryColor);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.benefit-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

.benefit-desc {
    color: #666;
    line-height: 1.6;
}

/* Technical Specs */
.specs-section {
    padding: 80px 0;
    background: white;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.specs-text h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 30px;
}

.specs-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.specs-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th {
    background: var(--primaryColor);
    color: white;
    padding: 20px;
    text-align: left;
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
}

.specs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e8f4fd;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #1a365d;
    background: #f8f9fa;
}

/* Installation Gallery */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* Applications Section */
.applications-section {
    padding: 80px 0;
    background: var(--primaryColor);
    color: white;
}

.applications-section .section-title {
    color: white;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.application-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.application-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.application-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.application-desc {
    opacity: 0.9;
    line-height: 1.6;
}


.cta-content {
    max-width: 800px;
    margin: 0 auto;
}



.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}


/* Footer */
.footer {
    background: var(--primaryColor);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}



.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-menu.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .modular-content,
    .specs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .spacing-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modular-diagram {
        padding: 20px;
    }

    .sleeper-visual {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 10px auto;
    }

    .spacing-example {
        padding: 15px;
    }

    .spacing-title {
        font-size: 0.9rem;
    }

    .spacing-measurement {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .sleeper-visual {
        max-width: 250px;
    }

    .sleeper {
        width: 12px;
        height: 50px;
    }

    .panel-block {
        height: 16px;
        left: -6px;
        right: -6px;
    }

    /* Adjust sleeper positions for smaller screens */
    .sleeper.regular-1 {
        left: 8px;
    }

    .sleeper.regular-2 {
        left: 50px;
    }

    .sleeper.regular-3 {
        left: 92px;
    }

    .sleeper.regular-4 {
        left: 134px;
    }

    .sleeper.irregular-1 {
        left: 8px;
    }

    .sleeper.irregular-2 {
        left: 42px;
    }

    .sleeper.irregular-3 {
        left: 108px;
    }

    .sleeper.irregular-4 {
        left: 138px;
    }

    .spacing-measurement {
        font-size: 0.6rem;
        line-height: 1.2;
    }

    .modular-diagram p {
        font-size: 0.85rem;
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: #ff6b35 !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: #ff6b35 !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

.language-dropdown a.lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: #ff6b35;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}



/* TitanPage all csss is here main */


/* Product Hero */
.product-hero {
    position: relative;
    isolation: isolate;
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    overflow: hidden;
}



/* Fallback for browsers that don't support mix-blend-mode */

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Overpass', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text .subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    background: var(--primaryColor);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-features {
    list-style: none;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.hero-features .check {
    background: var(--primaryColor);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Heavy Duty Section */
.heavyduty-section {
    padding: 80px 0;
    background: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Overpass', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: black;
    text-align: center;
    margin-bottom: 60px;
}

.heavyduty-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.heavyduty-text h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
}

.heavyduty-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.heavyduty-highlight {
    background: #e8f4fd;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ff6b35;
    margin-top: 30px;
}

.heavyduty-highlight h4 {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    margin-bottom: 10px;
}

.strength-demo {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.strength-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.strength-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.strength-item.titan {
    border-color: #ff6b35;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.strength-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.rubber-icon {
    background: #ffd700;
    color: #8B4513;
}

.steel-icon {
    background: #c0c0c0;
    color: #333;
}

.strength-label {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.strength-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Key Benefits */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primaryColor);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    transform: translateX(0);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primaryColor);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.benefit-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

.benefit-desc {
    color: #666;
    line-height: 1.6;
}

/* Technical Specs */
.specs-section {
    padding: 80px 0;
    background: white;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.specs-text h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 30px;
}

.specs-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.specs-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th {
    background: var(--primaryColor);
    color: white;
    padding: 20px;
    text-align: left;
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
}

.specs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e8f4fd;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #1a365d;
    background: #f8f9fa;
}

/* Installation Gallery */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}



.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    font-weight: 600;
}

/* Applications Section */
.applications-section {
    padding: 80px 0;
    background: var(--primaryColor);
    color: white;
}

.applications-section .section-title {
    color: white;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.application-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.application-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.application-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.application-desc {
    opacity: 0.9;
    line-height: 1.6;
}


.cta-content {
    max-width: 800px;
    margin: 0 auto;
}



.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}


/* Footer */
.footer {
    background: var(--primaryColor);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}



.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-menu.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .heavyduty-content,
    .specs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .strength-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: #ff6b35 !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: #ff6b35 !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Override any conflicting styles */
.language-dropdown a.lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: #ff6b35;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Hide desktop switcher on mobile */
@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

/* Hide mobile switcher on desktop */
@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

/* Responsive adjustments for smaller desktop screens */
@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}










/* Rubber Edge Beam Section */
.rubber-section {
    padding: 80px 0;
    background: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Overpass', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a365d;
    text-align: center;
    margin-bottom: 60px;
}

.rubber-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rubber-text h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
}

.rubber-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.rubber-highlight {
    background: #e8f4fd;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ff6b35;
    margin-top: 30px;
}

.rubber-highlight h4 {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    margin-bottom: 10px;
}

.weight-comparison {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.weight-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.weight-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.weight-item.rubber {
    border-color: #ff6b35;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.weight-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.concrete-icon {
    background: #c0c0c0;
    color: #666;
}

.rubber-icon {
    background: var(--primaryColor);
    color: white;
}

.weight-label {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.weight-value {
    font-family: 'Overpass', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
}

.weight-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Material Options Section */
.materials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.materials-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.material-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.material-card.primary {
    border: 3px solid #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}


.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.material-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.rubber-bg {
    background: var(--primaryColor);
}

.steel-bg {
    background: #666;
}

.plastic-bg {
    background: #4CAF50;
}

.material-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
    text-align: center;
}

.material-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.material-features {
    list-style: none;
}

.material-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.feature-check {
    background: var(--primaryColor);
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* Key Benefits */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primaryColor);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.benefit-card:hover::before {
    transform: translateX(0);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primaryColor);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.benefit-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
}

.benefit-desc {
    color: #666;
    line-height: 1.6;
}

/* Technical Specs */
.specs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.specs-text h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 30px;
}

.specs-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.specs-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th {
    background: var(--primaryColor);
    color: white;
    padding: 20px;
    text-align: left;
    font-family: 'Overpass', sans-serif;
    font-weight: 600;
}

.specs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e8f4fd;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #1a365d;
    background: #f8f9fa;
}

/* Installation Gallery */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Rubber Edge Beam Images */
.rubber-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.rubber-images picture {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rubber-images picture:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.rubber-images img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    font-weight: 600;
}

/* Applications Section */
.applications-section {
    padding: 80px 0;
    background: var(--primaryColor);
    color: white;
}

.applications-section .section-title {
    color: white;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.application-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.application-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.application-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.application-desc {
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}



.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primaryColor);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: rgba(26, 54, 93, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: var(--primaryColor);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primaryColor);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-menu.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .rubber-content,
    .specs-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .weight-demo {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .materials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid,
    .gallery-grid,
    .rubber-images {
        grid-template-columns: 1fr;
    }

    .rubber-images {
        gap: 20px;
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: #ff6b35 !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: #ff6b35 !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Override any conflicting styles */
.language-dropdown a.lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: #ff6b35;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Hide desktop switcher on mobile */
@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

/* Hide mobile switcher on desktop */
@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

/* Responsive adjustments for smaller desktop screens */
@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}









/* aSSESORIRESSS CSS HERER  */
/* Overview Section */
.overview-section {
    padding: 80px 0;
    background: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Overpass', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a365d;
    text-align: center;
    margin-bottom: 60px;
}

.overview-content {
    margin-bottom: 60px;
}

.overview-text {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.overview-text h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
}

.overview-text p {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.overview-highlight {
    background: linear-gradient(135deg, #e8f4fd 0%, #f5fbff 100%);
    padding: 30px 40px;
    border-radius: 16px;
    border-left: 5px solid #ff6b35;
    margin: 40px auto 0;
    max-width: 700px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.overview-highlight h4 {
    font-family: 'Overpass', sans-serif;
    color: #1a365d;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.overview-highlight p {
    margin-bottom: 0;
    color: #555;
}

.overview-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    background: #1a1a1a;
    height: 280px;
}

.overview-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.overview-img.featured {
    grid-column: span 1;
}

.overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overview-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 20px 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

.overview-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    background: #f8f9fa;
    border: 2px dashed #e0e0e0;
    border-radius: 16px;
}

.overview-placeholder-content {
    text-align: center;
    padding: 20px;
}

.overview-placeholder-icon {
    width: 60px;
    height: 60px;
    background: var(--primaryColor);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
}

.overview-placeholder-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primaryColor);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-card:hover::before {
    transform: translateX(0);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--primaryColor);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.category-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin: auto;
    align-items: center;
    margin-bottom: 15px;
}

.category-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-examples {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: white;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}



.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-title {
    font-family: 'Overpass', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info {
    opacity: 0.9;
}

.btn-primary {
    background: var(--primaryColor);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Footer */
.footer {
    background: var(--primaryColor);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondaryColor);
}

.footer-section p,
.footer-section li {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-menu.active {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .overview-content {
        text-align: center;
    }

    .overview-image {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .overview-img {
        height: 250px;
    }

    .overview-highlight {
        padding: 25px 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Desktop Language Switcher */
.language-switcher-desktop {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 8px 16px;
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-dropdown-toggle:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    color: #ff6b35 !important;
}

.language-dropdown-toggle .dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.language-switcher-desktop:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000 !important;
    margin-top: 8px;
}

.language-switcher-desktop:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #475569 !important;
    background: transparent !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: #f8fafc;
    color: #ff6b35 !important;
}

.language-switcher-desktop .language-dropdown .lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
    font-weight: 600;
    text-decoration: none !important;
}

.language-dropdown a.lang-option.active {
    background: #ff6b35 !important;
    color: white !important;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.mobile-lang-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.mobile-lang-btn.active {
    background: var(--primaryColor);
    border-color: #ff6b35;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

@media (max-width: 900px) {
    .language-switcher-desktop {
        display: none;
    }
}

@media (min-width: 901px) {
    .language-switcher-mobile {
        display: none;
    }
}

@media (max-width: 1024px) {
    .language-dropdown-toggle {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
}