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

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

    h1, h2, h3, h4 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
    }

    a {
        text-decoration: none;
    }

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

    /* Header Styles */
    header {
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        max-width: 1400px;
        margin: 0 auto;
    }


    /* Desktop Navigation */
    .nav-menu {
        display: flex;
        align-items: center;
        list-style: none;
        gap: 8px;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 18px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        border-radius: 50px;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-link i {
        font-size: 16px;
        color: #D4A853;
        transition: transform 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(46, 92, 62, 0.05);
        color: #2E5C3E;
    }

    .nav-link:hover i {
        transform: translateY(-2px);
    }

    .nav-link.active {
        background: #2E5C3E;
        color: white;
    }

    .nav-link.active i {
        color: #D4A853;
    }


        /* Dropdown Menu */
    .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: 280px;
        background: white;
        border-radius: 16px;
        padding: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
        z-index: 100;
        border: 1px solid rgba(46, 92, 62, 0.1);
    }

    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(10px);
    }

    .dropdown-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .dropdown-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 12px;
        background: #f8f9fa;
        border-radius: 12px;
        text-decoration: none;
        color: #333;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .dropdown-item:hover {
        background: white;
        border-color: #D4A853;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .dropdown-item i {
        font-size: 28px;
        color: #2E5C3E;
        margin-bottom: 8px;
    }

    .dropdown-item span {
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .dropdown-item small {
        font-size: 11px;
        color: #999;
    }


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

    .logo-icon {
        width: 50px;
        height: 50px;
        background: #2E5C3E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
    }

    .logo-icon i {
        font-size: 30px;
        color: #D4A853;
    }

    .logo-text {
        font-size: 20px;
        font-weight: 700;
        color: #2E5C3E;
        line-height: 1.1;
    }

    .logo-text span {
        font-size: 14px;
        font-weight: 400;
        color: #666;
        display: block;
    }

        /* .quote-btn {
        background: #D4A853;
        color: white !important;
        padding: 12px 25px;
        border-radius: 5px;
        font-weight: 600;
        transition: background 0.3s;
    } */

    /* .quote-btn:hover {
        background: #b38d3f;
        color: white;
    } */


    /* Mega Menu */
    .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        width: 800px;
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 100;
        border: 1px solid rgba(46, 92, 62, 0.1);
    }


    .nav-item:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(10px);
    }

    .mega-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }

    .mega-featured {
        background: linear-gradient(135deg, #2E5C3E 0%, #1A3A2A 100%);
        border-radius: 16px;
        padding: 25px;
        color: white;
    }

    .mega-featured h4 {
        color: #D4A853;
        margin-bottom: 15px;
        font-size: 18px;
    }

    .mega-featured p {
        font-size: 14px;
        margin-bottom: 20px;
        opacity: 0.9;
    }

    .mega-featured .btn {
        display: inline-block;
        padding: 8px 20px;
        background: #D4A853;
        color: #2E5C3E;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 600;
        font-size: 13px;
        transition: all 0.3s;
    }

    .mega-featured .btn:hover {
        background: white;
        transform: translateY(-2px);
    }

    .mega-links h4 {
        color: #2E5C3E;
        margin-bottom: 15px;
        font-size: 16px;
        border-bottom: 2px solid #D4A853;
        padding-bottom: 8px;
        display: inline-block;
    }

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

    .mega-links li {
        margin-bottom: 12px;
    }

    .mega-links a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        /* display: flex; */
        display: block;
        width: 150%;
        align-items: center;
        gap: 8px;
        transition: all 0.3s;
    }

    /* .mega-links a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s;

        width: 100%;
        padding: 10px 15px;
        border-radius: 8px;
    } */

    /* .mega-links a:hover {
        color: #2E5C3E;
        transform: translateX(5px);
    } */

    .mega-links a:hover {
        color: #2E5C3E;
        transform: translateX(5px);
        background: rgba(46, 92, 62, 0.05);
    }

    .mega-links a i {
        color: #D4A853;
        font-size: 12px;
    }


        /* Quote Button */
    .quote-btn {
        background: linear-gradient(135deg, #D4A853 0%, #b38d3f 100%);
        color: white !important;
        padding: 12px 28px !important;
        border-radius: 50px;
        font-weight: 600;
        box-shadow: 0 8px 15px rgba(212, 168, 83, 0.3);
        transition: all 0.3s ease !important;
    }

    .quote-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(212, 168, 83, 0.4);
    }


    
    /* Mobile Navigation */
    .mobile-nav {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        z-index: 999;
        padding: 30px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .mobile-nav.active {
        transform: translateX(0);
    }

    .mobile-nav-list {
        list-style: none;
    }

    .mobile-nav-item {
        margin-bottom: 15px;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 12px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }

    .mobile-nav-link i {
        color: #D4A853;
        transition: transform 0.3s;
    }

    .mobile-nav-link.active {
        background: #2E5C3E;
        color: white;
    }

    .mobile-nav-link.active i {
        color: white;
    }

    .mobile-dropdown {
        display: none;
        padding: 15px 0 0 20px;
    }

    .mobile-dropdown.active {
        display: block;
    }

    .mobile-dropdown-item {
        display: block;
        padding: 12px 15px;
        color: #666;
        text-decoration: none;
        font-size: 14px;
        border-left: 2px solid #D4A853;
        margin-bottom: 8px;
        transition: all 0.3s;
    }

    .mobile-dropdown-item:hover {
        background: #f8f9fa;
        color: #2E5C3E;
    }


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


        /* Responsive Design */
    /* @media (max-width: 1200px) {
        .nav-menu {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .mobile-nav {
            display: block;
        }

        .quote-btn {
            margin-left: auto;
            margin-right: 15px;
        }
    } */


        @media (max-width: 768px) {
        .nav-content {
            height: 60px;
        }

        .logo-text {
            font-size: 18px;
            line-height: 1.2;
        }

        .logo-text span {
            font-size: 13px;
        }

        .logo-main {
            font-size: 14px;
        }

        .logo-tagline {
            display: none;
        }

        .logo-icon {
            width: 30px;
            height: 30px;
        }

        .logo-icon i {
            font-size: 20px;
        }

        .quote-btn {
            padding: 6px 14px !important;
            font-size: 12px;
        }

        .mobile-nav {
            top: 70px;
        }
    }
    

         /* Footer */
    footer {
        background: #1A3A2A;
        color: white;
        padding: 60px 0 20px;
    }

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

    .footer-main {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-logo-icon {
        width: 40px;
        height: 40px;
        background: #D4A853;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
    }

    .footer-logo-icon i {
        font-size: 24px;
        color: #1A3A2A;
    }

    .footer-logo-text {
        font-size: 20px;
        font-weight: 700;
        color: white;
    }

    .footer-tagline {
        color: #aaa;
        margin-bottom: 20px;
        font-style: italic;
    }

    .footer-contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        color: #ddd;
    }

    .footer-contact-item i {
        width: 20px;
        color: #D4A853;
    }

    .footer-contact-item a {
        color: #ddd;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-contact-item a:hover {
        color: #D4A853;
    }

    .footer-social {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: background 0.3s;
    }

    .footer-social a:hover {
        background: #D4A853;
    }

    .footer-column h4 {
        color: white;
        margin-bottom: 20px;
        font-size: 18px;
    }

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

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

    .footer-links a {
        color: #ddd;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: #D4A853;
        padding-left: 5px;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input {
        padding: 12px;
        border: none;
        border-radius: 5px;
        background: rgba(255,255,255,0.1);
        color: white;
    }

    .newsletter-input::placeholder {
        color: #aaa;
    }

    .newsletter-btn {
        padding: 12px;
        background: #D4A853;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
        transition: background 0.3s;
    }

    .newsletter-btn:hover {
        background: #b38d3f;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-bottom p {
        color: #aaa;
        font-size: 14px;
    }

    .footer-bottom-links {
        display: flex;
        gap: 20px;
    }

    .footer-bottom-links a {
        color: #aaa;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
    }

    .footer-bottom-links a:hover {
        color: #D4A853;
    }


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


    
     /* Responsive Design */
    @media (max-width: 1200px) {
        .footer-main {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 992px) {
        .process-timeline::before {
            left: 30px;
        }
        
        .process-number {
            left: 30px;
        }
        
        .process-content {
            width: calc(100% - 80px);
            margin-left: 80px !important;
        }
        
        .process-item:nth-child(odd) .process-content::before,
        .process-item:nth-child(even) .process-content::before {
            left: -15px;
            right: auto;
            border-right: 15px solid white;
            border-left: none;
        }
        
        .lab-container,
        .sgs-container,
        .safety-container {
            grid-template-columns: 1fr;
        }
        
        .cert-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }



        @media (max-width: 768px) {
        .process-details {
            grid-template-columns: 1fr;
        }
        
        .cert-grid {
            grid-template-columns: 1fr;
        }
        
        .safety-features {
            grid-template-columns: 1fr;
        }
        
        .footer-main {
            grid-template-columns: 1fr;
        }
      
        .section-header h2,
        .lab-content h2,
        .sgs-content h2,
        .safety-content h2 {
            font-size: 32px;
        }
    }





    








            /* Enhanced Navigation Bar Styles */
        .navbar {
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            backdrop-filter: blur(10px);
            background: rgba(255,255,255,0.98);
        }

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

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
            transition: height 0.3s ease;
        }

        .navbar.scrolled .nav-content {
            height: 70px;
        }


        /* Quote Button */
         .quote-btn {
            background: linear-gradient(135deg, #D4A853 0%, #b38d3f 100%);
            color: white !important;
            padding: 12px 28px !important;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 8px 15px rgba(212, 168, 83, 0.3);
            transition: all 0.3s ease !important;
        }

        .quote-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(212, 168, 83, 0.4);
        }

        .quote-btn i {
            color: white !important;
        }

        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            width: 45px;
            height: 45px;
            background: #f8f9fa;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }

        .mobile-menu-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: #2E5C3E;
            margin: 5px auto;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 90px;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            z-index: 999;
            padding: 30px;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .mobile-nav.active {
            transform: translateX(0);
        }

        .mobile-nav-list {
            list-style: none;
        }

        .mobile-nav-item {
            margin-bottom: 15px;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 12px;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .mobile-nav-link i {
            color: #D4A853;
            transition: transform 0.3s;
        }

        .mobile-nav-link.active {
            background: #2E5C3E;
            color: white;
        }

        .mobile-nav-link.active i {
            color: white;
        }

        .mobile-dropdown {
            display: none;
            padding: 15px 0 0 20px;
        }

        .mobile-dropdown.active {
            display: block;
        }

        .mobile-dropdown-item {
            display: block;
            padding: 12px 15px;
            color: #666;
            text-decoration: none;
            font-size: 14px;
            border-left: 2px solid #D4A853;
            margin-bottom: 8px;
            transition: all 0.3s;
        }

        .mobile-dropdown-item:hover {
            background: #f8f9fa;
            color: #2E5C3E;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-nav {
                display: block;
            }

            .quote-btn {
                margin-left: auto;
                margin-right: 15px;
            }
        }

        @media (max-width: 768px) {
            .nav-content {
                height: 70px;
            }

            .logo-main {
                font-size: 18px;
            }

            .logo-tagline {
                display: none;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
            }

            .logo-icon i {
                font-size: 22px;
            }

            .quote-btn {
                padding: 8px 16px !important;
                font-size: 13px;
            }
        }

        /* Main Content Area (for demo) */



