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

        :root {
            --primary-color: #0891b2;
            --primary-hover: #0e7490;
            --secondary-color: #06b6d4;
            --tertiary-color: #0284c7;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }

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

        .nav-links a {
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            transition: color 0.3s;
        }

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

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .menu-toggle span {
            width: 24px;
            height: 3px;
            background: #374151;
            transition: all 0.3s;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 1rem 0;
            gap: 0.5rem;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            display: block;
            padding: 0.75rem 1rem;
            color: #374151;
            text-decoration: none;
            border-radius: 0.5rem;
            transition: all 0.3s;
        }

        .mobile-menu a:hover {
            background: rgba(8, 145, 178, 0.1);
            color: var(--primary-color);
        }

        /* Hero Section */
        #home {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #0284c7 100%);
            position: relative;
            padding: 5rem 1rem 2rem;
        }

        #home::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 1280px;
            padding: 0 1rem;
        }

        .hero-content h1 {
            font-size: clamp(2rem, 5vw, 4rem);
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero-content .subtitle {
            font-size: clamp(1.25rem, 3vw, 2rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .hero-content .description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: var(--primary-color);
            padding: 0.75rem 2rem;
            border-radius: 9999px;
            font-size: 1.125rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

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

        /* Section Styles */
        section {
            padding: 5rem 1rem;
        }

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

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: #111827;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-divider {
            width: 5rem;
            height: 4px;
            background: var(--primary-color);
            margin: 0 auto 1.5rem;
        }

        .section-header p {
            font-size: 1.125rem;
            color: #6b7280;
            max-width: 48rem;
            margin: 0 auto;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* About Section */
        #about {
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
			grid-template-columns: repeat(5, 1fr);
        }

        .feature-card {
            text-align: center;
            padding: 2rem 1.5rem;
            border-radius: 1rem;
            background: linear-gradient(135deg, rgba(8, 145, 178, 0.05), rgba(6, 182, 212, 0.1));
            transition: all 0.3s;
        }

        .feature-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .feature-card h3 {
            font-size: 1rem;
            color: #111827;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .feature-card p {
            color: #6b7280;
			display:none;
        }

        .about-image {
            width: 100%;
            height: 24rem;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Products Section */
        #plastic {
            background: linear-gradient(135deg, #f9fafb 0%, rgba(8, 145, 178, 0.05) 100%);
        }

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

        .product-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .product-card:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            position: relative;
            height: 16rem;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
        }

        .product-header {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            display: flex;
            align-items: center;
            color: white;
        }

        .product-icon {
            font-size: 2rem;
            margin-right: 0.75rem;
        }

        .product-header h3 {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .product-content {
            padding: 1.5rem;
        }

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

        .product-list li {
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
            color: #374151;
            transition: color 0.3s;
        }
		.product-list li a {
			color: #374151;
			text-decoration:none;
		}
        .product-list li:hover, .product-list li a:hover {
            color: var(--primary-color);
        }
			
        .product-list li::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary-color);
            border-radius: 50%;
            margin-right: 0.75rem;
        }

        .product-button {
            width: 100%;
            padding: 0.75rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
		    display: none;	
        }

        .product-button:hover {
            background: var(--primary-hover);
        }

        /* Nonwoven Section */
        #nonwoven {
            background: white;
        }

        .benefits-box {
            margin-top: 4rem;
            background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
            border-radius: 1rem;
            padding: 3rem 2rem;
            color: white;
			display: none;
        }

        .benefits-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .benefits-header h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .benefits-header p {
            color: rgba(255, 255, 255, 0.9);
        }

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

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

        .benefit-emoji {
            font-size: 3rem;
            margin-bottom: 0.75rem;
        }

        .benefit-item h4 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .benefit-item p {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Contact Section */
        #contact {
            background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
            color: white;
        }

        #contact .section-header h2 {
            color: white;
        }

        #contact .section-divider {
            background: white;
        }

        #contact .section-header p {
            color: rgba(255, 255, 255, 0.9);
        }

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

        .contact-form {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .contact-form h3 {
            font-size: 1.5rem;
            color: #111827;
            margin-bottom: 1.5rem;
        }

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

        .form-group label {
            display: block;
            color: #374151;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
        }

        .form-group textarea {
            resize: none;
        }

        .submit-button {
            width: 100%;
            padding: 0.75rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-button:hover {
            background: var(--primary-hover);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 1rem;
            padding: 1.5rem;
        }

        .info-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .info-item {
            display: flex;
            margin-bottom: 1rem;
        }

        .info-icon {
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .info-item h4 {
            margin-bottom: 0.25rem;
        }

        .info-item p {
            color: rgba(255, 255, 255, 0.8);
        }

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

        .social-button {
            width: 3rem;
            height: 3rem;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .working-hours {
            color: rgba(255, 255, 255, 0.9);
        }

        .working-hours p {
            margin-bottom: 0.5rem;
        }

        .footer {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
        }

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

            .menu-toggle {
                display: flex;
            }

            section {
                padding: 3rem 1rem;
            }

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

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

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

        /* Loading placeholder for images */
        .image-placeholder {
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* SVG Icons */
        .icon-menu, .icon-x, .icon-chevron {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .icon-factory, .icon-award, .icon-globe, .icon-leaf,
        .icon-sprout, .icon-wheat, .icon-shopping, .icon-mail,
        .icon-phone, .icon-map, .icon-facebook, .icon-message {
            width: 32px;
            height: 32px;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }
		.content-block { margin-bottom: 2rem; }
        .content-list { list-style: none; margin: 1rem 0; }
        .content-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; }
        .content-list li::before { content: "✓"; position: absolute; left: 0; color: var(--primary-color); font-weight: bold; }
        .vision-mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
        .vision-mission-grid .info-card { background: #f8fafc; padding: 2rem; border-radius: 1rem; border-left: 5px solid var(--primary-color); }
        .core-values { background: var(--primary-color); color: white; padding: 3rem 1rem; border-radius: 1rem; text-align: center; }
        .values-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
        .value-item { background: rgba(255,255,255,0.2); padding: 0.5rem 1.5rem; border-radius: 20px; font-weight: 500; }
		.intro-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-start;
            margin-top: 2rem;
        }
        .intro-image {
            flex: 1;
            min-width: 300px;
        }
        .intro-image img {
            width: 100%;
            height: 750px;
			object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .intro-text {
            flex: 1.5;
            min-width: 300px;
        }
        .intro-text p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .intro-list {
            list-style: none;
			padding-left: 30px;
			margin-bottom: 1.5rem;
			text-align: left;
        }
        .intro-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
        }
        .intro-list li::before {
            content: "•";
            color: var(--primary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        @media (max-width: 768px) {
            .intro-wrapper { flex-direction: column; }
        }
		.logo img {height: 50px;}