/* assets/css/style.css */
:root {
    --primary: #2b5e2b;
    --primary-dark: #1e3a1e;
    --primary-light: #4c8b4c;
    --secondary: #d4a017;
    --secondary-dark: #b87c0e;
    --dark: #1a2a1a;
    --light: #f9faf5;
    --gray: #6b7280;
    --white: #ffffff;
    --shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.08);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #e8e6dd; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.3; }
a { text-decoration: none; color: inherit; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: var(--transition);
    padding: 0.8rem 0;
}
.navbar.scrolled { padding: 0.3rem 0; background: rgba(255,255,255,0.98); box-shadow: 0 5px 25px rgba(0,0,0,0.1); }
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 50px; width: auto; transition: var(--transition); }
.navbar.scrolled .logo img { height: 45px; }
.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.logo-text p { font-size: 0.65rem; letter-spacing: 1.5px; color: var(--secondary); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}
.nav-links a:hover:after, .nav-links a.active:after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 1rem; }

/* Language Switcher */
.language-switch { display: flex; gap: 0.5rem; }
.lang-btn {
    background: none; border: 1px solid var(--primary); padding: 5px 10px;
    border-radius: 20px; cursor: pointer; font-weight: 500; transition: var(--transition); font-size: 0.8rem;
}
.lang-btn.active, .lang-btn:hover { background: var(--primary); color: white; }

/* Hero Section */
.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(43,94,43,0.92), rgba(212,160,23,0.88)), url('https://images.unsplash.com/photo-1566385101042-1a0aa0c1268c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
}
.hero-content { animation: fadeInUp 0.8s ease; }
.hero-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 0.5rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }
.hero-content .tagline { font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 2rem; opacity: 0.95; }

/* Buttons */
.btn {
    display: inline-block; padding: 12px 35px; background: var(--secondary); color: white;
    border-radius: 50px; text-decoration: none; font-weight: 600; transition: var(--transition);
    border: none; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn:hover { background: var(--secondary-dark); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.btn-primary { background: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; border: 2px solid var(--secondary); color: var(--secondary); box-shadow: none; }
.btn-outline:hover { background: var(--secondary); color: white; transform: translateY(-3px); }

/* Sections */
.section { padding: 80px 5%; max-width: 1400px; margin: 0 auto; }
.section-title {
    text-align: center; font-size: 2.5rem; margin-bottom: 3rem; position: relative; color: var(--dark);
}
.section-title:after {
    content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 3px; background: var(--secondary); border-radius: 3px;
}
.section-subtitle { text-align: center; color: var(--gray); margin-bottom: 3rem; font-size: 1.1rem; }

/* Cards */
.products-grid, .gallery-grid, .faq-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 1rem;
}
.product-card, .gallery-item {
    background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); cursor: pointer;
}
.product-card:hover, .gallery-item:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.product-img { height: 220px; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-info { padding: 1.5rem; }
.product-info h3 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.3rem; }
.product-specs { font-size: 0.85rem; color: var(--gray); margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 8px; }
.product-badge { background: var(--primary-light); color: white; padding: 4px 10px; border-radius: 20px; font-size: 0.7rem; }

/* About Section */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text p { margin-bottom: 1rem; line-height: 1.8; }
.contact-info {
    background: white; padding: 2rem; border-radius: 20px; box-shadow: var(--shadow-sm);
}
.contact-info p { margin: 1rem 0; display: flex; align-items: center; gap: 1rem; }
.contact-info i { width: 35px; height: 35px; background: var(--primary-light); color: white; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }

/* Social Icons */
.social-icons { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-icon {
    width: 45px; height: 45px; background: var(--primary); color: white; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; transition: var(--transition); text-decoration: none;
}
.social-icon:hover { background: var(--secondary); transform: translateY(-5px); }

/* Footer */
footer { background: var(--dark); color: white; padding: 3rem 5% 1rem; margin-top: 3rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-logo h2 { color: var(--secondary); font-size: 1.5rem; }
.footer-section ul { list-style: none; margin-top: 1rem; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section ul li a { color: #ccc; text-decoration: none; transition: var(--transition); }
.footer-section ul li a:hover { color: var(--secondary); padding-left: 5px; }
.copyright { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* Product Detail Page */
.product-detail { padding-top: 120px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.product-detail-img img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); }
.product-detail-info h1 { color: var(--primary); font-size: 2.2rem; margin-bottom: 1rem; }
.product-detail-info .tagline { font-size: 1.2rem; color: var(--secondary); margin-bottom: 1rem; }
.specs-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background: white; border-radius: 15px; overflow: hidden; }
.specs-table td { padding: 12px; border-bottom: 1px solid #eee; }
.specs-table td:first-child { font-weight: 600; width: 40%; color: var(--primary); background: #f8f8f4; }
.specs-table tr:last-child td { border-bottom: none; }

/* Gallery Page */
.gallery-item { position: relative; overflow: hidden; }
.gallery-item .product-img { height: 280px; }
.gallery-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white; padding: 1.5rem; transform: translateY(100%); transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }

/* Lightbox */
.lightbox {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); z-index: 3000; justify-content: center; align-items: center;
    cursor: pointer;
}
.lightbox-content { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 10px; }
.lightbox-caption {
    position: absolute; bottom: 20px; left: 0; right: 0; text-align: center;
    color: white; font-size: 1rem; background: rgba(0,0,0,0.6); padding: 10px;
}
.lightbox-close {
    position: absolute; top: 20px; right: 30px; font-size: 3rem; color: white;
    cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { color: var(--secondary); }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem;
    color: white; cursor: pointer; padding: 20px; transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--secondary); }

/* FAQ Page */
.faq-item {
    background: white; border-radius: 15px; margin-bottom: 1rem; overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-question {
    padding: 1.2rem 1.5rem; font-size: 1.1rem; font-weight: 600; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; transition: var(--transition);
}
.faq-question:hover { background: #f5f5ef; }
.faq-question i { transition: var(--transition); color: var(--primary); }
.faq-answer {
    padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; border-top: 1px solid transparent;
}
.faq-item.active .faq-answer { padding: 1rem 1.5rem 1.5rem; max-height: 300px; border-top-color: #eee; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Certifications */
.cert-card {
    background: white; border-radius: 20px; padding: 2rem; text-align: center; transition: var(--transition);
}
.cert-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cert-card i { font-size: 3rem; color: var(--primary); margin-bottom: 1rem; }
.cert-badge {
    display: inline-block; background: var(--primary-light); color: white;
    padding: 8px 18px; border-radius: 30px; font-size: 0.85rem; margin: 0.4rem;
}

/* Contact Form */
.inquiry-form { background: white; padding: 2rem; border-radius: 20px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 1.2rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px; border: 1px solid #e0e0e0; border-radius: 12px; font-family: inherit;
    transition: var(--transition); font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(43,94,43,0.1);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeInUp 0.8s ease forwards; }

/* Responsive */
@media (max-width: 992px) {
    .about-content, .product-detail-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
}
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed; top: 70px; left: -100%; width: 80%; height: calc(100vh - 70px);
        background: white; flex-direction: column; padding: 2rem; transition: 0.3s; box-shadow: 2px 0 20px rgba(0,0,0,0.1); z-index: 999;
    }
    .nav-links.active { left: 0; }
    .section { padding: 60px 5%; }
    .hero { min-height: 70vh; }
    .hero-content h1 { font-size: 1.8rem; }
    .tagline { font-size: 1rem !important; }
    .logo img { height: 40px; }
    .logo-text h1 { font-size: 1rem; }
}
@media (max-width: 480px) {
    .products-grid, .gallery-grid { grid-template-columns: 1fr; }
    .btn { padding: 10px 25px; }
}



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Segoe UI', sans-serif;
            background: #fefcf5;
            color: #1a2a1a;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* CSS Variables */
        :root {
            --primary: #2b5e2b;
            --primary-dark: #1e3a1e;
            --primary-light: #4c8b4c;
            --secondary: #d4a017;
            --secondary-dark: #b87c0e;
            --dark: #1a2a1a;
            --light: #f9faf5;
            --gray: #6b7280;
            --white: #ffffff;
            --shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
            --shadow-sm: 0 5px 15px rgba(0,0,0,0.08);
            --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        /* Navigation - Mobile First */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            z-index: 1000;
            transition: var(--transition);
            padding: 0.6rem 0;
        }
        .navbar.scrolled { 
            padding: 0.3rem 0; 
            background: rgba(255,255,255,0.98); 
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .logo img {
            height: 40px;
            width: auto;
            transition: var(--transition);
        }
        .navbar.scrolled .logo img { height: 35px; }
        .logo-text h1 {
            font-size: 1rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .logo-text p {
            font-size: 0.55rem;
            letter-spacing: 1px;
            color: var(--secondary);
        }
        .nav-links {
            display: flex;
            gap: 1rem;
            list-style: none;
            position: fixed;
            top: 65px;
            left: -100%;
            width: 85%;
            height: calc(100vh - 65px);
            background: white;
            flex-direction: column;
            padding: 1.5rem;
            transition: 0.3s ease;
            box-shadow: 2px 0 25px rgba(0,0,0,0.15);
            z-index: 999;
            overflow-y: auto;
        }
        .nav-links.active {
            left: 0;
        }
        .nav-links li {
            margin: 0.5rem 0;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            display: block;
            padding: 0.6rem 0;
            border-bottom: 1px solid #eee;
        }
        .nav-links a:after {
            display: none;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
            padding-left: 8px;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .language-switch {
            display: flex;
            gap: 0.3rem;
        }
        .lang-btn {
            background: none;
            border: 1px solid var(--primary);
            padding: 4px 8px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
            font-size: 0.7rem;
        }
        .lang-btn.active, .lang-btn:hover {
            background: var(--primary);
            color: white;
        }
        .menu-toggle {
            display: block;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* Hero Section - Mobile Responsive */
        .hero {
            min-height: 85vh;
            background: linear-gradient(135deg, rgba(43,94,43,0.92), rgba(212,160,23,0.88)), url('https://images.unsplash.com/photo-1566385101042-1a0aa0c1268c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 0;
            padding: 0 1rem;
        }
        .hero-content {
            animation: fadeInUp 0.8s ease;
            padding: 1rem;
        }
        .hero-content h1 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            word-break: keep-all;
        }
        .hero-content .tagline {
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 10px 25px;
            background: var(--secondary);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            font-size: 0.9rem;
        }
        .btn:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
        }
        .btn-primary {
            background: var(--primary);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
        }

        /* Sections */
        .section {
            padding: 50px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        .section-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            position: relative;
            color: var(--dark);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary);
            border-radius: 3px;
        }
        .section-subtitle {
            text-align: center;
            color: var(--gray);
            margin-bottom: 2rem;
            font-size: 0.95rem;
            padding: 0 1rem;
        }

        /* Product Cards */
        .products-grid, .gallery-grid, .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .product-card, .gallery-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
        }
        .product-card:hover, .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .product-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        .product-card:hover .product-img {
            transform: scale(1.03);
        }
        .product-info {
            padding: 1.2rem;
        }
        .product-info h3 {
            color: var(--primary);
            margin-bottom: 0.4rem;
            font-size: 1.2rem;
        }
        .product-info p {
            font-size: 0.85rem;
            color: var(--gray);
        }
        .product-specs {
            font-size: 0.75rem;
            margin-top: 0.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .product-badge {
            background: var(--primary-light);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        .about-text p {
            margin-bottom: 1rem;
            line-height: 1.7;
            font-size: 0.9rem;
        }
        .contact-info {
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
        }
        .contact-info p {
            margin: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }
        .contact-info i {
            width: 32px;
            height: 32px;
            background: var(--primary-light);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.2rem;
            flex-wrap: wrap;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            text-decoration: none;
            font-size: 1.1rem;
        }
        .social-icon:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 2rem 5% 1rem;
            margin-top: 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-logo h2 {
            color: var(--secondary);
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
            margin-top: 0.8rem;
        }
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.85rem;
        }
        .footer-section ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.75rem;
        }

        /* Product Detail Page */
        .product-detail {
            padding-top: 90px;
        }
        .product-detail-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .product-detail-img img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
            height: auto;
            object-fit: cover;
        }
        .product-detail-info h1 {
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
        }
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            font-size: 0.85rem;
        }
        .specs-table td {
            padding: 10px;
            border-bottom: 1px solid #eee;
        }
        .specs-table td:first-child {
            font-weight: 600;
            width: 45%;
            color: var(--primary);
            background: #f8f8f4;
        }

        /* Gallery Lightbox */
        .gallery-item {
            position: relative;
            overflow: hidden;
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: var(--transition);
        }
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        .gallery-overlay h3 {
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }
        .gallery-overlay p {
            font-size: 0.75rem;
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 3000;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        .lightbox-content {
            max-width: 90%;
            max-height: 80%;
            object-fit: contain;
            border-radius: 10px;
        }
        .lightbox-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            color: white;
            cursor: pointer;
        }

        /* FAQ */
        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            padding: 1rem 1.2rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        .faq-question i {
            transition: var(--transition);
            color: var(--primary);
        }
        .faq-answer {
            padding: 0 1.2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--gray);
        }
        .faq-item.active .faq-answer {
            padding: 0.8rem 1.2rem 1.2rem;
            max-height: 300px;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Certifications */
        .cert-card {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            transition: var(--transition);
        }
        .cert-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 0.8rem;
        }
        .cert-badge {
            display: inline-block;
            background: var(--primary-light);
            color: white;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            margin: 0.3rem;
        }

        /* Contact Form */
        .inquiry-form {
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(25px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Tablet and Desktop */
        @media (min-width: 768px) {
            .menu-toggle {
                display: none;
            }
            .nav-links {
                position: static;
                width: auto;
                height: auto;
                background: transparent;
                flex-direction: row;
                padding: 0;
                box-shadow: none;
                gap: 1.8rem;
            }
            .nav-links li {
                margin: 0;
            }
            .nav-links a {
                padding: 0;
                border-bottom: none;
            }
            .nav-links a:after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--secondary);
                transition: var(--transition);
            }
            .nav-links a {
                position: relative;
                padding: 0.5rem 0;
            }
            .nav-links a:hover:after, .nav-links a.active:after {
                width: 100%;
            }
            .nav-links a:hover, .nav-links a.active {
                color: var(--primary);
                padding-left: 0;
            }
            .logo-text h1 {
                font-size: 1.2rem;
            }
            .logo-text p {
                font-size: 0.65rem;
            }
            .logo img {
                height: 45px;
            }
            .hero-content h1 {
                font-size: 2.8rem;
            }
            .hero-content .tagline {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .products-grid, .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-content {
                grid-template-columns: 1fr 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            .product-detail-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1024px) {
            .products-grid, .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-content {
                grid-template-columns: repeat(4, 1fr);
            }
            .hero-content h1 {
                font-size: 3.5rem;
            }
            .section {
                padding: 80px 5%;
            }
        }

        @media (min-width: 1200px) {
            .products-grid, .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .text-center {
            text-align: center;
        }
        .mt-4 {
            margin-top: 1.5rem;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .bg-white {
            background: white;
        }
        .rounded-2xl {
            border-radius: 20px;
        }
    
    
    
    

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Segoe UI', sans-serif;
            background: #fefcf5;
            color: #1a2a1a;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* CSS Variables */
        :root {
            --primary: #2b5e2b;
            --primary-dark: #1e3a1e;
            --primary-light: #4c8b4c;
            --secondary: #d4a017;
            --secondary-dark: #b87c0e;
            --dark: #1a2a1a;
            --light: #f9faf5;
            --gray: #6b7280;
            --white: #ffffff;
            --shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
            --shadow-sm: 0 5px 15px rgba(0,0,0,0.08);
            --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        /* Navigation - Mobile First */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            z-index: 1000;
            transition: var(--transition);
            padding: 0.6rem 0;
        }
        .navbar.scrolled { 
            padding: 0.3rem 0; 
            background: rgba(255,255,255,0.98); 
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .logo img {
            height: 40px;
            width: auto;
            transition: var(--transition);
        }
        .navbar.scrolled .logo img { height: 35px; }
        .logo-text h1 {
            font-size: 1rem;
            font-weight: 800;
            background: linear-gradient(135deg, #002048, #002048);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .logo-text p {
            font-size: 0.55rem;
            letter-spacing: 1px;
            color: var(--secondary);
        }
        .nav-links {
            display: flex;
            gap: 1rem;
            list-style: none;
            position: fixed;
            top: 65px;
            left: -100%;
            width: 85%;
            height: calc(100vh - 65px);
            background: white;
            flex-direction: column;
            padding: 1.5rem;
            transition: 0.3s ease;
            box-shadow: 2px 0 25px rgba(0,0,0,0.15);
            z-index: 999;
            overflow-y: auto;
        }
        .nav-links.active {
            left: 0;
        }
        .nav-links li {
            margin: 0.5rem 0;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            display: block;
            padding: 0.6rem 0;
            border-bottom: 1px solid #eee;
        }
        /* Remove the after pseudo-element in mobile */
        .nav-links a:after {
            display: none;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
            padding-left: 8px;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .menu-toggle {
            display: block;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* Hero Slider Section */
        .hero-slider {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            margin-top: 0;
        }
        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        .slider-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease, visibility 0.8s ease;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        .slider-slide.active {
            opacity: 1;
            visibility: visible;
        }
        .slider-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(135deg, rgba(43,94,43,0.85), rgba(212,160,23,0.8));*/
        }
        .slider-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            width: 90%;
            max-width: 800px;
            padding: 1rem;
            animation: fadeInUp 0.8s ease;
        }
        .slider-content h1 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .slider-content .tagline {
            font-size: 1rem;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }
        .slider-btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--secondary);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            font-size: 0.9rem;
        }
        .slider-btn:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
        }

        /* Slider Navigation Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
            color: white;
            font-size: 1.3rem;
        }
        .slider-arrow:hover {
            background: var(--secondary);
            transform: translateY(-50%) scale(1.1);
        }
        .slider-arrow.prev {
            left: 20px;
        }
        .slider-arrow.next {
            right: 20px;
        }

        /* Slider Dots */
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: var(--transition);
        }
        .dot.active {
            background: var(--secondary);
            width: 30px;
            border-radius: 10px;
        }
        .dot:hover {
            background: var(--secondary);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 10px 25px;
            background: var(--secondary);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            font-size: 0.9rem;
        }
        .btn:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
        }
        .btn-primary {
            background: var(--primary);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
        }

        /* Sections */
        .section {
            padding: 50px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        .section-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            position: relative;
            color: var(--dark);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary);
            border-radius: 3px;
        }

        /* Product Cards */
        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .product-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        .product-card:hover .product-img {
            transform: scale(1.03);
        }
        .product-info {
            padding: 1.2rem;
        }
        .product-info h3 {
            color: var(--primary);
            margin-bottom: 0.4rem;
            font-size: 1.2rem;
        }
        .product-info p {
            font-size: 0.85rem;
            color: var(--gray);
        }
        .product-specs {
            font-size: 0.75rem;
            margin-top: 0.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .product-badge {
            background: var(--primary-light);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        .contact-info {
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
        }
        .contact-info p {
            margin: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }
        .contact-info i {
            width: 32px;
            height: 32px;
            background: var(--primary-light);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.2rem;
            flex-wrap: wrap;
        }
        .social-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            text-decoration: none;
            font-size: 1.1rem;
        }
        .social-icon:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 2rem 5% 1rem;
            margin-top: 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-logo h2 {
            color: var(--secondary);
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
            margin-top: 0.8rem;
        }
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.85rem;
        }
        .footer-section ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.75rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Tablet and Desktop - NO ARROWS ON NAV LINKS */
        @media (min-width: 768px) {
            .menu-toggle {
                display: none;
            }
            .nav-links {
                position: static;
                width: auto;
                height: auto;
                background: transparent;
                flex-direction: row;
                padding: 0;
                box-shadow: none;
                gap: 1.8rem;
            }
            .nav-links li {
                margin: 0;
            }
            .nav-links a {
                padding: 0.5rem 0;
                border-bottom: none;
                position: relative;
            }
            /* IMPORTANT: No arrow/underline on nav links in desktop view */
            .nav-links a:after {
                content: none !important;
                display: none !important;
            }
            .nav-links a:hover, .nav-links a.active {
                color: var(--primary);
                padding-left: 0;
                background: transparent;
            }
            /* Optional subtle hover effect without arrow */
            .nav-links a:hover {
                color: var(--secondary);
            }
            .logo-text h1 {
                font-size: 1.2rem;
            }
            .logo-text p {
                font-size: 0.65rem;
            }
            .logo img {
                height: 100px;
            }
            .slider-content h1 {
                font-size: 3rem;
            }
            .slider-content .tagline {
                font-size: 1.3rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-content {
                grid-template-columns: 1fr 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .slider-content h1 {
                font-size: 3.8rem;
            }
            .section {
                padding: 80px 5%;
            }
        }

        @media (min-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .text-center {
            text-align: center;
        }
        .mt-4 {
            margin-top: 1.5rem;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        
        
        .quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background-color: #f8fafc;
    color: #1e293b;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    width: 60px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    outline: none;
}

/* Remove spinner buttons from number input */
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input:focus {
    background-color: #fef9c3;
    outline: 1px solid #eab308;
}

/* Disabled state */
.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-btn:disabled:hover {
    background-color: #f8fafc;
    transform: none;
}

/* Optional: Add focus outline for accessibility */
.qty-btn:focus-visible,
.qty-input:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}


.floating-icons {
    position: fixed;
    bottom: 150px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1
}  

.iconz {
    font-size: 2.5rem;
    color: #fff;
    background-color: #25d366;
    padding: 5px;
    border-radius: 50%;
    transition: transform .3s,box-shadow .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px #0000004d;
    position: relative
}

.whatsapp {
    background-color: #25d366;
    animation: blink 1s infinite
}

.youtube {
    background-color: red
}

.phone {
    background-color: #34b7f1
}

.iconz:hover {
    transform: scale(1.1) rotateY(20deg) rotateX(10deg);
    box-shadow: 0 8px 16px #0000004d
}

.tooltip {
    position: absolute;
    bottom: 110%;
    left: -90%;
    transform: translate(-50%);
    background-color: #000000bf;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s,transform .3s,visibility .3s;
    font-size: .875rem
}

.phone:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%) translateY(-10px)
}
