   /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'JCBEuro Roman Regular', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
        
        /* Font Classes */
        .font-jcb-bold-condensed {
            font-family: 'JCBEuro BoldCondensed Regular', sans-serif;
        }
        .font-jcb-bold {
            font-family: 'JCBEuro Bold Regular', sans-serif;
        }
        .font-jcb-roman {
            font-family: 'JCBEuro Roman Regular', sans-serif;
        }
        
        /* Layout Utilities */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        .grid {
            display: grid;
            gap: 24px;
        }
        
        .grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .flex {
            display: flex;
        }
        
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .flex-wrap {
            flex-wrap: wrap;
        }
        
        .items-center {
            align-items: center;
        }
        
        .justify-center {
            justify-content: center;
        }
        
        .text-center {
            text-align: center;
        }
        
        .relative {
            position: relative;
        }
        
        .absolute {
            position: absolute;
        }
        
        /* Spacing */
        .py-16 {
            padding-top: 64px;
            padding-bottom: 64px;
        }
        
        .py-24 {
            padding-top: 96px;
            padding-bottom: 96px;
        }
        
        .px-6 {
            padding-left: 24px;
            padding-right: 24px;
        }
        
        .p-4 {
            padding: 16px;
        }
        
        .p-6 {
            padding: 24px;
        }
        
        .p-8 {
            padding: 32px;
        }
        
        .mb-2 {
            margin-bottom: 8px;
        }
        
        .mb-4 {
            margin-bottom: 16px;
        }
        
        .mb-6 {
            margin-bottom: 24px;
        }
        
        .mb-8 {
            margin-bottom: 32px;
        }
        
        .mb-12 {
            margin-bottom: 48px;
        }
        
        .mb-16 {
            margin-bottom: 64px;
        }
        
        .mr-2 {
            margin-right: 8px;
        }
        
        .mt-6 {
            margin-top: 24px;
        }
        
        /* Colors */
        .bg-white {
            background-color: #ffffff;
        }
        
        .bg-gray-50 {
            background-color: #f9fafb;
        }
        
        .bg-gray-100 {
            background-color: #f3f4f6;
        }
        
        .bg-gray-300 {
            background-color: #d1d5db;
        }
        
        .bg-gray-700 {
            background-color: #374151;
        }
        
        .bg-gray-900 {
            background-color: #111827;
        }
        
        .bg-black {
            background-color: #000000;
        }
        
        .bg-glow-yellow {
            background-color: #FAA747;
        }
        
        .bg-orange-500 {
            background-color: #f97316;
        }
        
        .bg-green-500 {
            background-color: #10b981;
        }
        
        .text-white {
            color: #ffffff;
        }
        
        .text-black {
            color: #000000;
        }
        
        .text-gray-300 {
            color: #d1d5db;
        }
        
        .text-gray-700 {
            color: #374151;
        }
        
        .text-gray-800 {
            color: #1f2937;
        }
        
        .text-glow-yellow {
            color: #FAA747;
        }
        
        .text-green-500 {
            color: #10b981;
        }
        
        /* Typography */
        .text-sm {
            font-size: 14px;
        }
        
        .text-lg {
            font-size: 18px;
        }
        
        .text-xl {
            font-size: 20px;
        }
        
        .text-2xl {
            font-size: 24px;
        }
        
        .text-3xl {
            font-size: 30px;
        }
        
        .text-4xl {
            font-size: 36px;
        }
        
        .text-5xl {
            font-size: 48px;
        }
        
        .text-6xl {
            font-size: 60px;
        }
        
        .text-8xl {
            font-size: 96px;
        }
        
        .leading-relaxed {
            line-height: 1.625;
        }
        
        /* Border and Radius */
        .rounded-lg {
            border-radius: 8px;
        }
        
        .rounded-full {
            border-radius: 50%;
        }
        
        /* Shadow */
        .shadow-lg {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        .shadow-xl {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        /* Specific Styles */
        .overflow-hidden {
            overflow: hidden;
        }
        
        .z-10 {
            z-index: 10;
        }
        
        .inset-0 {
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }
        
        .opacity-10 {
            opacity: 0.1;
        }
        
        .space-y-6 > * + * {
            margin-top: 24px;
        }
        
        .space-y-2 > * + * {
            margin-top: 8px;
        }
        
        .gap-4 {
            gap: 16px;
        }
        
        .gap-6 {
            gap: 24px;
        }
        
        .gap-8 {
            gap: 32px;
        }
        
        .gap-12 {
            gap: 48px;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #000000 0%, #111827 50%, #000000 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
            background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23FAA747" fill-opacity="0.4"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
            background-size: 60px 60px;
        }
        
        .hero-title {
            font-size: 48px;
            font-weight: bold;
            text-transform: uppercase;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-size: 20px;
            max-width: 768px;
            margin: 0 auto 32px auto;
        }
        
        .feature-pill {
            background-color: #FAA747;
            color: #000000;
            padding: 8px 24px;
            border-radius: 9999px;
            font-size: 14px;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .feature-pill.white {
            background-color: #ffffff;
            color: #000000;
        }

        /* New Hero Section Base Styles */
        .bg-black {
            background-color: #000;
        }

        .text-white {
            color: #ffffff;
        }

        .py-16 {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .relative {
            position: relative;
        }

        .overflow-hidden {
            overflow: hidden;
        }

        .absolute {
            position: absolute;
        }

        .inset-0 {
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }

        /* Image and Overlay Styles */
        .w-full {
            width: 100%;
        }

        .h-full {
            height: 100%;
        }

        .object-cover {
            object-fit: cover;
        }

        .opacity-30 {
            opacity: 0.3;
        }

        .opacity-10 {
            opacity: 0.1;
        }

        /* Gradient Overlay */
        .bg-gradient-to-t {
            background-image: linear-gradient(to top, var(--tw-gradient-stops));
        }

        .from-black {
            --tw-gradient-from: #000000;
            --tw-gradient-to: rgba(0, 0, 0, 0);
            --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
        }

        .via-black\/70 {
            --tw-gradient-to: rgba(0, 0, 0, 0);
            --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.7), var(--tw-gradient-to);
        }

        .to-black\/50 {
            --tw-gradient-to: rgba(0, 0, 0, 0.5);
        }

        /* Container and Layout */
        .max-w-7xl {
            max-width: 80rem;
        }

        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        .z-10 {
            z-index: 10;
        }

        /* Badge and Content Styling */
        .items-center {
            align-items: center;
        }

        .gap-2 {
            gap: 0.5rem;
        }

        .mb-4 {
            margin-bottom: 1rem;
        }

        .mb-6 {
            margin-bottom: 1.5rem;
        }

        .mb-8 {
            margin-bottom: 2rem;
        }

        .mt-2 {
            margin-top: 0.5rem;
        }

        /* Badge Styles */
        .bg-badge-hot {
            background-color: #dc2626;
        }

        .text-xs {
            font-size: 0.75rem;
            line-height: 1rem;
        }

        .px-3 {
            padding-left: 0.75rem;
            padding-right: 0.75rem;
        }

        .py-1 {
            padding-top: 0.25rem;
            padding-bottom: 0.25rem;
        }

        .rounded-full {
            border-radius: 9999px;
        }

        .text-sm {
            font-size: 0.875rem;
            line-height: 1.25rem;
        }

        /* Typography */
        .text-5xl {
            font-size: 3rem;
            line-height: 1;
        }

        .text-3xl {
            font-size: 1.875rem;
            line-height: 2.25rem;
        }

        .text-lg {
            font-size: 1.125rem;
            line-height: 1.75rem;
        }

        .leading-relaxed {
            line-height: 1.625;
        }

        /* Glow Yellow Color */
        .text-glow-yellow {
            color: #FAA747;
        }

        .bg-glow-yellow {
            background-color: #FAA747;
        }

        /* Layout Utilities */
        .tracking-wide {
            letter-spacing: 0.025em;
        }

        .block {
            display: block;
        }

        .inline-block {
            display: inline-block;
        }

        .max-w-4xl {
            max-width: 56rem;
        }

        .flex-wrap {
            flex-wrap: wrap;
        }

        /* Button Styles */
        .px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .py-3 {
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }

        .text-black {
            color: #000000;
        }

        .bg-white {
            background-color: #ffffff;
        }

        .bg-transparent {
            background-color: transparent;
        }

        .border {
            border-width: 1px;
        }

        .border-white {
            border-color: #ffffff;
        }

        /* Typography Utilities */
        .font-normal {
            font-weight: 400;
        }

        .no-underline {
            text-decoration: none;
        }

        /* Hover and Transition Effects */
        .hover\:bg-white:hover {
            background-color: #ffffff;
        }

        .hover\:text-black:hover {
            color: #000000;
        }

        .hover\:bg-transparent:hover {
            background-color: transparent;
        }

        .hover\:text-white:hover {
            color: #ffffff;
        }

        .transition-all {
            transition-property: all;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 150ms;
        }

        .transform {
            transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        }

        .hover\:scale-105:hover {
            --tw-scale-x: 1.05;
            --tw-scale-y: 1.05;
            transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        }
        
        /* Timeline styles */
        .timeline-item {
            position: relative;
            padding-left: 40px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #FAA747;
        }
        
        .timeline-dot {
            position: absolute;
            left: 0;
            top: 10px;
            width: 18px;
            height: 18px;
            background: #FAA747;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 0 3px #FAA747;
        }
        
        .milestone-gradient {
            background: linear-gradient(135deg, #FAA747 0%, #f97316 100%);
        }
        
        /* Value Cards */
        .value-card {
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            background-color: #f9fafb;
            padding: 24px;
            border-radius: 8px;
            text-align: center;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            border-bottom-color: #FAA747;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .value-card i {
            font-size: 30px;
            color: #FAA747;
            margin-bottom: 16px;
        }
        
        .value-card h4 {
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .value-card p {
            font-size: 14px;
            color: #374151;
        }
        
        /* Stats Counter */
        .stat-counter {
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .stat-counter:hover {
            transform: scale(1.05);
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: bold;
            color: #FAA747;
            margin-bottom: 8px;
            display: block;
        }
        
        /* Section Headers */
        .section-header {
            font-size: 36px;
            font-weight: bold;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 48px;
            position: relative;
        }
        
        .section-header::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #FAA747;
            margin: 16px auto 0;
            transition: width 0.3s ease;
        }
        
        .section-header:hover::after {
            width: 100px;
        }
        
        /* QHSE Icons */
        .qhse-icon {
            background-color: #FAA747;
            width: 96px;
            height: 96px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px auto;
            transition: all 0.3s ease;
        }
        
        .qhse-icon:hover {
            transform: scale(1.2) rotate(5deg);
        }
        
        .qhse-icon i {
            font-size: 32px;
            color: #000000;
        }
        
        .qhse-section {
            background: linear-gradient(135deg, #111827 0%, #000000 100%);
            color: #ffffff;
        }
        
        /* Why Choose Cards */
        .why-choose-card {
            background-color: #ffffff;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .why-choose-card i {
            font-size: 30px;
            color: #FAA747;
            margin-bottom: 16px;
        }
        
        .why-choose-card h3 {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 12px;
        }
        
        .why-choose-card p {
            color: #374151;
        }
        
        /* Expertise Cards */
        .expertise-card {
            background-color: #ffffff;
            padding: 32px;
            border-radius: 8px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .expertise-card i {
            font-size: 32px;
            color: #FAA747;
            margin-bottom: 16px;
        }
        
        .expertise-card h3 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 16px;
        }
        
        .expertise-card p {
            color: #374151;
            margin-bottom: 16px;
        }
        
        .expertise-card ul {
            list-style: none;
            padding: 0;
        }
        
        .expertise-card li {
            color: #374151;
            margin-bottom: 8px;
        }
        
        .innovation-section {
            background: linear-gradient(90deg, #000000 0%, #111827 100%);
            color: #ffffff;
            padding: 32px;
            border-radius: 8px;
        }
        
        .innovation-section h3 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 16px;
            color: #FAA747;
        }
        
        .innovation-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 24px;
        }
        
        .innovation-item {
            text-align: center;
        }
        
        .innovation-item i {
            font-size: 30px;
            color: #FAA747;
            margin-bottom: 8px;
        }
        
        /* Vision Cards */
        .vision-card {
            padding: 32px;
            border-radius: 8px;
        }
        
        .vision-card.yellow {
            background-color: #FAA747;
        }
        
        .vision-card.black {
            background-color: #000000;
            color: #ffffff;
        }
        
        .vision-card h3 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 16px;
        }
        
        .vision-card.black h3 {
            color: #FAA747;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .innovation-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            
            .px-6 {
                padding-left: 16px;
                padding-right: 16px;
            }
            
            .py-16 {
                padding-top: 48px;
                padding-bottom: 48px;
            }
            
            .py-24 {
                padding-top: 64px;
                padding-bottom: 64px;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .text-6xl {
                font-size: 48px;
            }
            
            .text-8xl {
                font-size: 64px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .section-header {
                font-size: 28px;
            }
            
            .grid-2,
            .grid-3,
            .grid-4 {
                grid-template-columns: 1fr;
            }
            
            .innovation-grid {
                grid-template-columns: 1fr;
            }
            
            .flex-wrap {
                flex-direction: column;
                align-items: center;
            }
            
            .feature-pill {
                margin-bottom: 8px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }
            
            .text-5xl {
                font-size: 36px;
            }
            
            .text-6xl {
                font-size: 40px;
            }
            
            .qhse-icon {
                width: 80px;
                height: 80px;
            }
            
            .qhse-icon i {
                font-size: 28px;
            }
        }            }
        }

        /* Additional Responsive Styles for New Hero Section */
        @media (max-width: 768px) {
            .text-5xl {
                font-size: 2.25rem;
                line-height: 2.5rem;
            }
            
            .text-3xl {
                font-size: 1.5rem;
                line-height: 2rem;
            }
            
            .py-16 {
                padding-top: 2rem;
                padding-bottom: 2rem;
            }
            
            .px-4 {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .gap-4 {
                gap: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .text-5xl {
                font-size: 1.875rem;
                line-height: 2.25rem;
            }
            
            .text-3xl {
                font-size: 1.25rem;
                line-height: 1.75rem;
            }
            
            .px-6 {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .py-3 {
                padding-top: 0.5rem;
                padding-bottom: 0.5rem;
            }
        }

        /* Link and button reset */
        a {
            text-decoration: none;
        }
        
        a.no-underline {
            text-decoration: none !important;
        }
        
        /* Specific button styles */
        a.bg-transparent {
            background-color: transparent !important;
        }
        
        a.bg-transparent:hover.hover\:bg-white {
            background-color: #ffffff !important;
        }
        
        /* Contact button specific */
        .contact-btn {
            background-color: transparent !important;
            color: #ffffff !important;
            border: 1px solid #ffffff !important;
            text-decoration: none !important;
        }
        
        .contact-btn:hover {
            background-color: #ffffff !important;
            color: #000000 !important;
            border: 1px solid #ffffff !important;
        }
        
        /* CSS Variables for gradient stops */
        :root {
            --tw-gradient-from: #000000;
            --tw-gradient-to: rgba(0, 0, 0, 0);
            --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            --tw-translate-x: 0;
            --tw-translate-y: 0;
            --tw-rotate: 0;
            --tw-skew-x: 0;
            --tw-skew-y: 0;
            --tw-scale-x: 1;
            --tw-scale-y: 1;
        }
EOF < /dev/null
