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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a90d9;
    --accent-color: #1a4568;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: left;
}

/* Force left alignment globally */
body, p, h1, h2, h3, h4, h5, h6, div, section, article, header, footer, main, span, a, li, ul, ol {
    text-align: left !important;
}

.container {
    max-width: 1200px;
    margin: 0;
    margin-left: 0.5rem;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    display: none;
}

.logo-text h1 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
    background-color: rgba(44, 95, 141, 0.08);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: none;
    position: relative;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.96) 0%, rgba(74, 144, 217, 0.94) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600"><defs><pattern id="industrial" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.08"/><circle cx="50" cy="30" r="1.5" fill="%23ffffff" opacity="0.06"/><circle cx="70" cy="70" r="2" fill="%23ffffff" opacity="0.08"/><circle cx="30" cy="80" r="1" fill="%23ffffff" opacity="0.05"/><rect x="15" y="40" width="3" height="15" fill="%23ffffff" opacity="0.04" transform="rotate(45 16.5 47.5)"/><rect x="60" y="15" width="2" height="10" fill="%23ffffff" opacity="0.03" transform="rotate(-30 61 20)"/><polygon points="85,50 88,55 82,55" fill="%23ffffff" opacity="0.05"/><circle cx="45" cy="60" r="8" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.04"/></pattern></defs><rect width="1200" height="600" fill="url(%23industrial)"/></svg>');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--bg-white);
    padding: 100px 0 70px;
    text-align: left;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.15);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 95, 141, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-light {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

/* Quick Contact Bar */
.quick-contact {
    background-color: var(--bg-light);
    padding: 30px 0;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.contact-item h4 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Sections */
.section {
    padding: 40px 0;
}

.section.alt-bg {
    background-color: var(--bg-light);
}

.section-header {
    text-align: left;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0;
    margin-left: 0.5rem;
    border-radius: 2px;
}

.lead {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.text-center {
    text-align: left;
    margin-left: 0.5rem;
    margin-top: 40px;
}

/* About Preview */
.about-preview {
    background: linear-gradient(135deg, rgba(20, 40, 70, 0.92) 0%, rgba(30, 60, 100, 0.92) 100%);
    background-image: 
        linear-gradient(135deg, rgba(20, 40, 70, 0.92) 0%, rgba(30, 60, 100, 0.92) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1400" height="900" viewBox="0 0 1400 900"><defs><radialGradient id="glow1" cx="30%"><stop offset="0%%" style="stop-color:rgba(255,200,100,0.08);stop-opacity:1"/><stop offset="100%%" style="stop-color:rgba(255,200,100,0);stop-opacity:1"/></radialGradient><radialGradient id="glow2" cx="70%"><stop offset="0%%" style="stop-color:rgba(100,150,255,0.06);stop-opacity:1"/><stop offset="100%%" style="stop-color:rgba(100,150,255,0);stop-opacity:1"/></radialGradient></defs><rect width="1400" height="900" fill="transparent"/><circle cx="200" cy="150" r="180" fill="url(%23glow1)"/><circle cx="1200" cy="700" r="220" fill="url(%23glow2)"/><g opacity="0.12"><rect x="100" y="100" width="200" height="200" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="2"/><circle cx="200" cy="200" r="80" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="1.5"/><path d="M 50 50 L 350 350" stroke="rgba(255,255,255,0.15)" stroke-width="1"/><line x1="0" y1="450" x2="1400" y2="450" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></g><g opacity="0.08"><rect x="800" y="200" width="300" height="300" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="1.5"/><circle cx="950" cy="350" r="120" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="1"/></g><g opacity="0.06"><polygon points="600,100 700,250 500,250" fill="rgba(255,255,255,0.1)"/><rect x="600" y="500" width="150" height="150" fill="none" stroke="rgba(255,255,255,0.12)" stroke-width="1"/></g></svg>');
    background-size: cover, cover;
    background-position: center, center;
    background-attachment: fixed;
    position: relative;
    color: var(--bg-white);
    padding: 80px 0;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><defs><pattern id="tech" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.05"/><rect x="20" y="20" width="15" height="15" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.04"/></pattern></defs><rect width="200" height="200" fill="url(%23tech)"/></svg>');
    pointer-events: none;
    opacity: 0.5;
}

.about-preview .container {
    position: relative;
    z-index: 1;
}

.about-content p {
    margin-bottom: 20px;
    text-align: left;
    color: var(--bg-white);
}

.about-preview .section-header h2 {
    color: var(--bg-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.about-preview .btn {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
    font-weight: 700;
}

.about-preview .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Core Values */
.core-values {
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 20px 18px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(44, 95, 141, 0.12);
    border-color: rgba(44, 95, 141, 0.1);
}

.value-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 13px;
}

/* Services Overview */
.services-overview {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 20px 18px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.5s ease;
}

.service-card:hover {
    border-color: rgba(44, 95, 141, 0.2);
    box-shadow: 0 8px 32px rgba(44, 95, 141, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 5px 0;
    color: var(--text-dark);
    padding-left: 20px;
    position: relative;
    font-size: 12px;
}

.service-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Product Categories */
.product-categories {
    background-color: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 30px;
}

.category-card {
    background-color: var(--bg-white);
    padding: 18px 16px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transition: height 0.4s ease;
}

.category-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    border-left-color: var(--primary-color);
}

.category-card:hover::after {
    height: 100%;
}

.category-card h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.category-card p {
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.5;
}

/* Partners Section */
.partners {
    background-color: var(--bg-white);
}

.partners-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.partner-item {
    text-align: left;
    padding: 20px;
}

.partner-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.partner-item h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.partner-item p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}

/* Why Choose Us */
.why-choose {
    background-color: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    padding-left: 80px;
    min-height: 150px;
}

.why-number {
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.3;
}

.why-item h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.why-item p {
    color: var(--text-light);
}

/* Testimonial */
.testimonial {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 80px 0;
}

.testimonial-content {
    text-align: left;
    max-width: 800px;
    margin: 0;
    margin-left: 0.5rem;
}

.quote-icon {
    font-size: 48px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 24px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 18px;
    font-weight: 600;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a4568 0%, #2c5f8d 100%);
    color: var(--bg-white);
    text-align: left;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></svg>');
    opacity: 0.4;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
.footer {
    background-color: #0f1419;
    color: var(--bg-white);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--secondary-color);
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: left;
}

.footer-bottom p {
    color: #999;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 80px 0 60px;
    text-align: left;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro p,
.gallery-intro p,
.service-detail p {
    text-align: left;
    line-height: 1.8;
}

/* About Page Styles */
.about-intro,
.about-text {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    text-align: left;
}

.commitment {
    background-color: var(--bg-light);
}

.commitment-intro {
    max-width: 900px;
    margin: 0 0 50px 0.5rem;
    text-align: left;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.commitment-card {
    background-color: var(--bg-white);
    padding: 20px 18px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 95, 141, 0.05), transparent);
    transition: left 0.6s ease;
}

.commitment-card:hover::before {
    left: 100%;
}

.commitment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.commitment-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.commitment-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.commitment-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 13px;
}

.commitment-text {
    max-width: 900px;
    margin: 0;
    margin-left: 0.5rem;
}

.commitment-text p {
    margin-bottom: 20px;
    text-align: left;
}

.quote-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    text-align: left;
    margin-top: 40px;
}

.quote-box i {
    font-size: 36px;
    opacity: 0.5;
    margin-bottom: 15px;
}

.quote-box p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
}

.clients {
    background-color: var(--bg-white);
}

.clients-intro {
    max-width: 900px;
    margin: 0;
    margin-left: 0.5rem;
}

.clients-intro p {
    margin-bottom: 20px;
    text-align: left;
}

.approach {
    background-color: var(--bg-light);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.approach-step {
    background-color: var(--bg-white);
    padding: 18px;
    border-radius: 8px;
    position: relative;
    padding-top: 60px;
}

.step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.3;
}

.approach-step h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.approach-step p {
    color: var(--text-light);
    text-align: left;
    line-height: 1.6;
}

.expertise {
    background-color: var(--bg-white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
}

.expertise-card {
    background-color: var(--bg-light);
    padding: 18px 16px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.expertise-card:hover {
    background-color: var(--bg-white);
    border-color: var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.15);
}

.expertise-card:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-5px);
}

.expertise-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.expertise-card:hover i {
    color: var(--bg-white);
}

.expertise-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.expertise-card:hover h3 {
    color: var(--bg-white);
}

.expertise-card p {
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

.expertise-card:hover p {
    color: rgba(255,255,255,0.9);
}

.quality-standards {
    background-color: var(--bg-light);
}

.standards-content {
    max-width: 900px;
    margin-left: 0.5rem;
    margin: 0;
}

.standards-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.standards-text p {
    margin-bottom: 20px;
    text-align: left;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-dark);
}

.check-list li i {
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 20px;
}

/* Services Page */
.service-detail {
    background-color: var(--bg-white);
}

.service-intro {
    max-width: 100%;
    margin: 0 0 30px;
}

.service-intro p {
    margin-bottom: 20px;
    text-align: left;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.capability-card {
    background-color: var(--bg-light);
    padding: 20px 18px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.capability-card:hover {
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
    transform: translateY(-3px);
}

.capability-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.capability-card:hover .capability-icon {
    transform: scale(1.1);
}

.capability-card h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.capability-card p {
    color: var(--text-light);
    text-align: left;
    line-height: 1.6;
}

.service-content {
    max-width: 900px;
    margin: 0;
    margin-left: 0.5rem;
}

.service-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 30px 0 20px;
}

.service-content p {
    margin-bottom: 20px;
    text-align: left;
}

.toolroom-process {
    margin-top: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
}

.step-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}

.fabrication-process {
    margin: 40px 0;
}

.fab-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.fab-step {
    background-color: var(--bg-white);
    padding: 18px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    text-align: left;
    transition: all 0.3s ease;
}

.fab-step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.15);
}

.fab-number {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.fab-step h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.fab-step p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}

.safety-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.safety-category {
    background-color: var(--bg-light);
    padding: 18px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.safety-category:hover {
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
    transform: translateY(-3px);
}

.safety-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.safety-category:hover .safety-icon {
    transform: rotate(10deg) scale(1.1);
}

.safety-category h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.safety-category p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}

.electroplating-types,
.gearbox-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.plating-type,
.gearbox-service {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.plating-type h4,
.gearbox-service h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.plating-type h4 i,
.gearbox-service h4 i {
    font-size: 12px;
    margin-right: 10px;
}

.plating-type p,
.gearbox-service p {
    color: var(--text-light);
}

/* Products Page */
.product-detail {
    background-color: var(--bg-white);
}

.product-intro {
    max-width: 900px;
    margin: 0 0 40px 0.5rem;
}

.product-intro p {
    margin-bottom: 20px;
    text-align: left;
}

.silicon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 30px 0;
}

.feature-card {
    background-color: var(--bg-light);
    padding: 14px 12px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
}

.feature-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.feature-card h3 {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
}

.product-content {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.product-content h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 18px 0 12px 0;
    font-weight: 600;
    text-align: left;
}

.product-content p {
    margin-bottom: 12px;
    text-align: left;
    line-height: 1.6;
    font-size: 13px;
}

.profile-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 40px 0;
}

.profile-type {
    background-color: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.profile-type:hover {
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
}

.profile-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.profile-type h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.profile-type p {
    color: var(--text-light);
}

.heating-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 30px 0;
}

.heat-step {
    background-color: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.heat-step:hover {
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
}

.heat-number {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.heat-step h4 {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.heat-step p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
}

.nice-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 40px 0;
}

.nice-product {
    background-color: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.nice-product:hover {
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
}

.nice-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.nice-product h3 {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 600;
}

.nice-product p {
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.5;
}

.safety-equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 30px 0;
}

.safety-equip {
    background-color: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.safety-equip:hover {
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
}

.equip-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.safety-equip h3 {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 600;
}

.safety-equip p {
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.5;
}

.additional-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.add-product {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.add-product h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.add-product h4 i {
    font-size: 12px;
    margin-right: 10px;
}

.add-product p {
    color: var(--text-light);
    font-size: 14px;
}

/* Gallery Page */
.gallery-intro {
    background-color: var(--bg-white);
}

.intro-text {
    max-width: 100%;
    margin: 0;
}

.intro-text p {
    margin-bottom: 20px;
    text-align: left;
}

.showcase-section {
    padding: 60px 0;
}

.showcase-content {
    max-width: 900px;
    margin: 0;
    margin-left: 0.5rem;
}

.showcase-content p {
    margin-bottom: 20px;
    text-align: left;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    margin: 40px 0;
}

.gallery-placeholder {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e0e0 100%);
    padding: 10px 8px;
    border-radius: 8px;
    text-align: center;
    border: 1px dashed var(--border-color);
}

.gallery-placeholder i {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 4px;
    display: block;
}

.gallery-placeholder p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 10px;
    line-height: 1.2;
    word-wrap: break-word;
}

.project-highlights {
    background-color: var(--bg-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.highlight-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.highlight-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.highlight-card p {
    color: var(--text-light);
    text-align: left;
    line-height: 1.6;
}

.quality-statement {
    background-color: var(--bg-white);
}

.statement-content {
    max-width: 900px;
    margin-left: 0.5rem;
    margin: 0;
}

.statement-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.statement-content p {
    margin-bottom: 20px;
    text-align: left;
}

/* Contact Page */
.contact-section {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.contact-info-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-details p,
.info-details a {
    font-size: 16px;
    color: var(--text-dark);
}

.info-details a:hover {
    color: var(--primary-color);
}

.contact-form-card {
    display: none !important;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

.business-info {
    background-color: var(--bg-light);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.business-card {
    background-color: var(--bg-white);
    padding: 20px 18px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.business-card:hover {
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
    transform: translateY(-3px);
}

.business-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.business-card h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.business-card p {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.6;
}

.business-card ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.business-card ul li {
    padding: 8px 0;
    color: var(--text-light);
}

.business-card ul li strong {
    color: var(--text-dark);
}

.map-section {
    background-color: var(--bg-white);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.why-contact {
    background-color: var(--bg-light);
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.why-contact-item {
    background-color: var(--bg-white);
    padding: 18px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.why-contact-item:hover {
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.1);
    transform: translateY(-3px);
}

.why-contact-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.why-contact-item h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-contact-item p {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .menu-toggle {
        display: block;
        z-index: 1002;
        position: relative;
    }

    /* Left-side collapsible navigation for mobile - App Style */
    .nav {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 75% !important;
        max-width: 320px !important;
        height: 100% !important;
        height: 100vh !important;
        height: 100dvh !important; /* Dynamic viewport height for mobile */
        background-color: var(--bg-white) !important;
        box-shadow: 4px 0 24px rgba(0,0,0,0.25) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1001 !important;
        padding-top: 80px !important;
        -webkit-overflow-scrolling: touch !important;
        will-change: left;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .nav.active {
        left: 0 !important;
        box-shadow: 4px 0 32px rgba(0,0,0,0.3) !important;
    }

    /* Overlay backdrop when menu is open - clickable */
    .nav.active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
        animation: fadeInOverlay 0.35s ease;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    @keyframes fadeInOverlay {
        from { 
            opacity: 0;
            backdrop-filter: blur(0px);
        }
        to { 
            opacity: 1;
            backdrop-filter: blur(2px);
        }
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 !important;
        margin: 0;
        list-style: none;
    }

    .nav ul li {
        border-bottom: 1px solid rgba(44, 95, 141, 0.08);
        margin: 0;
    }

    .nav ul li:first-child {
        border-top: 1px solid rgba(44, 95, 141, 0.08);
    }

    .nav ul li:last-child {
        border-bottom: none;
    }

    .nav a {
        display: flex !important;
        align-items: center;
        padding: 20px 28px !important;
        color: var(--text-dark) !important;
        font-size: 17px !important;
        font-weight: 500 !important;
        transition: all 0.25s ease !important;
        text-decoration: none;
        position: relative;
        min-height: 60px;
    }

    .nav a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-color);
        transform: scaleY(0);
        transition: transform 0.25s ease;
    }

    .nav a:active {
        background-color: rgba(44, 95, 141, 0.12);
    }

    .nav a.active::before {
        transform: scaleY(1);
    }

    .nav a.active {
        background-color: rgba(44, 95, 141, 0.1);
        color: var(--primary-color) !important;
        font-weight: 600 !important;
    }

    /* Header stays fixed with elevated z-index */
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: var(--bg-white);
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .logo-text p {
        font-size: 11px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 38px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .services-grid,
    .categories-grid,
    .why-grid,
    .commitment-grid,
    .approach-grid,
    .expertise-grid,
    .capabilities-grid,
    .safety-categories,
    .silicon-features,
    .profile-types,
    .heating-process,
    .nice-products,
    .safety-equipment-grid,
    .highlights-grid,
    .business-grid,
    .why-contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .section {
        padding: 50px 0;
    }

    .quote-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .lead {
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

/* Data Visualization & Interactive Elements */
.data-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
    animation: fadeIn 0.5s ease;
    box-shadow: 0 2px 8px rgba(44, 95, 141, 0.3);
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(44, 95, 141, 0.1);
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
}

.card-metric {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(44, 95, 141, 0.1);
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
}

/* Description Page Styles */
.description-content {
    padding: 40px 0;
    background-color: var(--bg-white);
}

.description-wrapper {
    max-width: 100%;
}

.description-header {
    text-align: left;
    margin-bottom: 30px;
}

.description-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.description-body {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
}

.content-text {
    color: var(--text-dark);
    font-size: 16px;
}

.content-text p {
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.8;
}

.content-text ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.content-text ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
    text-align: left;
    line-height: 1.6;
}

.content-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.loading-spinner {
    text-align: left;
    padding: 50px 20px;
}

.loading-spinner i {
    font-size: 48px;
    color: var(--primary-color);
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
    display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 20px;
}

.meta-info {
    text-align: left;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.source-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Make cards clickable on home page */
.value-card,
.service-card,
.category-card {
    cursor: pointer;
    user-select: none;
}

.value-card:hover,
.service-card:hover,
.category-card:hover {
    box-shadow: 0 10px 35px rgba(44, 95, 141, 0.2) !important;
    transform: translateY(-8px) !important;
}
}

/* Mobile & Touch-Friendly Optimizations */
* {
    -webkit-tap-highlight-color: rgba(44, 95, 141, 0.1);
    -webkit-touch-callout: none;
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Increase touch target sizes for mobile */
@media (max-width: 768px) {
    /* Enhanced typography for mobile readability */
    body {
        font-size: 15px;
        line-height: 1.7;
    }

    p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        margin-bottom: 18px;
    }

    h1 {
        font-size: 28px !important;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    h2 {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    h3 {
        font-size: 20px !important;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    h4 {
        font-size: 18px !important;
        line-height: 1.3;
    }

    /* Enhanced buttons for mobile */
    .btn {
        padding: 18px 32px !important;
        min-height: 56px !important;
        min-width: 140px;
        font-size: 16px !important;
        border-radius: 12px !important;
        font-weight: 700;
        letter-spacing: 0.3px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 10px 0;
        box-shadow: 0 4px 12px rgba(44, 95, 141, 0.15);
    }

    .btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 6px rgba(44, 95, 141, 0.2);
    }

    /* Enhanced navigation links - left sidebar with active indicator */
    .nav a {
        padding: 22px 28px !important;
        min-height: 60px !important;
        font-size: 17px !important;
        display: flex !important;
        align-items: center;
        color: var(--text-dark) !important;
        font-weight: 500 !important;
        transition: all 0.25s ease !important;
        position: relative;
    }

    .nav a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-color);
        transform: scaleY(0);
        transition: transform 0.25s ease;
    }

    .nav a:active {
        background-color: rgba(44, 95, 141, 0.12) !important;
    }

    .nav a.active::before {
        transform: scaleY(1);
    }

    .nav a.active {
        background-color: rgba(44, 95, 141, 0.1) !important;
        color: var(--primary-color) !important;
        font-weight: 600 !important;
    }

    .nav ul li {
        border-bottom: 1px solid rgba(44, 95, 141, 0.08);
        margin: 0;
    }

    .nav ul li:first-child {
        border-top: 1px solid rgba(44, 95, 141, 0.08);
    }

    .nav ul li:last-child {
        border-bottom: none;
    }

    /* Enhanced menu toggle with elevated z-index */
    .menu-toggle {
        width: 56px !important;
        height: 56px !important;
        padding: 16px !important;
        border-radius: 12px;
        background: rgba(44, 95, 141, 0.08);
        position: relative;
        z-index: 1002 !important;
    }

    .menu-toggle:active {
        background: rgba(44, 95, 141, 0.18);
        transform: scale(0.95);
    }

    /* Enhanced form inputs for mobile */
    input, textarea, select {
        font-size: 16px !important;
        padding: 16px 14px !important;
        min-height: 56px !important;
        border-radius: 12px !important;
        border: 2px solid #ddd !important;
        width: 100% !important;
        box-sizing: border-box;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    input:focus, textarea:focus, select:focus {
        border-color: var(--primary-color) !important;
        box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1) !important;
        outline: none !important;
    }

    textarea {
        min-height: 140px !important;
        resize: vertical;
    }

    /* Better link spacing on mobile */
    a:not(.btn):not(.nav a) {
        padding: 10px 6px;
        margin: 6px 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Improve scrolling performance */
    body {
        -webkit-user-select: none;
        user-select: none;
        overflow-x: hidden;
    }

    /* Allow text selection on mobile */
    p, h1, h2, h3, h4, h5, h6, span, li {
        -webkit-user-select: text;
        user-select: text;
    }

    /* Enhanced card touch targets */
    .card, .value-card, .service-card, .category-card {
        padding: 20px !important;
        margin: 8px 0 !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .card:active, .value-card:active, .service-card:active, .category-card:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }

    .gallery-placeholder, .contact-info-card, .business-card,
    .highlight-card, .why-contact-item {
        padding: 18px !important;
        margin: 8px 0 !important;
        border-radius: 14px !important;
    }

    /* iOS specific fixes */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="search"],
    textarea,
    select {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 12px !important;
        font-size: 16px !important;
        padding: 16px 14px !important;
        border: 2px solid #ddd;
        background-color: #fff;
    }

    /* iOS safe area support */
    body {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
        padding-top: max(0px, env(safe-area-inset-top));
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }

    /* Header safe area */
    .header {
        padding-top: max(12px, env(safe-area-inset-top));
        padding-bottom: 12px;
    }

    /* Container padding for mobile */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Better header on notch devices */
    .header-content {
        gap: 20px;
        padding: 8px 0;
    }

    /* Enhanced navigation menu - left sidebar drawer */
    .nav {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 75% !important;
        max-width: 320px !important;
        height: 100vh !important;
        height: 100dvh !important;
        background-color: var(--bg-white) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        box-shadow: 4px 0 24px rgba(0,0,0,0.25) !important;
        padding-top: 80px !important;
        z-index: 1001 !important;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        will-change: left;
    }

    .nav.active {
        left: 0 !important;
    }

    /* Backdrop overlay with blur */
    .nav.active::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .nav ul {
        padding: 0 !important;
        margin: 0;
    }

    /* Improve call/email links - large touch targets */
    a[href^="tel:"],
    a[href^="mailto:"] {
        font-size: 17px !important;
        padding: 14px 10px !important;
        min-height: 52px !important;
        display: inline-flex;
        align-items: center;
        color: var(--primary-color);
        font-weight: 600;
        border-radius: 10px;
        background: rgba(44, 95, 141, 0.05);
        margin: 6px 0;
    }

    a[href^="tel:"]:active,
    a[href^="mailto:"]:active {
        background: rgba(44, 95, 141, 0.12);
        transform: scale(0.98);
    }

    /* Better spacing for interactive elements */
    .btn-primary, .btn-secondary {
        margin: 12px 0;
    }

    /* Prevent double-tap zoom on buttons */
    button, a, input[type="submit"], .btn {
        touch-action: manipulation;
        -ms-touch-action: manipulation;
    }

    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Improve iframe responsiveness */
    iframe {
        max-width: 100% !important;
        height: auto;
        border-radius: 12px;
    }

    /* Map container responsive */
    .map-container iframe {
        width: 100% !important;
        height: 350px !important;
        border-radius: 16px;
    }

    /* Section spacing optimization */
    .section {
        padding: 40px 0 !important;
    }

    .page-header {
        padding: 50px 0 40px !important;
    }

    /* Grid optimizations for mobile */
    .values-grid, .services-grid, .categories-grid,
    .commitment-grid, .expertise-grid, .capabilities-grid,
    .product-features, .profile-types, .heating-process,
    .nice-products, .safety-equipment-grid, .highlights-grid,
    .business-grid, .why-contact-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Card icons sizing for mobile */
    .value-card i, .service-card i, .category-card i,
    .business-card i, .why-contact-item i {
        font-size: 36px !important;
        margin-bottom: 12px;
    }

    /* Footer optimization */
    .footer {
        padding: 30px 0 !important;
    }

    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Hero section mobile */
    .hero {
        padding: 60px 0 50px !important;
        min-height: auto !important;
    }

    .hero-title {
        font-size: 30px !important;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 17px !important;
        margin-bottom: 24px;
    }

    /* Info items spacing */
    .info-item {
        padding: 16px !important;
        margin: 8px 0 !important;
        border-radius: 12px;
    }

    /* Contact grid mobile */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Gallery grid mobile */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)) !important;
        gap: 10px !important;
    }

    /* Logo sizing */
    .logo img {
        width: 70px;
        height: 70px;
    }

    .logo-text h1 {
        font-size: 22px !important;
    }

    .logo-text p {
        font-size: 12px !important;
    }

    /* Enhanced section headers */
    .section-header {
        margin-bottom: 24px;
    }

    .section-header h2 {
        font-size: 32px !important;
        margin-bottom: 14px;
    }

    .underline {
        width: 70px;
        height: 5px;
    }
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
        padding-top: max(0px, env(safe-area-inset-top));
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }

    /* Header safe area */
    .header {
        padding-top: max(10px, env(safe-area-inset-top));
    }

    /* Better header on notch devices */
    .header-content {
        gap: 16px;
    }

    /* Improve navigation on mobile */
    .nav ul li a {
        padding: 14px 12px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Improve call/email links */
    a[href^="tel:"],
    a[href^="mailto:"] {
        font-size: 16px;
        padding: 8px 4px;
    }

    /* Better spacing for interactive elements */
    .btn-primary, .btn-secondary {
        margin: 8px 0;
    }

    /* Prevent double-tap zoom on buttons */
    button, a, input[type="submit"] {
        touch-action: manipulation;
    }

    /* Better modal/overlay on mobile */
    .modal {
        max-width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
    }

    /* Prevent horizontal scroll on mobile */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Improve iframe responsiveness */
    iframe {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - ultra mobile optimization */
    
    /* Enhanced typography for small screens */
    body {
        font-size: 14px;
    }

    p {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    h1 {
        font-size: 24px !important;
        margin-bottom: 14px;
    }

    h2 {
        font-size: 20px !important;
        margin-bottom: 12px;
    }

    h3 {
        font-size: 17px !important;
        margin-bottom: 10px;
    }

    h4 {
        font-size: 15px !important;
    }

    /* Full-width enhanced buttons */
    .btn {
        padding: 16px 24px !important;
        min-height: 54px !important;
        font-size: 15px !important;
        width: 100%;
        margin: 10px 0;
        border-radius: 12px !important;
    }

    .hero-buttons .btn,
    .cta-buttons .btn,
    .contact-form .btn {
        width: 100%;
        margin: 8px 0;
    }

    /* Optimized form for small screens */
    input, textarea, select {
        font-size: 16px !important;
        padding: 14px 12px !important;
        min-height: 54px !important;
        width: 100%;
        box-sizing: border-box;
        border-radius: 10px !important;
    }

    textarea {
        min-height: 130px !important;
    }

    /* Better container spacing */
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Navigation optimization - left sidebar for small screens */
    .nav {
        width: 80% !important;
        max-width: 280px !important;
        padding-top: 75px !important;
    }

    .nav a {
        padding: 18px 24px !important;
        min-height: 56px !important;
        font-size: 16px !important;
    }

    /* Menu toggle */
    .menu-toggle {
        width: 54px !important;
        height: 54px !important;
        padding: 14px !important;
        z-index: 1002 !important;
    }

    /* Better link sizing */
    a:not(.btn):not(.nav a) {
        min-height: 48px;
        padding: 12px 8px;
    }

    /* Call/Email links optimization */
    a[href^="tel:"],
    a[href^="mailto:"] {
        font-size: 16px !important;
        padding: 14px 12px !important;
        min-height: 50px !important;
    }

    /* Ensure cards don't overflow */
    .card, [class*="card"] {
        overflow: hidden;
        word-wrap: break-word;
        padding: 16px !important;
        margin: 6px 0 !important;
    }

    .value-card, .service-card, .category-card {
        padding: 18px !important;
    }

    /* Icon sizing */
    .value-card i, .service-card i, .category-card i {
        font-size: 32px !important;
    }

    /* Images scale properly */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Section spacing */
    .section {
        padding: 35px 0 !important;
    }

    .page-header {
        padding: 45px 0 35px !important;
    }

    .page-header h1 {
        font-size: 26px !important;
    }

    .page-header p {
        font-size: 15px !important;
    }

    /* Hero section */
    .hero {
        padding: 50px 0 40px !important;
    }

    .hero-title {
        font-size: 26px !important;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 15px !important;
        line-height: 1.5;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 26px !important;
    }

    /* Logo sizing */
    .logo img {
        width: 60px;
        height: 60px;
    }

    .logo-text h1 {
        font-size: 18px !important;
    }

    .logo-text p {
        font-size: 10px !important;
    }

    /* Gallery extra compact */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(95px, 1fr)) !important;
        gap: 8px !important;
    }

    .gallery-placeholder {
        padding: 12px 10px !important;
    }

    .gallery-placeholder i {
        font-size: 16px !important;
        margin-bottom: 4px !important;
    }

    .gallery-placeholder p {
        font-size: 9px !important;
    }

    /* Footer */
    .footer {
        padding: 25px 0 !important;
        font-size: 13px;
    }

    /* Info items */
    .info-item {
        padding: 14px !important;
    }

    /* Map responsive */
    .map-container iframe {
        height: 300px !important;
    }

    /* Grid systems single column */
    .values-grid, .services-grid, .categories-grid,
    .commitment-grid, .expertise-grid, .capabilities-grid,
    .product-features, .highlights-grid, .business-grid,
    .why-contact-grid {
        gap: 12px !important;
    }

    /* Business cards compact */
    .business-card, .why-contact-item {
        padding: 16px !important;
    }

    /* Contact grid */
    .contact-grid {
        gap: 16px !important;
    }

    /* Better touch feedback */
    button:active, .btn:active, a:active {
        opacity: 0.85;
    }
}

/* FORCED MOBILE NAVIGATION - Override All Conflicts */
@media screen and (max-width: 768px) {
    
    /* Mobile overlay backdrop - appears behind nav */
    .nav::before {
        content: '' !important;
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.7) !important;
        z-index: 9998 !important;
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
    }

    .nav.active::before {
        display: block !important;
        opacity: 1 !important;
    }

    /* Force hide desktop nav, show mobile toggle */
    .nav {
        display: block !important;
        visibility: visible !important;
        position: fixed !important;
        top: 0 !important;
        left: -85% !important;
        bottom: 0 !important;
        width: 85% !important;
        max-width: 300px !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        background: #f8f9fa !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: 8px 0 40px rgba(0,0,0,0.4) !important;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .nav.active {
        left: 0 !important;
        display: block !important;
    }

    .nav ul {
        display: flex !important;
        flex-direction: column !important;
        list-style: none !important;
        padding: 80px 0 40px 0 !important;
        margin: 0 !important;
        width: 100% !important;
        gap: 4px !important;
        background: #f8f9fa !important;
    }

    .nav ul li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 4px !important;
        border-bottom: none !important;
    }

    .nav ul li:first-child {
        border-top: none !important;
    }

    .nav a {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        padding: 16px 20px !important;
        margin: 0 !important;
        min-height: 52px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        color: #2c3e50 !important;
        text-decoration: none !important;
        transition: all 0.25s ease !important;
        box-sizing: border-box !important;
        position: relative !important;
        background: #ffffff !important;
        border-radius: 8px !important;
        letter-spacing: 0.3px !important;
    }

    .nav a:hover {
        background: rgba(44, 95, 141, 0.08) !important;
        transform: translateX(4px) !important;
    }

    .nav a:active {
        background: rgba(44, 95, 141, 0.2) !important;
        transform: scale(0.98) !important;
    }

    .nav a.active {
        background: linear-gradient(135deg, #2c5f8d 0%, #4a90d9 100%) !important;
        color: #ffffff !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3) !important;
    }

    .nav a.active::before {
        display: none !important;
    }

    /* Force menu toggle to show */
    .menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        height: 48px !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 10px !important;
        font-size: 24px !important;
        color: #2c5f8d !important;
        cursor: pointer !important;
        z-index: 10000 !important;
        position: relative !important;
        transition: all 0.25s ease !important;
        -webkit-tap-highlight-color: rgba(44, 95, 141, 0.1) !important;
    }

    .menu-toggle:hover {
        background: rgba(44, 95, 141, 0.08) !important;
    }

    .menu-toggle:active {
        background: rgba(44, 95, 141, 0.15) !important;
        transform: scale(0.92) !important;
    }

    .menu-toggle i {
        font-size: 22px !important;
        pointer-events: none !important;
        transition: transform 0.3s ease !important;
    }

    /* Force header to be sticky */
    .header {
        position: sticky !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9997 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 16px rgba(0,0,0,0.08) !important;
        border-bottom: 1px solid rgba(44, 95, 141, 0.1) !important;
    }

    .header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 14px 18px !important;
        gap: 12px !important;
        max-width: 100% !important;
    }

    .logo {
        font-size: 18px !important;
        max-width: calc(100% - 60px) !important;
    }

    .tagline {
        font-size: 10px !important;
        display: block !important;
    }

    /* Lock body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100vh !important;
        top: 0 !important;
        left: 0 !important;
    }

    /* Hide main content when menu is open */
    body.menu-open main,
    body.menu-open .hero,
    body.menu-open .section,
    body.menu-open footer {
        filter: blur(0) !important;
        pointer-events: none !important;
    }
}

@media screen and (max-width: 480px) {
    .nav {
        width: 88% !important;
        max-width: 280px !important;
    }

    .nav ul {
        padding: 70px 0 30px 0 !important;
    }

    .nav a {
        padding: 14px 18px !important;
        min-height: 50px !important;
        font-size: 14px !important;
    }

    .menu-toggle {
        width: 46px !important;
        height: 46px !important;
    }

    .menu-toggle i {
        font-size: 20px !important;
    }

    .header-content {
        padding: 12px 14px !important;
    }

    .logo {
        font-size: 16px !important;
    }

    .tagline {
        font-size: 9px !important;
    }
}
