
        :root {
            --pme-green: #8BC34A;
            --pme-navy: #1A237E;
            --steel-gray: #455A64;
            --carbon-black: #212121;
            --stainless-silver: #ECEFF1;
            --light-gray: #F5F5F5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Roboto Condensed', sans-serif;
            line-height: 1.6;
            color: var(--carbon-black);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 3px solid var(--pme-green);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--pme-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            font-family: 'Rajdhani', sans-serif;
        }

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

        .logo-main {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--pme-navy);
            line-height: 1;
        }

        .logo-tagline {
            font-size: 0.7rem;
            color: var(--steel-gray);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--steel-gray);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--pme-green);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--pme-navy);
        }

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

        .cta-button {
            background: var(--pme-green);
            color: white;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--pme-green);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        .cta-button:hover {
            background: var(--pme-navy);
            border-color: var(--pme-navy);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--pme-navy);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: calc(100vh - 80px);
            background: linear-gradient(135deg, var(--carbon-black) 0%, var(--steel-gray) 100%);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 4rem 0;
        }

        .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 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%238BC34A" stroke-width="0.5" opacity="0.1"/></svg>');
            background-size: 200px;
            animation: rotate 60s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 4rem;
            color: white;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-text h1 span {
            color: var(--pme-green);
            display: block;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--stainless-silver);
            margin-bottom: 2rem;
            font-weight: 300;
            border-left: 4px solid var(--pme-green);
            padding-left: 1.5rem;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Rajdhani', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--pme-green);
            line-height: 1;
        }

        .stat-label {
            color: var(--stainless-silver);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-visual {
            position: relative;
            height: 500px;
        }

        .process-circle {
            position: absolute;
            width: 400px;
            height: 400px;
            border: 2px solid rgba(139, 195, 74, 0.3);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .process-item {
            position: absolute;
            background: var(--stainless-silver);
            padding: 1rem 1.5rem;
            border-radius: 4px;
            font-weight: 700;
            color: var(--pme-navy);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border-left: 4px solid var(--pme-green);
            animation: float 3s ease-in-out infinite;
            font-family: 'Rajdhani', sans-serif;
        }

        .process-item:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
        .process-item:nth-child(2) { top: 25%; right: 0; animation-delay: 0.5s; }
        .process-item:nth-child(3) { bottom: 25%; right: 0; animation-delay: 1s; }
        .process-item:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
        .process-item:nth-child(5) { bottom: 25%; left: 0; animation-delay: 2s; }
        .process-item:nth-child(6) { top: 25%; left: 0; animation-delay: 2.5s; }

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

        .center-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: var(--pme-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 0 0 10px rgba(139, 195, 74, 0.2), 0 0 0 20px rgba(139, 195, 74, 0.1);
        }

        /* Section Styles */
        section {
            padding: 6rem 0;
        }

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

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

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--pme-navy);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--pme-green);
        }

        .section-subtitle {
            color: var(--steel-gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }

        /* Capabilities Section */
        .capabilities {
            background: var(--light-gray);
        }

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

        .capability-card {
            background: white;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            border-bottom: 4px solid transparent;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .capability-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--pme-green);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .capability-card:hover::before {
            transform: scaleX(1);
        }

        .capability-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-bottom-color: var(--pme-green);
        }

        .capability-icon {
            width: 70px;
            height: 70px;
            background: var(--stainless-silver);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--pme-navy);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .capability-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--pme-green);
            opacity: 0;
            transition: all 0.3s;
        }

        .capability-card:hover .capability-icon::after {
            opacity: 1;
            top: 0;
            left: 0;
        }

        .capability-card h3 {
            font-size: 1.5rem;
            color: var(--pme-navy);
            margin-bottom: 1rem;
        }

        .capability-card p {
            color: var(--steel-gray);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .capability-list {
            list-style: none;
        }

        .capability-list li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--steel-gray);
        }

        .capability-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--pme-green);
            font-weight: bold;
        }

        /* Materials Section */
        .materials-showcase {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }

        .material-item {
            height: 500px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .material-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s;
        }

        .material-item:hover .material-bg {
            transform: scale(1.1);
        }

        .material-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(26, 35, 126, 0.9) 0%, rgba(26, 35, 126, 0.4) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 3rem;
            transition: all 0.3s;
        }

        .material-item:hover .material-overlay {
            background: linear-gradient(to top, rgba(139, 195, 74, 0.9) 0%, rgba(139, 195, 74, 0.4) 50%, transparent 100%);
        }

        .material-number {
            font-family: 'Rajdhani', sans-serif;
            font-size: 5rem;
            font-weight: 700;
            color: rgba(255,255,255,0.2);
            position: absolute;
            top: 2rem;
            right: 2rem;
            line-height: 1;
        }

        .material-content h3 {
            font-size: 2rem;
            color: white;
            margin-bottom: 1rem;
        }

        .material-content p {
            color: rgba(255,255,255,0.9);
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s;
        }

        .material-item:hover .material-content p {
            opacity: 1;
            transform: translateY(0);
        }

        .material-specs {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .spec-tag {
            background: rgba(255,255,255,0.2);
            padding: 0.3rem 0.8rem;
            color: white;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Industries Section */
        .industries {
            background: var(--carbon-black);
            color: white;
        }

        .industries .section-header h2 {
            color: white;
        }

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

        .industry-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(139, 195, 74, 0.3);
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--pme-green);
            transition: left 0.3s;
            z-index: 0;
        }

        .industry-card:hover::before {
            left: 0;
        }

        .industry-card:hover {
            transform: translateY(-5px);
            border-color: var(--pme-green);
        }

        .industry-card > * {
            position: relative;
            z-index: 1;
        }

        .industry-card:hover h3,
        .industry-card:hover p {
            color: var(--pme-navy);
        }

        .industry-icon {
            font-size: 2.5rem;
            color: var(--pme-green);
            margin-bottom: 1rem;
            transition: color 0.3s;
        }

        .industry-card:hover .industry-icon {
            color: var(--pme-navy);
        }

        .industry-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .industry-card p {
            color: var(--stainless-silver);
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        /* Quality Section */
        .quality-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
            align-items: center;
        }

        .quality-visual {
            position: relative;
            height: 500px;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quality-badge {
            width: 300px;
            height: 300px;
            border: 3px solid var(--pme-green);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(139, 195, 74, 0.4); }
            50% { box-shadow: 0 0 0 30px rgba(139, 195, 74, 0); }
        }

        .quality-badge i {
            font-size: 4rem;
            color: var(--pme-green);
            margin-bottom: 1rem;
        }

        .quality-badge span {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--pme-navy);
        }

        .quality-list {
            list-style: none;
        }

        .quality-list li {
            padding: 1.5rem 0;
            border-bottom: 1px solid #ddd;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .quality-list li:last-child {
            border-bottom: none;
        }

        .quality-icon {
            width: 50px;
            height: 50px;
            background: var(--pme-green);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .quality-content h4 {
            font-size: 1.2rem;
            color: var(--pme-navy);
            margin-bottom: 0.5rem;
        }

        .quality-content p {
            color: var(--steel-gray);
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, var(--pme-navy) 0%, var(--steel-gray) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: rgba(139, 195, 74, 0.1);
            border-radius: 50%;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            color: white;
        }

        .about-content h2 span {
            color: var(--pme-green);
        }

        .about-mission {
            font-size: 1.3rem;
            color: var(--pme-green);
            font-weight: 600;
            margin-bottom: 2rem;
            padding: 1.5rem;
            border-left: 4px solid var(--pme-green);
            background: rgba(255,255,255,0.05);
        }

        .about-text {
            color: rgba(255,255,255,0.9);
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .about-stat {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(139, 195, 74, 0.3);
        }

        .about-stat-number {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--pme-green);
        }

        .about-stat-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .globe-container {
            width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .globe {
            width: 350px;
            height: 350px;
            border: 3px solid var(--pme-green);
            border-radius: 50%;
            position: relative;
            animation: rotate 20s linear infinite;
        }

        .globe-line {
            position: absolute;
            background: var(--pme-green);
            opacity: 0.3;
        }

        .globe-line:nth-child(1) {
            width: 100%;
            height: 2px;
            top: 50%;
            left: 0;
        }

        .globe-line:nth-child(2) {
            width: 2px;
            height: 100%;
            top: 0;
            left: 50%;
        }

        .globe-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            animation: counter-rotate 20s linear infinite;
        }

        @keyframes counter-rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(-360deg); }
        }

        .globe-center h3 {
            font-size: 2rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .globe-center p {
            color: var(--pme-green);
            font-weight: 600;
            letter-spacing: 3px;
        }

        /* Contact Section */
        .contact {
            background: var(--light-gray);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
        }

        .contact-info h3 {
            font-size: 2rem;
            color: var(--pme-navy);
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: white;
            border-left: 4px solid var(--pme-green);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--pme-navy);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            color: var(--pme-navy);
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: var(--steel-gray);
        }

        .contact-form {
            background: white;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--pme-navy);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .file-upload {
            border: 2px dashed var(--steel-gray);
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .file-upload:hover {
            border-color: var(--pme-green);
            background: rgba(139, 195, 74, 0.05);
        }

        .file-upload i {
            font-size: 2rem;
            color: var(--pme-green);
            margin-bottom: 1rem;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--pme-green);
            color: white;
            border: none;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: var(--pme-navy);
        }

        /* Footer */
        footer {
            background: var(--carbon-black);
            color: white;
            padding: 4rem 0 2rem;
        }

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

        .footer-brand .logo-main {
            color: white;
            font-size: 2rem;
            margin-bottom: 1rem;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--pme-green);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            color: var(--pme-green);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-family: 'Rajdhani', sans-serif;
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--pme-green);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

            .hero-stats {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .materials-showcase {
                grid-template-columns: 1fr;
            }

            .about-grid,
            .contact-grid,
            .quality-features {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

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

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

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

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

            .form-row {
                grid-template-columns: 1fr;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
    