Compare commits

..

1 Commits

Author SHA1 Message Date
Flatlogic Bot
76c24f5fe9 Tps_Petroleums_LLP 2025-12-17 05:38:04 +00:00
3 changed files with 622 additions and 141 deletions

211
assets/css/custom.css Normal file
View File

@ -0,0 +1,211 @@
/* TPS Petroleums LLP Custom Styles */
:root {
--tps-green: #2E7D32;
--tps-dark-blue: #1A237E;
--tps-white: #FFFFFF;
--tps-light-grey: #F5F5F5;
--tps-dark-grey: #333333;
--font-headings: 'Montserrat', sans-serif;
--font-body: 'Open Sans', sans-serif;
}
body {
font-family: var(--font-body);
color: var(--tps-dark-grey);
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-headings);
font-weight: 700;
}
.navbar {
transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.navbar-brand {
font-family: var(--font-headings);
font-weight: 700;
font-size: 1.5rem;
}
.navbar.scrolled {
background-color: var(--tps-white);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
#hero {
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/228095/pexels-photo-228095.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
background-size: cover;
background-position: center;
color: var(--tps-white);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
#hero h1 {
font-size: 3.5rem;
font-weight: 800;
}
#hero p {
font-size: 1.25rem;
max-width: 800px;
margin: 1rem auto;
}
.btn-primary {
background-color: var(--tps-green);
border-color: var(--tps-green);
font-weight: 600;
padding: 0.75rem 1.5rem;
transition: background-color 0.3s, border-color 0.3s;
}
.btn-primary:hover {
background-color: #256528;
border-color: #256528;
}
.btn-secondary {
background-color: transparent;
border-color: var(--tps-white);
color: var(--tps-white);
font-weight: 600;
padding: 0.75rem 1.5rem;
transition: background-color 0.3s, color 0.3s;
}
.btn-secondary:hover {
background-color: var(--tps-white);
color: var(--tps-dark-grey);
}
footer {
background-color: var(--tps-light-grey);
}
.section-title {
font-weight: 800;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 3px solid var(--tps-green);
display: inline-block;
}
#about .card {
border: none;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#about .card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}
.icon-circle {
width: 60px;
height: 60px;
background-color: rgba(46, 125, 50, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--tps-green);
}
#product ul li svg {
vertical-align: middle;
}
/* Quality Assurance Section */
#quality .card {
border: none;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#quality .card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}
/* Logistics & Traceability Section */
#logistics .list-unstyled li div {
font-size: 1.05rem;
}
#logistics .feather {
width: 30px; /* Slightly larger icons */
height: 30px;
}
/* Sustainability Section */
#sustainability .feather {
width: 30px;
height: 30px;
}
#sustainability ul li div {
font-size: 1.05rem;
}
/* Contact Section */
#contact form {
background-color: var(--tps-white);
padding: 2rem;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.section-title-decorative {
font-weight: 800;
margin-bottom: 1rem;
position: relative;
display: inline-block;
}
.section-title-decorative::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 4px;
background-color: var(--tps-green);
}
#hero {
background: linear-gradient(45deg, rgba(46, 125, 50, 0.8), rgba(26, 35, 126, 0.8)), url('https://images.pexels.com/photos/228095/pexels-photo-228095.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
background-size: cover;
background-position: center;
}
/* Specifications & Comparison Sections */
#specifications .table,
#comparison .table {
font-size: 1.1rem;
}
#specifications .table-bordered,
#comparison .table-bordered {
border-color: #dee2e6;
}
.table thead.table-dark th {
background-color: var(--tps-dark-blue);
border-color: var(--tps-dark-blue);
}
#comparison .text-success {
color: var(--tps-green) !important;
font-weight: 600;
}
#comparison .text-danger {
color: #dc3545 !important;
font-weight: 600;
}

10
assets/js/main.js Normal file
View File

@ -0,0 +1,10 @@
document.addEventListener('DOMContentLoaded', function () {
const navbar = document.querySelector('.navbar');
window.addEventListener('scroll', () => {
if (window.scrollY > 50) {
navbar.classList.add('scrolled');
} else {
navbar.classList.remove('scrolled');
}
});
});

532
index.php
View File

@ -1,150 +1,410 @@
<?php
declare(strict_types=1);
@ini_set('display_errors', '1');
@error_reporting(E_ALL);
@date_default_timezone_set('UTC');
$message_sent = false;
if ($_SERVER["REQUEST_METHOD"] == "POST") {
require_once __DIR__ . "/mail/MailService.php";
$name = filter_input(INPUT_POST, 'name', FILTER_SANITIZE_STRING);
$email = filter_input(INPUT_POST, 'email', FILTER_VALIDATE_EMAIL);
$message = filter_input(INPUT_POST, 'message', FILTER_SANITIZE_STRING);
$phpVersion = PHP_VERSION;
$now = date('Y-m-d H:i:s');
if ($name && $email && $message) {
$result = MailService::sendContactMessage($name, $email, $message);
if ($result['success']) {
$message_sent = true;
}
}
}
?>
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>New Style</title>
<?php
// Read project preview data from environment
$projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? '';
$projectImageUrl = $_SERVER['PROJECT_IMAGE_URL'] ?? '';
?>
<?php if ($projectDescription): ?>
<!-- Meta description -->
<meta name="description" content='<?= htmlspecialchars($projectDescription) ?>' />
<!-- Open Graph meta tags -->
<meta property="og:description" content="<?= htmlspecialchars($projectDescription) ?>" />
<!-- Twitter meta tags -->
<meta property="twitter:description" content="<?= htmlspecialchars($projectDescription) ?>" />
<?php endif; ?>
<?php if ($projectImageUrl): ?>
<!-- Open Graph image -->
<meta property="og:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
<!-- Twitter image -->
<meta property="twitter:image" content="<?= htmlspecialchars($projectImageUrl) ?>" />
<?php endif; ?>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo htmlspecialchars(getenv('PROJECT_NAME') ?: 'TPS Petroleums LLP'); ?></title>
<meta name="description" content="<?php echo htmlspecialchars(getenv('PROJECT_DESCRIPTION') ?: 'Advanced RDF Biofuel Solutions for a Cleaner Industrial Future.'); ?>">
<!-- Bootstrap 5 CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-color-start: #6a11cb;
--bg-color-end: #2575fc;
--text-color: #ffffff;
--card-bg-color: rgba(255, 255, 255, 0.01);
--card-border-color: rgba(255, 255, 255, 0.1);
}
body {
margin: 0;
font-family: 'Inter', sans-serif;
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
color: var(--text-color);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
overflow: hidden;
position: relative;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M-10 10L110 10M10 -10L10 110" stroke-width="1" stroke="rgba(255,255,255,0.05)"/></svg>');
animation: bg-pan 20s linear infinite;
z-index: -1;
}
@keyframes bg-pan {
0% { background-position: 0% 0%; }
100% { background-position: 100% 100%; }
}
main {
padding: 2rem;
}
.card {
background: var(--card-bg-color);
border: 1px solid var(--card-border-color);
border-radius: 16px;
padding: 2rem;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}
.loader {
margin: 1.25rem auto 1.25rem;
width: 48px;
height: 48px;
border: 3px solid rgba(255, 255, 255, 0.25);
border-top-color: #fff;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.hint {
opacity: 0.9;
}
.sr-only {
position: absolute;
width: 1px; height: 1px;
padding: 0; margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap; border: 0;
}
h1 {
font-size: 3rem;
font-weight: 700;
margin: 0 0 1rem;
letter-spacing: -1px;
}
p {
margin: 0.5rem 0;
font-size: 1.1rem;
}
code {
background: rgba(0,0,0,0.2);
padding: 2px 6px;
border-radius: 4px;
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
footer {
position: absolute;
bottom: 1rem;
font-size: 0.8rem;
opacity: 0.7;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
<!-- Open Graph / Twitter Meta Tags -->
<meta property="og:title" content="<?php echo htmlspecialchars(getenv('PROJECT_NAME') ?: 'TPS Petroleums LLP'); ?>">
<meta property="og:description" content="<?php echo htmlspecialchars(getenv('PROJECT_DESCRIPTION') ?: 'High-performance, environmentally responsible biofuel.'); ?>">
<meta property="og:image" content="<?php echo htmlspecialchars(getenv('PROJECT_IMAGE_URL') ?: 'https://www.default-image-url.com/default.jpg'); ?>">
<meta name="twitter:card" content="summary_large_image">
</head>
<body>
<main>
<div class="card">
<h1>Analyzing your requirements and generating your website…</h1>
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
<span class="sr-only">Loading…</span>
<!-- Header & Navigation -->
<header>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="#">TPS Petroleums LLP</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#hero">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About Us</a></li>
<li class="nav-item"><a class="nav-link" href="#quality">Quality & Assurance</a></li>
<li class="nav-item"><a class="nav-link" href="#product">Product (RDF Biofuel)</a></li>
<li class="nav-item"><a class="nav-link" href="#sustainability">Sustainability</a></li>
<li class="nav-item"><a class="nav-link" href="#logistics">Logistics & Traceability</a></li>
<li class="nav-item"><a class="nav-link" href="#specifications">Specifications</a></li>
<li class="nav-item"><a class="nav-link" href="#comparison">Comparison</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
<p class="hint"><?= ($_SERVER['HTTP_HOST'] ?? '') === 'appwizzy.com' ? 'AppWizzy' : 'Flatlogic' ?> AI is collecting your requirements and applying the first changes.</p>
<p class="hint">This page will update automatically as the plan is implemented.</p>
<p>Runtime: PHP <code><?= htmlspecialchars($phpVersion) ?></code> — UTC <code><?= htmlspecialchars($now) ?></code></p>
</div>
</main>
<footer>
Page updated: <?= htmlspecialchars($now) ?> (UTC)
</nav>
</header>
<!-- Hero Section -->
<section id="hero">
<div class="container text-center">
<h1 class="display-3">Advanced RDF Biofuel Solutions for a Cleaner Industrial Future</h1>
<p class="lead">High-performance, environmentally responsible biofuel with secure logistics and strict quality control.</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<a href="#product" class="btn btn-primary btn-lg px-4 gap-3">Explore Our Product</a>
<a href="#contact" class="btn btn-secondary btn-lg px-4">Contact Us</a>
</div>
</div>
</section>
<!-- Company Focus Section -->
<section id="about" class="py-5">
<div class="container">
<div class="text-center mb-5">
<h2 class="section-title-decorative">Company Focus</h2>
<p class="lead text-muted">TPS Petroleums LLP delivers advanced RDF Biofuel solutions with a strong emphasis on quality control, secure logistics, and environmental sustainability. The company uses innovative processing technology to ensure reliable, high-performance biofuel for industrial applications.</p>
</div>
<div class="row text-center">
<div class="col-md-4 mb-4">
<div class="card h-100 shadow-sm">
<div class="card-body">
<div class="icon-circle mb-3 mx-auto">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check-circle"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>
</div>
<h5 class="card-title">Quality Control</h5>
<p class="card-text">Rigorous testing at every stage ensures our biofuel meets the highest performance and safety standards.</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100 shadow-sm">
<div class="card-body">
<div class="icon-circle mb-3 mx-auto">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-truck"><rect x="1" y="3" width="15" height="13"></rect><polygon points="16 8 20 8 23 11 23 16 16 16 16 8"></polygon><circle cx="5.5" cy="18.5" r="2.5"></circle><circle cx="18.5" cy="18.5" r="2.5"></circle></svg>
</div>
<h5 class="card-title">Secure Logistics</h5>
<p class="card-text">Reliable and timely delivery of biofuel with end-to-end traceability for complete peace of mind.</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100 shadow-sm">
<div class="card-body">
<div class="icon-circle mb-3 mx-auto">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-leaf"><path d="M20 12c0-4.41-3.59-8-8-8S4 7.59 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8z"></path><path d="M12 2a10 10 0 0 0-10 10c0 4.41 3.59 8 8 8s10-3.59 10-8c0-4.41-3.59-8-8-8z"></path></svg>
</div>
<h5 class="card-title">Sustainability</h5>
<p class="card-text">Our RDF biofuel reduces emissions and promotes a circular economy, helping you meet your green targets.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Product Section -->
<section id="product" class="py-5 bg-light">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<h2 class="section-title-decorative">Product (RDF Biofuel)</h2>
<p class="lead">Our high-calorific value RDF Biofuel is an eco-friendly alternative to traditional fossil fuels, engineered for efficiency and performance. It is produced from non-hazardous solid waste, undergoing a rigorous refinement process to ensure consistent quality for industrial boilers, furnaces, and power plants.</p>
<ul class="list-unstyled">
<li class="mb-2"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check text-primary me-2"><polyline points="20 6 9 17 4 12"></polyline></svg>High energy output and consistent performance.</li>
<li class="mb-2"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check text-primary me-2"><polyline points="20 6 9 17 4 12"></polyline></svg>Reduces carbon footprint and harmful emissions.</li>
<li class="mb-2"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check text-primary me-2"><polyline points="20 6 9 17 4 12"></polyline></svg>Cost-effective and reliable fuel source.</li>
</ul>
</div>
<div class="col-lg-6">
<img src="https://images.pexels.com/photos/224924/pexels-photo-224924.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" class="img-fluid rounded shadow" alt="Biofuel Production Facility">
</div>
</div>
</div>
</section>
<!-- Quality Control & Assurance Section -->
<section id="quality" class="py-5">
<div class="container">
<div class="text-center mb-5">
<h2 class="section-title-decorative">Multi-Stage Quality Assurance</h2>
<p class="lead text-muted">We enforce a rigorous, multi-stage quality control process to guarantee every batch of biofuel meets the highest standards of performance and safety.</p>
</div>
<div class="row">
<div class="col-md-6 col-lg-3 mb-4">
<div class="card h-100 text-center shadow-sm">
<div class="card-body">
<div class="icon-circle mb-3 mx-auto">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
</div>
<h5 class="card-title">Raw Material Testing</h5>
<p class="card-text">Comprehensive feedstock analysis is conducted before unloading to ensure quality from the very start.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 mb-4">
<div class="card h-100 text-center shadow-sm">
<div class="card-body">
<div class="icon-circle mb-3 mx-auto">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-monitor"><rect x="2" y="3" width="20" height="14" rx="2" ry="2"></rect><line x1="8" y1="21" x2="16" y2="21"></line><line x1="12" y1="17" x2="12" y2="21"></line></svg>
</div>
<h5 class="card-title">In-Process Monitoring</h5>
<p class="card-text">Continuous quality checks are performed throughout the manufacturing process.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 mb-4">
<div class="card h-100 text-center shadow-sm">
<div class="card-body">
<div class="icon-circle mb-3 mx-auto">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-clipboard"><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><rect x="8" y="2" width="8" height="4" rx="1" ry="1"></rect></svg>
</div>
<h5 class="card-title">Final Product Verification</h5>
<p class="card-text">Comprehensive testing is done before dispatch to ensure the final product meets all specifications.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 mb-4">
<div class="card h-100 text-center shadow-sm">
<div class="card-body">
<div class="icon-circle mb-3 mx-auto">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-archive"><polyline points="21 8 21 21 3 21 3 8"></polyline><rect x="1" y="3" width="22" height="5"></rect><line x1="10" y1="12" x2="14" y2="12"></line></svg>
</div>
<h5 class="card-title">Documentation & Sampling</h5>
<p class="card-text">Test reports and counter-samples are provided with every single delivery for full transparency.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Logistics & Traceability Section -->
<section id="logistics" class="py-5 bg-light">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<h2 class="section-title-decorative">Logistics & Traceability</h2>
<p class="lead">Our integrated logistics network ensures that your biofuel supply is secure, timely, and fully traceable from our plant to your facility.</p>
<ul class="list-unstyled">
<li class="mb-3 d-flex">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text text-primary me-3 flex-shrink-0 mt-1"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline></svg>
<div><strong>Detailed Test Reports:</strong> Every shipment includes comprehensive test reports, so you have full visibility into the fuel's specifications.</div>
</li>
<li class="mb-3 d-flex">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-box text-primary me-3 flex-shrink-0 mt-1"><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line></svg>
<div><strong>Counter Samples:</strong> For quality assurance, we store counter samples of every delivery for one month.</div>
</li>
<li class="mb-3 d-flex">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-lock text-primary me-3 flex-shrink-0 mt-1"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>
<div><strong>Sealed Invoices:</strong> All invoices and challans are dispatched with a unique seal number to ensure tamper-proof documentation.</div>
</li>
</ul>
</div>
<div class="col-lg-6">
<img src="https://images.pexels.com/photos/1267320/pexels-photo-1267320.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" class="img-fluid rounded shadow" alt="Logistics and Supply Chain">
</div>
</div>
</div>
</section>
<!-- Sustainability Section -->
<section id="sustainability" class="py-5">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 order-lg-2">
<h2 class="section-title-decorative">Commitment to Sustainability</h2>
<p class="lead">We are dedicated to promoting a circular economy and reducing the environmental impact of industrial processes. Our RDF biofuel is a testament to this commitment, offering a cleaner, more sustainable energy source.</p>
<ul class="list-unstyled">
<li class="mb-3 d-flex">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check-circle text-primary me-3 flex-shrink-0 mt-1"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>
<div><strong>Reduced Emissions:</strong> Significantly lowers CO2, SOx, and NOx emissions compared to fossil fuels.</div>
</li>
<li class="mb-3 d-flex">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-refresh-cw text-primary me-3 flex-shrink-0 mt-1"><polyline points="23 4 23 10 17 10"></polyline><polyline points="1 7 1 13 7 13"></polyline><path d="M20.49 9A9 9 0 0 0 12 5c-3.92 0-7.24 2.16-8.94 5.25"></path><path d="M3.51 15A9 9 0 0 0 12 19c3.92 0 7.24-2.16 8.94-5.25"></path></svg>
<div><strong>Circular Economy:</strong> Converts non-hazardous waste into a valuable energy resource, reducing landfill.</div>
</li>
<li class="mb-3 d-flex">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-shield text-primary me-3 flex-shrink-0 mt-1"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path></svg>
<div><strong>Energy Security:</strong> Provides a locally sourced, reliable alternative to imported fossil fuels.</div>
</li>
</ul>
</div>
<div class="col-lg-6 order-lg-1">
<img src="https://images.pexels.com/photos/9553903/pexels-photo-9553903.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" class="img-fluid rounded shadow-lg" alt="Green Energy and Sustainability">
</div>
</div>
</div>
</section>
<!-- Specifications Section -->
<section id="specifications" class="py-5">
<div class="container">
<div class="text-center mb-5">
<h2 class="section-title-decorative">Technical Specifications</h2>
<p class="lead text-muted">Detailed technical specifications of our high-performance RDF Biofuel.</p>
</div>
<div class="row">
<div class="col-lg-8 mx-auto">
<table class="table table-bordered table-striped">
<thead class="table-dark">
<tr>
<th scope="col">Parameter</th>
<th scope="col">Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>Gross Calorific Value (GCV)</td>
<td>3500-4500 Kcal/Kg</td>
</tr>
<tr>
<td>Ash Content</td>
<td>10-15%</td>
</tr>
<tr>
<td>Moisture Content</td>
<td>&lt; 10%</td>
</tr>
<tr>
<td>Sulphur Content</td>
<td>&lt; 0.5%</td>
</tr>
<tr>
<td>Chlorine Content</td>
<td>&lt; 0.5%</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<!-- Comparison Section -->
<section id="comparison" class="py-5 bg-light">
<div class="container">
<div class="text-center mb-5">
<h2 class="section-title-decorative">Fuel Comparison</h2>
<p class="lead text-muted">See how our RDF Biofuel compares to traditional fuels.</p>
</div>
<div class="row">
<div class="col-lg-10 mx-auto">
<table class="table table-hover table-bordered">
<thead class="table-dark">
<tr>
<th scope="col">Parameter</th>
<th scope="col">RDF Biofuel</th>
<th scope="col">Coal / Petcoke</th>
</tr>
</thead>
<tbody>
<tr>
<td>Carbon Footprint</td>
<td class="text-success">Low</td>
<td class="text-danger">High</td>
</tr>
<tr>
<td>SOx & NOx Emissions</td>
<td class="text-success">Very Low</td>
<td class="text-danger">High</td>
</tr>
<tr>
<td>Ash Content</td>
<td class="text-success">Low</td>
<td class="text-danger">High</td>
</tr>
<tr>
<td>Cost</td>
<td class="text-success">Economical</td>
<td class="text-danger">Volatile</td>
</tr>
<tr>
<td>Energy Security</td>
<td class="text-success">High (Local Supply)</td>
<td class="text-danger">Dependent on Imports</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-5 bg-light">
<div class="container">
<div class="text-center mb-5">
<h2 class="section-title-decorative">Get in Touch</h2>
<p class="lead text-muted">We are here to answer your questions and help you find the right biofuel solution for your business.</p>
</div>
<div class="row">
<div class="col-lg-8 mx-auto">
<?php if ($message_sent): ?>
<div class="alert alert-success" role="alert">
Thank you for your message! We will get back to you shortly.
</div>
<?php else: ?>
<form action="#contact" method="post">
<div class="row">
<div class="col-md-6 mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="col-md-6 mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" name="message" rows="5" required></textarea>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary btn-lg">Send Message</button>
</div>
</form>
<?php endif; ?>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-5">
<div class="container text-center">
<p class="mb-1">&copy; <?php echo date("Y"); ?> TPS Petroleums LLP. A Complete Biofuel Solution.</p>
<ul class="list-inline">
<li class="list-inline-item"><a href="#">Privacy</a></li>
<li class="list-inline-item"><a href="#">Terms</a></li>
<li class="list-inline-item"><a href="#">Contact</a></li>
</ul>
</div>
</footer>
<!-- Bootstrap 5 JS Bundle -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom JS -->
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>