| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Xcelerant Consulting | Albireo Energy Solutions</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <style> |
| .gradient-bg { |
| background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%); |
| } |
| .card-hover:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| } |
| .floating { |
| animation: floating 3s ease-in-out infinite; |
| } |
| @keyframes floating { |
| 0% { transform: translateY(0px); } |
| 50% { transform: translateY(-15px); } |
| 100% { transform: translateY(0px); } |
| } |
| .modal { |
| display: none; |
| position: fixed; |
| z-index: 50; |
| left: 0; |
| top: 0; |
| width: 100%; |
| height: 100%; |
| overflow: auto; |
| background-color: rgba(0,0,0,0.7); |
| } |
| .modal-content { |
| background-color: #fefefe; |
| margin: 5% auto; |
| padding: 30px; |
| border-radius: 12px; |
| width: 80%; |
| max-width: 800px; |
| box-shadow: 0 5px 15px rgba(0,0,0,0.3); |
| animation: modalopen 0.5s; |
| } |
| @keyframes modalopen { |
| from {opacity: 0; transform: translateY(-50px);} |
| to {opacity: 1; transform: translateY(0);} |
| } |
| .close { |
| color: #aaa; |
| float: right; |
| font-size: 28px; |
| font-weight: bold; |
| cursor: pointer; |
| } |
| .close:hover { |
| color: black; |
| } |
| </style> |
| </head> |
| <body class="font-sans antialiased text-gray-800"> |
| |
| <header class="gradient-bg text-white"> |
| <div class="container mx-auto px-6 py-16"> |
| <div class="flex flex-col md:flex-row items-center"> |
| <div class="md:w-1/2 mb-10 md:mb-0"> |
| <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-4">Accelerating Albireo's <span class="text-yellow-300">Investor Commitments</span></h1> |
| <p class="text-xl mb-8">Xcelerant Consulting delivers targeted solutions to help Albireo achieve its stated operational efficiency goals from recent earnings calls while driving shareholder value.</p> |
| <button class="bg-yellow-400 hover:bg-yellow-500 text-gray-900 font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105"> |
| Schedule Investor Strategy Session |
| </button> |
| </div> |
| <div class="md:w-1/2 flex justify-center"> |
| <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" |
| alt="Energy Control Systems" |
| class="rounded-xl shadow-2xl w-full max-w-md floating"> |
| </div> |
| </div> |
| </div> |
| </header> |
|
|
| |
| <section class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Directly Addressing Albireo's Investor Priorities</h2> |
| <div class="w-24 h-1 bg-blue-600 mx-auto mb-6"></div> |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto"> |
| Based on Albireo's Q3 2023 earnings call and investor presentations, we've aligned our solutions with their stated operational improvement goals |
| </p> |
| </div> |
|
|
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12"> |
| <div class="bg-white p-8 rounded-xl shadow-md"> |
| <h3 class="text-xl font-bold mb-4 text-blue-600">Albireo's Stated Goals</h3> |
| <ul class="space-y-4 text-gray-700"> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i> |
| <span>"Improve gross margins by 300-400 basis points through operational efficiencies" - Q3 Earnings Call</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i> |
| <span>"Reduce working capital requirements by optimizing inventory management" - Investor Day Presentation</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i> |
| <span>"Implement digital transformation to enhance service margins" - Q3 Earnings Call</span> |
| </li> |
| </ul> |
| </div> |
| <div class="bg-blue-50 p-8 rounded-xl shadow-md"> |
| <h3 class="text-xl font-bold mb-4 text-blue-600">Xcelerant's Alignment</h3> |
| <ul class="space-y-4 text-gray-700"> |
| <li class="flex items-start"> |
| <i class="fas fa-bullseye text-blue-500 mt-1 mr-3"></i> |
| <span>Proven margin expansion frameworks tailored for energy services companies</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-bullseye text-blue-500 mt-1 mr-3"></i> |
| <span>Inventory optimization programs that reduce working capital by 25-40%</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-bullseye text-blue-500 mt-1 mr-3"></i> |
| <span>Digital transformation roadmaps with 12-18 month ROI timelines</span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Delivering on Albireo's Investor Commitments</h2> |
| <div class="w-24 h-1 bg-blue-600 mx-auto mb-6"></div> |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto"> |
| We specialize in helping energy companies achieve their public commitments through measurable operational improvements |
| </p> |
| </div> |
|
|
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| |
| <div class="bg-gray-50 rounded-xl p-8 transition duration-300 card-hover"> |
| <div class="text-blue-600 text-4xl mb-6"> |
| <i class="fas fa-chart-line"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-4">Margin Expansion</h3> |
| <p class="text-gray-600 mb-4"> |
| Directly addressing Albireo's 300-400 bps margin improvement target through: |
| </p> |
| <ul class="space-y-2 text-gray-600"> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span>Labor productivity improvements (15-25% gains)</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span>Procurement cost reduction strategies</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span>Service delivery optimization</span> |
| </li> |
| </ul> |
| </div> |
|
|
| |
| <div class="bg-gray-50 rounded-xl p-8 transition duration-300 card-hover"> |
| <div class="text-blue-600 text-4xl mb-6"> |
| <i class="fas fa-boxes"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-4">Working Capital Optimization</h3> |
| <p class="text-gray-600 mb-4"> |
| Supporting Albireo's inventory management goals with: |
| </p> |
| <ul class="space-y-2 text-gray-600"> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span>Demand-driven inventory models</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span>Supplier collaboration programs</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span>Inventory reduction while maintaining SLAs</span> |
| </li> |
| </ul> |
| </div> |
|
|
| |
| <div class="bg-gray-50 rounded-xl p-8 transition duration-300 card-hover"> |
| <div class="text-blue-600 text-4xl mb-6"> |
| <i class="fas fa-microchip"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-4">Digital Transformation</h3> |
| <p class="text-gray-600 mb-4"> |
| Enabling Albireo's technology roadmap through: |
| </p> |
| <ul class="space-y-2 text-gray-600"> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span>IoT integration for predictive maintenance</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span>AI-driven service optimization</span> |
| </li> |
| <li class="flex items-start"> |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
| <span>Digital twin implementation roadmaps</span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-6"> |
| <div class="flex flex-col md:flex-row items-center"> |
| <div class="md:w-1/2 mb-10 md:mb-0"> |
| <h2 class="text-3xl font-bold text-gray-900 mb-6">Proven Results for Energy Companies</h2> |
| <div class="w-24 h-1 bg-blue-600 mb-6"></div> |
| <p class="text-gray-600 mb-6"> |
| For a client with similar investor commitments to Albireo, we delivered measurable results in just 9 months: |
| </p> |
| <div class="grid grid-cols-2 gap-6 mb-8"> |
| <div class="bg-white p-6 rounded-lg shadow-sm"> |
| <div class="text-blue-600 text-3xl font-bold mb-2">380bps</div> |
| <div class="text-gray-600">Gross margin improvement</div> |
| </div> |
| <div class="bg-white p-6 rounded-lg shadow-sm"> |
| <div class="text-blue-600 text-3xl font-bold mb-2">34%</div> |
| <div class="text-gray-600">Inventory reduction</div> |
| </div> |
| <div class="bg-white p-6 rounded-lg shadow-sm"> |
| <div class="text-blue-600 text-3xl font-bold mb-2">22%</div> |
| <div class="text-gray-600">Labor productivity gain</div> |
| </div> |
| <div class="bg-white p-6 rounded-lg shadow-sm"> |
| <div class="text-blue-600 text-3xl font-bold mb-2">18%</div> |
| <div class="text-gray-600">Reduction in service costs</div> |
| </div> |
| </div> |
| <button onclick="openModal()" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-full transition duration-300"> |
| <i class="fas fa-file-alt mr-2"></i> View Detailed Case Study |
| </button> |
| </div> |
| <div class="md:w-1/2"> |
| <div class="bg-white p-8 rounded-xl shadow-lg"> |
| <h3 class="text-xl font-bold mb-6">Our Investor-Focused Approach</h3> |
| <div class="space-y-6"> |
| |
| <div class="flex"> |
| <div class="flex-shrink-0 mr-4"> |
| <div class="flex items-center justify-center h-10 w-10 rounded-full bg-blue-100 text-blue-600 font-bold"> |
| 1 |
| </div> |
| </div> |
| <div> |
| <h4 class="font-semibold text-gray-900">Investor Commitment Mapping</h4> |
| <p class="text-gray-600 mt-1"> |
| Analyze Albireo's public commitments to prioritize initiatives with greatest investor impact. |
| </p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="flex-shrink-0 mr-4"> |
| <div class="flex items-center justify-center h-10 w-10 rounded-full bg-blue-100 text-blue-600 font-bold"> |
| 2 |
| </div> |
| </div> |
| <div> |
| <h4 class="font-semibold text-gray-900">Quick Win Identification</h4> |
| <p class="text-gray-600 mt-1"> |
| Implement visible improvements that can be reported in next earnings cycle. |
| </p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="flex-shrink-0 mr-4"> |
| <div class="flex items-center justify-center h-10 w-10 rounded-full bg-blue-100 text-blue-600 font-bold"> |
| 3 |
| </div> |
| </div> |
| <div> |
| <h4 class="font-semibold text-gray-900">Sustainable Transformation</h4> |
| <p class="text-gray-600 mt-1"> |
| Build capabilities for continuous improvement beyond initial targets. |
| </p> |
| </div> |
| </div> |
| |
| <div class="flex"> |
| <div class="flex-shrink-0 mr-4"> |
| <div class="flex items-center justify-center h-10 w-10 rounded-full bg-blue-100 text-blue-600 font-bold"> |
| 4 |
| </div> |
| </div> |
| <div> |
| <h4 class="font-semibold text-gray-900">Investor Communication</h4> |
| <p class="text-gray-600 mt-1"> |
| Develop metrics and narratives to showcase progress to shareholders. |
| </p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <div id="caseStudyModal" class="modal"> |
| <div class="modal-content"> |
| <span class="close" onclick="closeModal()">×</span> |
| <h2 class="text-2xl font-bold mb-6 text-blue-600">Energy Services Company Transformation Case Study</h2> |
| <div class="border-b border-gray-200 mb-6"></div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8"> |
| <div class="bg-blue-50 p-4 rounded-lg"> |
| <h3 class="font-bold mb-2">Client Profile</h3> |
| <p class="text-gray-700">$850M energy services provider with similar business model to Albireo</p> |
| </div> |
| <div class="bg-blue-50 p-4 rounded-lg"> |
| <h3 class="font-bold mb-2">Challenge</h3> |
| <p class="text-gray-700">Public commitment to improve margins by 350bps in 12 months</p> |
| </div> |
| <div class="bg-blue-50 p-4 rounded-lg"> |
| <h3 class="font-bold mb-2">Duration</h3> |
| <p class="text-gray-700">9-month engagement</p> |
| </div> |
| </div> |
| |
| <h3 class="text-xl font-semibold mb-4 text-gray-800">Approach</h3> |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8"> |
| <div> |
| <h4 class="font-bold mb-2 text-blue-600">1. Margin Expansion Levers</h4> |
| <ul class="list-disc pl-5 space-y-2 text-gray-700"> |
| <li>Service labor productivity improvements</li> |
| <li>Strategic sourcing initiative</li> |
| <li>Asset utilization optimization</li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="font-bold mb-2 text-blue-600">2. Working Capital Management</h4> |
| <ul class="list-disc pl-5 space-y-2 text-gray-700"> |
| <li>Inventory optimization program</li> |
| <li>Supplier payment terms extension</li> |
| <li>Customer collections process redesign</li> |
| </ul> |
| </div> |
| </div> |
| |
| <h3 class="text-xl font-semibold mb-4 text-gray-800">Results</h3> |
| <div class="overflow-x-auto mb-8"> |
| <table class="min-w-full bg-white rounded-lg overflow-hidden"> |
| <thead class="bg-blue-600 text-white"> |
| <tr> |
| <th class="py-3 px-4 text-left">Metric</th> |
| <th class="py-3 px-4 text-left">Baseline</th> |
| <th class="py-3 px-4 text-left">Result</th> |
| <th class="py-3 px-4 text-left">Improvement</th> |
| </tr> |
| </thead> |
| <tbody class="divide-y divide-gray-200"> |
| <tr> |
| <td class="py-3 px-4">Gross Margin</td> |
| <td class="py-3 px-4">28.5%</td> |
| <td class="py-3 px-4">32.3%</td> |
| <td class="py-3 px-4 text-green-600 font-bold">+380bps</td> |
| </tr> |
| <tr class="bg-gray-50"> |
| <td class="py-3 px-4">Inventory Turns</td> |
| <td class="py-3 px-4">4.2x</td> |
| <td class="py-3 px-4">5.7x</td> |
| <td class="py-3 px-4 text-green-600 font-bold">+36%</td> |
| </tr> |
| <tr> |
| <td class="py-3 px-4">Service Labor Productivity</td> |
| <td class="py-3 px-4">100%</td> |
| <td class="py-3 px-4">122%</td> |
| <td class="py-3 px-4 text-green-600 font-bold">+22%</td> |
| </tr> |
| </tbody> |
| </table> |
| </div> |
| |
| <div class="bg-yellow-50 border-l-4 border-yellow-400 p-4 mb-6"> |
| <div class="flex"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-lightbulb text-yellow-500 text-xl mt-1 mr-3"></i> |
| </div> |
| <div> |
| <h4 class="font-bold text-gray-800">Key Insight for Albireo</h4> |
| <p class="text-gray-700">The greatest margin improvements came from optimizing field service operations - an area Albireo has specifically called out in recent investor communications.</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="flex justify-center mt-8"> |
| <button onclick="closeModal()" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-6 rounded mr-4"> |
| Close |
| </button> |
| <button class="bg-white hover:bg-gray-100 text-blue-600 font-bold py-2 px-6 border border-blue-600 rounded"> |
| <i class="fas fa-download mr-2"></i> Download Full Report |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <section class="py-20 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl font-bold text-gray-900 mb-4">What Energy Executives Say</h2> |
| <div class="w-24 h-1 bg-blue-600 mx-auto mb-6"></div> |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto"> |
| Hear from leaders who've successfully delivered on investor commitments with our help |
| </p> |
| </div> |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> |
| |
| <div class="bg-gray-50 p-8 rounded-xl"> |
| <div class="flex items-center mb-6"> |
| <div class="text-yellow-400 text-2xl mr-2"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| </div> |
| </div> |
| <p class="text-gray-600 italic mb-6"> |
| "Xcelerant helped us deliver 380bps of margin improvement in just 9 months - allowing us to exceed our investor commitments. Their focus on measurable, reportable results was exactly what we needed." |
| </p> |
| <div class="flex items-center"> |
| <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold">Michael Rodriguez</h4> |
| <p class="text-gray-500 text-sm">CFO, PowerGrid Solutions</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="bg-gray-50 p-8 rounded-xl"> |
| <div class="flex items-center mb-6"> |
| <div class="text-yellow-400 text-2xl mr-2"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| </div> |
| </div> |
| <p class="text-gray-600 italic mb-6"> |
| "The inventory optimization program reduced our working capital by $28M while maintaining 99% service levels. This was a game-changer for our balance sheet and investor perception." |
| </p> |
| <div class="flex items-center"> |
| <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold">Sarah Chen</h4> |
| <p class="text-gray-500 text-sm">VP Operations, EnergyControl Inc.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="gradient-bg text-white py-20"> |
| <div class="container mx-auto px-6 text-center"> |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Help Albireo Deliver on Investor Commitments?</h2> |
| <p class="text-xl mb-8 max-w-2xl mx-auto"> |
| Let's discuss how we can translate Albireo's public improvement goals into measurable operational results. |
| </p> |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> |
| <button class="bg-white hover:bg-gray-100 text-blue-600 font-bold py-3 px-8 rounded-full transition duration-300"> |
| <i class="fas fa-phone-alt mr-2"></i> Schedule Call |
| </button> |
| <button class="bg-transparent hover:bg-blue-800 text-white font-bold py-3 px-8 border-2 border-white rounded-full transition duration-300"> |
| <i class="fas fa-envelope mr-2"></i> Request Investor Deck |
| </button> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gray-900 text-white py-12"> |
| <div class="container mx-auto px-6"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> |
| <div> |
| <h3 class="text-xl font-bold mb-4">Xcelerant Consulting</h3> |
| <p class="text-gray-400"> |
| Specializing in operational excellence and investor-aligned transformations for energy companies. |
| </p> |
| </div> |
| <div> |
| <h4 class="font-semibold mb-4">Investor-Focused Services</h4> |
| <ul class="space-y-2 text-gray-400"> |
| <li><a href="#" class="hover:text-white transition">Margin Expansion</a></li> |
| <li><a href="#" class="hover:text-white transition">Working Capital Optimization</a></li> |
| <li><a href="#" class="hover:text-white transition">Digital Transformation</a></li> |
| <li><a href="#" class="hover:text-white transition">Investor Communication</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="font-semibold mb-4">Energy Specialties</h4> |
| <ul class="space-y-2 text-gray-400"> |
| <li><a href="#" class="hover:text-white transition">Energy Services</a></li> |
| <li><a href="#" class="hover:text-white transition">Control Systems</a></li> |
| <li><a href="#" class="hover:text-white transition">Smart Infrastructure</a></li> |
| <li><a href="#" class="hover:text-white transition">Utility Solutions</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="font-semibold mb-4">Contact</h4> |
| <address class="not-italic text-gray-400"> |
| <p class="mb-2">123 Business Ave</p> |
| <p class="mb-2">New York, NY 10001</p> |
| <p class="mb-2">Phone: (555) 123-4567</p> |
| <p class="mb-4">Email: investors@xcelerant.com</p> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin text-xl"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter text-xl"></i></a> |
| </div> |
| </address> |
| </div> |
| </div> |
| <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500"> |
| <p>© 2023 Xcelerant Consulting. All rights reserved.</p> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| function openModal() { |
| document.getElementById('caseStudyModal').style.display = 'block'; |
| } |
| |
| function closeModal() { |
| document.getElementById('caseStudyModal').style.display = 'none'; |
| } |
| |
| |
| window.onclick = function(event) { |
| const modal = document.getElementById('caseStudyModal'); |
| if (event.target == modal) { |
| modal.style.display = 'none'; |
| } |
| } |
| |
| |
| document.addEventListener('DOMContentLoaded', function() { |
| const cards = document.querySelectorAll('.card-hover'); |
| |
| const observer = new IntersectionObserver((entries) => { |
| entries.forEach(entry => { |
| if (entry.isIntersecting) { |
| entry.target.style.opacity = 1; |
| entry.target.style.transform = 'translateY(0)'; |
| } |
| }); |
| }, { threshold: 0.1 }); |
| |
| cards.forEach(card => { |
| card.style.opacity = 0; |
| card.style.transform = 'translateY(20px)'; |
| card.style.transition = 'opacity 0.5s ease, transform 0.5s ease'; |
| observer.observe(card); |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ |
| behavior: 'smooth' |
| }); |
| }); |
| }); |
| }); |
| </script> |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=lepeleton/xcc2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |