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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0.6;
}

.bg-animation {
    width: 100%;
    height: 100%;
    transform: translateZ(0);
}

.circuit-lines {
    animation: parallaxFloat 20s infinite linear;
}

.floating-elements {
    animation: parallaxFloat 15s infinite linear reverse;
}

@keyframes parallaxFloat {
    0% { transform: translateX(0px); }
    100% { transform: translateX(50px); }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.degson-logo {
    max-width: 160px;
}

.gross-logo {
    height: 120px;
    width: auto;
    opacity: 1;
    margin-bottom: -10px;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-divider {
    font-size: 1.5rem;
    color: #00B050;
    font-weight: 300;
    margin: 0 0.5rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 0.9rem;
    color: #00B050;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.distributor-note {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 400;
    margin: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2.5rem;
}

.nav li {
    position: relative;
    isolation: isolate;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
    overflow: hidden;
}

.nav-link:hover {
    color: #00B050;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #00B050;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, #00B050, #009644);
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 1rem;
    z-index: 10;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 80, 0.3);
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.8) 0%, rgba(237, 242, 247, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="3" fill="%2300B050" opacity="0.15"/><circle cx="150" cy="150" r="2" fill="%2300B050" opacity="0.12"/><rect x="100" y="100" width="4" height="4" fill="%2300B050" opacity="0.08"/><circle cx="25" cy="125" r="2.5" fill="%2300B050" opacity="0.1"/><circle cx="175" cy="75" r="1.5" fill="%2300B050" opacity="0.14"/><circle cx="80" cy="30" r="2" fill="%2300B050" opacity="0.1"/><circle cx="170" cy="40" r="1.8" fill="%2300B050" opacity="0.12"/><rect x="30" y="80" width="3" height="3" fill="%2300B050" opacity="0.09"/></svg>');
    animation: backgroundPattern 25s linear infinite;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00B050, #009644);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a365d;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00B050;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Product Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.product-showcase {
    position: relative;
    max-width: 450px;
    min-height: 350px;
}

.showcase-bg-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 176, 80, 0.1), rgba(0, 150, 68, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(0, 176, 80, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.rotating-shade-gray {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        transparent 0deg,
        rgba(100, 100, 100, 0.15) 30deg,
        rgba(120, 120, 120, 0.25) 60deg,
        rgba(100, 100, 100, 0.15) 90deg,
        transparent 120deg,
        transparent 240deg,
        rgba(100, 100, 100, 0.1) 270deg,
        transparent 300deg,
        transparent 360deg
    );
    animation: rotateShadeReverse 40s linear infinite;
    border-radius: 50%;
    z-index: 1;
}

.rotating-shade {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent 0deg,
        rgba(0, 176, 80, 0.1) 45deg,
        rgba(0, 176, 80, 0.2) 90deg,
        rgba(0, 176, 80, 0.1) 135deg,
        transparent 180deg,
        transparent 360deg
    );
    animation: rotateShade 30s linear infinite;
    border-radius: 50%;
    z-index: 2;
}

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

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

.floating-seo-terms {
    position: absolute;
    top: -150px;
    left: -200px;
    width: calc(100% + 400px);
    height: calc(100% + 300px);
    z-index: 3;
    pointer-events: none;
}

.seo-term {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(100, 100, 100, 0.7);
    opacity: 0;
    animation: floatAndFade 8s ease-in-out infinite;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.seo-term:nth-child(1) { top: 15%; left: 25%; }
.seo-term:nth-child(2) { top: 8%; left: 70%; }
.seo-term:nth-child(3) { top: 35%; left: 15%; }
.seo-term:nth-child(4) { top: 22%; left: 85%; }
.seo-term:nth-child(5) { top: 60%; left: 30%; }
.seo-term:nth-child(6) { top: 45%; left: 75%; }
.seo-term:nth-child(7) { top: 12%; left: 45%; }
.seo-term:nth-child(8) { top: 75%; left: 20%; }
.seo-term:nth-child(9) { top: 28%; left: 60%; }
.seo-term:nth-child(10) { top: 55%; left: 10%; }
.seo-term:nth-child(11) { top: 40%; left: 90%; }
.seo-term:nth-child(12) { top: 18%; left: 35%; }
.seo-term:nth-child(13) { top: 65%; left: 65%; }
.seo-term:nth-child(14) { top: 32%; left: 5%; }
.seo-term:nth-child(15) { top: 80%; left: 50%; }
.seo-term:nth-child(16) { top: 5%; left: 55%; }
.seo-term:nth-child(17) { top: 50%; left: 40%; }
.seo-term:nth-child(18) { top: 25%; left: 95%; }
.seo-term:nth-child(19) { top: 70%; left: 80%; }
.seo-term:nth-child(20) { top: 38%; left: 25%; }
.seo-term:nth-child(21) { top: 85%; left: 35%; }
.seo-term:nth-child(22) { top: 10%; left: 80%; }
.seo-term:nth-child(23) { top: 58%; left: 55%; }
.seo-term:nth-child(24) { top: 42%; left: 12%; }
.seo-term:nth-child(25) { top: 72%; left: 70%; }
.seo-term:nth-child(26) { top: 20%; left: 50%; }
.seo-term:nth-child(27) { top: 88%; left: 15%; }
.seo-term:nth-child(28) { top: 48%; left: 85%; }
.seo-term:nth-child(29) { top: 62%; left: 45%; }
.seo-term:nth-child(30) { top: 95%; left: 25%; }

@keyframes floatAndFade {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.8);
    }
    15% {
        opacity: 0.8;
        transform: translateY(5px) scale(1);
    }
    85% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
}

.showcase-grid {
    position: relative;
    z-index: 4;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.showcase-row {
    display: flex;
    gap: 1rem;
}

.showcase-item {
    position: relative;
    animation: float 6s ease-in-out infinite;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-3px);
}

.showcase-item.small {
    flex: 1;
}

.showcase-item:nth-child(1) { animation-delay: -1s; }
.showcase-item:nth-child(2) { animation-delay: -2s; }
.showcase-item:nth-child(3) { animation-delay: -3s; }
.showcase-row:nth-child(3) .showcase-item:nth-child(1) { animation-delay: -4s; }
.showcase-row:nth-child(3) .showcase-item:nth-child(2) { animation-delay: -5s; }
.showcase-row:nth-child(3) .showcase-item:nth-child(3) { animation-delay: -6s; }

.product-image-placeholder {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.product-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.placeholder-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    opacity: 0.4;
    filter: grayscale(100%);
}

.product-image-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: white;
    color: #00B050;
    border: 2px solid #00B050;
    position: relative;
}

.btn-primary:hover {
    background: #00B050;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 80, 0.3);
}

.btn-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23ffffff" opacity="0.1"/><rect x="40" y="40" width="3" height="3" fill="%23ffffff" opacity="0.1"/></svg>');
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover .btn-bg-pattern {
    opacity: 1;
}

.btn-secondary {
    background: #00B050;
    color: white;
    border: 2px solid #00B050;
}

.btn-secondary:hover {
    background: #009644;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 80, 0.3);
}

.btn-outline {
    background: transparent;
    color: #00B050;
    border: 2px solid #00B050;
}

.btn-outline:hover {
    background: #00B050;
    color: white;
    transform: translateY(-2px);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 176, 80, 0.3);
}

.product-card.featured {
    border: 2px solid #00B050;
    position: relative;
}

.product-card.featured::before {
    content: 'Featured';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #00B050;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-icon {
    font-size: 2.5rem;
    opacity: 0.4;
    filter: grayscale(100%);
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.card-content {
    padding: 0 2rem 1.5rem;
}

.card-content p {
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #000;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00B050;
    font-weight: bold;
    font-size: 1rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', sans-serif;
}

.card-footer {
    padding: 1.5rem 2rem 2rem;
}

.product-link {
    color: #00B050;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.product-link:hover {
    color: #009644;
    transform: translateX(5px);
}

.product-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #00B050;
    transition: width 0.3s ease;
}

.product-link:hover::after {
    width: calc(100% - 20px);
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 176, 80, 0.05) 0%, rgba(0, 150, 68, 0.03) 100%);
}

.solutions .section-header h2 {
    color: #00B050;
}

.solutions .section-header p {
    color: #009644;
}

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

.solution-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 176, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 176, 80, 0.15);
    border-color: rgba(0, 176, 80, 0.4);
}

.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow:
        0 0 4px rgba(255, 255, 255, 1),
        0 0 8px rgba(255, 255, 255, 1),
        0 0 12px rgba(255, 255, 255, 1),
        0 0 16px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 255, 255, 0.8),
        1px 1px 2px rgba(255, 255, 255, 1),
        -1px -1px 2px rgba(255, 255, 255, 1),
        1px -1px 2px rgba(255, 255, 255, 1),
        -1px 1px 2px rgba(255, 255, 255, 1);
}

.solution-card p {
    color: #000;
    line-height: 1.6;
    font-weight: bold;
    position: relative;
    z-index: 2;
    text-shadow:
        0 0 9px rgba(255, 255, 255, 1),
        0 0 18px rgba(255, 255, 255, 1),
        0 0 27px rgba(255, 255, 255, 1),
        0 0 36px rgba(255, 255, 255, 0.9),
        0 0 45px rgba(255, 255, 255, 0.8),
        0 0 54px rgba(255, 255, 255, 0.7),
        0 0 63px rgba(255, 255, 255, 0.6),
        3px 3px 3px rgba(255, 255, 255, 1),
        -3px -3px 3px rgba(255, 255, 255, 1),
        3px -3px 3px rgba(255, 255, 255, 1),
        -3px 3px 3px rgba(255, 255, 255, 1),
        6px 6px 6px rgba(255, 255, 255, 0.8),
        -6px -6px 6px rgba(255, 255, 255, 0.8),
        6px -6px 6px rgba(255, 255, 255, 0.8),
        -6px 6px 6px rgba(255, 255, 255, 0.8);
}

/* Industry-specific dynamic motion drawings */
.industry-automation {
    position: relative;
}

.industry-automation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/Automation.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.industry-automation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/Automation.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: sepia(1) hue-rotate(80deg) saturate(3) brightness(1.2);
    z-index: 1;
}

.rail-traffic {
    position: relative;
}

.rail-traffic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/Rail.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.rail-traffic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/Rail.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: sepia(1) hue-rotate(80deg) saturate(3) brightness(1.2);
    z-index: 1;
}

.new-energy {
    position: relative;
}

.new-energy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/Vehicle.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.new-energy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/Vehicle.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: sepia(1) hue-rotate(80deg) saturate(3) brightness(1.2);
    z-index: 1;
}

.renewable-energy {
    position: relative;
}

.renewable-energy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/Renewable.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.renewable-energy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/Renewable.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: sepia(1) hue-rotate(80deg) saturate(3) brightness(1.2);
    z-index: 1;
}

.smart-building {
    position: relative;
}

.smart-building::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/building.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.smart-building::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/building.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: sepia(1) hue-rotate(80deg) saturate(3) brightness(1.2);
    z-index: 1;
}

.electric-energy {
    position: relative;
}

.electric-energy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/Electrical.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.electric-energy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/Electrical.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: sepia(1) hue-rotate(80deg) saturate(3) brightness(1.2);
    z-index: 1;
}

.food-beverage {
    position: relative;
}

.food-beverage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/foodbev.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.food-beverage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/foodbev.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: sepia(1) hue-rotate(80deg) saturate(3) brightness(1.2);
    z-index: 1;
}

.data-centers {
    position: relative;
}

.data-centers::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/datacenter.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.data-centers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../public/images/datacenter.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: sepia(1) hue-rotate(80deg) saturate(3) brightness(1.2);
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #f8f9fa;
    color: #1a365d;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 1250px;
    height: 1250px;
    background: conic-gradient(
        transparent 0deg,
        rgba(100, 100, 100, 0.15) 30deg,
        rgba(120, 120, 120, 0.25) 60deg,
        rgba(100, 100, 100, 0.15) 90deg,
        transparent 120deg,
        transparent 240deg,
        rgba(100, 100, 100, 0.1) 270deg,
        transparent 300deg,
        transparent 360deg
    );
    animation: rotateShadeReverse 40s linear infinite;
    border-radius: 50%;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="3" fill="%2300B050" opacity="0.2"/><circle cx="150" cy="150" r="2" fill="%2300B050" opacity="0.15"/><rect x="100" y="100" width="4" height="4" fill="%2300B050" opacity="0.1"/><circle cx="25" cy="125" r="2.5" fill="%2300B050" opacity="0.12"/><circle cx="175" cy="75" r="1.5" fill="%2300B050" opacity="0.18"/></svg>');
    animation: backgroundPattern 20s linear infinite;
    z-index: 3;
}

.cta-green-gradient {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 1050px;
    height: 1050px;
    background: conic-gradient(
        transparent 0deg,
        rgba(0, 176, 80, 0.1) 45deg,
        rgba(0, 176, 80, 0.2) 90deg,
        rgba(0, 176, 80, 0.3) 135deg,
        rgba(0, 176, 80, 0.2) 180deg,
        rgba(0, 176, 80, 0.1) 225deg,
        transparent 270deg,
        transparent 360deg
    );
    animation: rotateShade 30s linear infinite;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

@keyframes backgroundPattern {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(200px) translateY(200px); }
}

.cta-content {
    position: relative;
    z-index: 4;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: #1a365d;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #4a5568;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #00B050;
    color: white;
    border: 2px solid #00B050;
}

.cta-section .btn-primary:hover {
    background: #00A048;
    transform: translateY(-2px);
}

.cta-section .btn-outline {
    border-color: #1a365d;
    color: #1a365d;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.cta-section .btn-outline:hover {
    background: #1a365d;
    color: white;
}

/* Footer */
.footer {
    background: #4a5568;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-logo-gross {
    height: 80px;
}


.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00B050;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #00B050;
}

.footer-bottom {
    border-top: 1px solid #718096;
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Product Page Styling */
.product-hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, rgba(0, 176, 80, 0.05) 0%, rgba(0, 150, 68, 0.02) 100%);
    position: relative;
}

.product-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: #00B050;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00B050;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.product-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
}

.product-categories {
    padding: 6rem 0;
    background: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 176, 80, 0.3);
}

.category-card.featured {
    border: 2px solid #00B050;
    position: relative;
}

.category-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #00B050;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.category-card .card-header {
    padding: 2.5rem 2.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.category-card .product-icon {
    font-size: 3rem;
    opacity: 0.8;
    filter: grayscale(100%) brightness(0.3);
    color: #333;
}

.category-card .card-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.category-card .card-content {
    padding: 0 2.5rem 2rem;
}

.category-card .card-content p {
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.spec {
    background: rgba(0, 176, 80, 0.1);
    color: #00B050;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 176, 80, 0.2);
}

.tech-specs {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 176, 80, 0.05) 0%, rgba(0, 150, 68, 0.02) 100%);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.spec-category {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.spec-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.spec-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00B050;
    margin-bottom: 2rem;
    text-align: center;
}

.spec-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #000;
}

.spec-value {
    font-weight: 700;
    color: #000;
    text-align: right;
}

.applications {
    padding: 6rem 0;
    background: white;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.application-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 176, 80, 0.3);
}

.app-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    filter: grayscale(100%) brightness(0.3);
    color: #333;
}

.application-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00B050;
    margin-bottom: 1rem;
}

.application-card p {
    color: #000;
    line-height: 1.6;
}

/* Large Monitor Optimizations */
@media (min-width: 1400px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1600px;
        margin: 3rem auto 0;
    }

    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1600px;
        margin: 3rem auto 0;
    }

    .application-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1600px;
        margin: 3rem auto 0;
    }

    .product-hero-content {
        max-width: 1600px;
    }

    .product-hero h1 {
        font-size: 4rem;
    }

    .product-hero .hero-subtitle {
        font-size: 1.4rem;
        max-width: 900px;
    }
}

@media (min-width: 1800px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .application-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }

    .product-hero h1 {
        font-size: 4.5rem;
    }
}

/* Solutions Page Styling */
.solution-hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, rgba(0, 176, 80, 0.05) 0%, rgba(0, 150, 68, 0.02) 100%);
    text-align: center;
}

.page-header-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00B050;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.page-header-content p {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.solution-detail {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.solution-detail:nth-child(odd) {
    background: rgba(0, 176, 80, 0.02);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00B050;
    margin-bottom: 1.5rem;
}

.solution-text p {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #000;
    font-size: 1rem;
}

.solution-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00B050;
    font-weight: bold;
    font-size: 1.1rem;
}

.solution-applications {
    background: rgba(0, 176, 80, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #00B050;
}

.solution-applications h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00B050;
    margin-bottom: 0.5rem;
}

.solution-applications p {
    color: #000;
    margin: 0;
    font-size: 1rem;
}

.solution-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-placeholder {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 176, 80, 0.1);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.solution-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 176, 80, 0.3);
}

.solution-placeholder .placeholder-icon {
    opacity: 0.6;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(0.4);
}

.solution-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00B050;
    margin: 0;
}

.value-prop {
    padding: 6rem 0;
    background: white;
    text-align: center;
}

.value-prop h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #00B050;
    margin-bottom: 4rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 2rem 1rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    filter: grayscale(100%) brightness(0.4);
}

.value-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00B050;
    margin-bottom: 1rem;
}

.value-item p {
    color: #000;
    line-height: 1.6;
}

.solution-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 176, 80, 0.3);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    filter: grayscale(100%) brightness(0.4);
}

.solution-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00B050;
    margin-bottom: 1rem;
}

.solution-item p {
    color: #000;
    line-height: 1.6;
}

/* Solutions Page Responsive */
@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-text h2 {
        font-size: 2rem;
    }

    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0 4rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .brand-divider {
        display: none;
    }
}