This commit is contained in:
Flatlogic Bot 2025-09-16 09:51:53 +00:00
parent d90593c88d
commit 6342f25a1a
3 changed files with 25 additions and 45 deletions

View File

@ -190,25 +190,11 @@ h2.section-title {
Case Study & Testimonials Pages
--- */
.card-link {
text-decoration: none;
color: inherit;
display: block;
.card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
}
.card-link::after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
}
.card-link:hover .card {
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(187, 134, 252, 0.15);
}

View File

@ -46,42 +46,36 @@
<div class="row">
<!-- Case Study 1 -->
<div class="col-md-6 col-lg-4 mb-4">
<a href="case-study-detail.php?id=1" class="card-link">
<div class="card h-100">
<img src="https://picsum.photos/seed/erp-success/800/600" class="card-img-top" alt="Abstract visualization of a successful global ERP network.">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Global ERP Implementation for a Fortune 500 Company</h5>
<p class="card-text flex-grow-1">A multinational corporation needed to unify its disparate legacy systems into a single, modern ERP platform across four continents.</p>
<span class="btn btn-outline-primary mt-auto">Read More</span>
</div>
<div class="card h-100">
<img src="https://picsum.photos/seed/erp-success/800/600" class="card-img-top" alt="Abstract visualization of a successful global ERP network.">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Global ERP Implementation for a Fortune 500 Company</h5>
<p class="card-text flex-grow-1">A multinational corporation needed to unify its disparate legacy systems into a single, modern ERP platform across four continents.</p>
<a href="case-study-detail.php?id=1" class="btn btn-outline-primary mt-auto">Read More</a>
</div>
</a>
</div>
</div>
<!-- Case Study 2 -->
<div class="col-md-6 col-lg-4 mb-4">
<a href="case-study-detail.php?id=2" class="card-link">
<div class="card h-100">
<img src="https://picsum.photos/seed/fintech-app/800/600" class="card-img-top" alt="A sleek smartphone displaying a modern FinTech application interface.">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Launch of a High-Growth FinTech Mobile App</h5>
<p class="card-text flex-grow-1">A startup aimed to disrupt the personal finance space with a new mobile app, needing to go from concept to MVP in just four months.</p>
<span class="btn btn-outline-primary mt-auto">Read More</span>
</div>
<div class="card h-100">
<img src="https://picsum.photos/seed/fintech-app/800/600" class="card-img-top" alt="A sleek smartphone displaying a modern FinTech application interface.">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Launch of a High-Growth FinTech Mobile App</h5>
<p class="card-text flex-grow-1">A startup aimed to disrupt the personal finance space with a new mobile app, needing to go from concept to MVP in just four months.</p>
<a href="case-study-detail.php?id=2" class="btn btn-outline-primary mt-auto">Read More</a>
</div>
</a>
</div>
</div>
<!-- Case Study 3 -->
<div class="col-md-6 col-lg-4 mb-4">
<a href="case-study-detail.php?id=3" class="card-link">
<div class="card h-100">
<img src="https://picsum.photos/seed/luxury-hotel/800/600" class="card-img-top" alt="Elegant lobby of a luxury hotel, reflecting a unified and premium brand identity.">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Cross-Platform Brand Unification for a Luxury Hotel Group</h5>
<p class="card-text flex-grow-1">A prestigious hotel chain had an inconsistent digital presence across their website, mobile app, and booking engine.</p>
<span class="btn btn-outline-primary mt-auto">Read More</span>
</div>
<div class="card h-100">
<img src="https://picsum.photos/seed/luxury-hotel/800/600" class="card-img-top" alt="Elegant lobby of a luxury hotel, reflecting a unified and premium brand identity.">
<div class="card-body d-flex flex-column">
<h5 class="card-title">Cross-Platform Brand Unification for a Luxury Hotel Group</h5>
<p class="card-text flex-grow-1">A prestigious hotel chain had an inconsistent digital presence across their website, mobile app, and booking engine.</p>
<a href="case-study-detail.php?id=3" class="btn btn-outline-primary mt-auto">Read More</a>
</div>
</a>
</div>
</div>
</div>
</div>

View File

@ -6,7 +6,7 @@ $case_studies = [
'image' => 'https://picsum.photos/seed/erp-success/1200/700',
'alt' => 'Abstract visualization of a successful global ERP network.',
'challenge' => 'A multinational corporation with over 10,000 employees across four continents needed to unify its disparate legacy systems into a single, modern ERP platform. The primary challenges were ensuring zero downtime during migration, managing data integrity, and training a culturally diverse workforce.',
'solution' => 'We orchestrated a phased, 18-month rollout strategy, beginning with a comprehensive business process analysis. A cross-functional team of over 50 specialists was managed across multiple time zones. We implemented a 'train-the-trainer' program to empower regional leaders and developed a custom data migration tool to ensure 99.99% accuracy.',
'solution' => 'We orchestrated a phased, 18-month rollout strategy, beginning with a comprehensive business process analysis. A cross-functional team of over 50 specialists was managed across multiple time zones. We implemented a \'train-the-trainer\' program to empower regional leaders and developed a custom data migration tool to ensure 99.99% accuracy.',
'result' => 'The project was delivered on time and 5% under budget. The unified ERP system resulted in a 20% increase in operational efficiency, a 15% reduction in reporting time, and provided a single source of truth for global operations. The client experienced zero critical downtime during the entire migration process.',
'testimonial' => [
'quote' => 'Their coordination across time zones was flawless. They didn't just manage a project; they became a strategic partner in our global transformation.',
@ -139,4 +139,4 @@ $study = $case_studies[$id];
<!-- Bootstrap 5 JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
</html>