Section 4 : us left side image design pattern
Browse files- index.html +17 -8
- style.css +12 -0
index.html
CHANGED
|
@@ -358,18 +358,27 @@ class="inline-flex items-center text-[#002060] hover:text-[#8DC63F] px-3 py-2 te
|
|
| 358 |
<p class="text-lg text-gray-700">VLC's product portfolio supports configurable security controls tailored to individual business requirements. Sensitive customer information is protected using strong encryption standards that align with enterprise and regulatory expectations.</p>
|
| 359 |
</div>
|
| 360 |
</section>
|
| 361 |
-
|
| 362 |
<!-- Section 4: Monitoring & Data Protection -->
|
| 363 |
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-[var(--vlc-tint)]">
|
| 364 |
-
<div class="max-w-
|
| 365 |
-
<
|
| 366 |
-
|
| 367 |
-
|
| 368 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 369 |
</div>
|
| 370 |
</section>
|
| 371 |
-
|
| 372 |
-
<!-- Section 5: Disaster Recovery -->
|
| 373 |
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
|
| 374 |
<div class="max-w-4xl mx-auto" data-aos="fade-up">
|
| 375 |
<h2 class="text-3xl font-bold text-[var(--vlc-navy)] mb-6">Disaster Recovery</h2>
|
|
|
|
| 358 |
<p class="text-lg text-gray-700">VLC's product portfolio supports configurable security controls tailored to individual business requirements. Sensitive customer information is protected using strong encryption standards that align with enterprise and regulatory expectations.</p>
|
| 359 |
</div>
|
| 360 |
</section>
|
|
|
|
| 361 |
<!-- Section 4: Monitoring & Data Protection -->
|
| 362 |
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-[var(--vlc-tint)]">
|
| 363 |
+
<div class="max-w-6xl mx-auto" data-aos="fade-up">
|
| 364 |
+
<div class="flex flex-col md:flex-row gap-12 items-center">
|
| 365 |
+
<div class="md:w-1/2 relative">
|
| 366 |
+
<div class="absolute -inset-4 bg-[var(--vlc-leaf)] opacity-10 rounded-xl"></div>
|
| 367 |
+
<div class="absolute -inset-2 border-2 border-[var(--vlc-leaf)] border-dashed rounded-lg opacity-30"></div>
|
| 368 |
+
<img src="http://static.photos/technology/1024x576/43" alt="Data Monitoring Dashboard" class="relative rounded-lg shadow-lg w-full z-10">
|
| 369 |
+
</div>
|
| 370 |
+
<div class="md:w-1/2">
|
| 371 |
+
<h2 class="text-3xl font-bold text-[var(--vlc-navy)] mb-6">Monitoring and Data Protection</h2>
|
| 372 |
+
<p class="text-lg text-gray-700 mb-6">Comprehensive monitoring is embedded throughout our application stack and infrastructure layers. Centralized oversight enables real-time alerts, rapid detection of anomalies, and immediate response to potential risks.</p>
|
| 373 |
+
<p class="text-lg text-gray-700 mb-8">Our data protection strategy follows a layered and resilient backup architecture. Critical customer data is captured through daily snapshots stored across multiple secure repositories. Backup logs are reviewed routinely, with scheduled monthly archives maintained for long-term retention. Recovery processes are tested on a recurring basis to ensure data restoration remains dependable.</p>
|
| 374 |
+
<a href="./contact-us.html" class="btn-primary px-6 py-3 rounded-md text-lg font-semibold inline-flex items-center gap-2">
|
| 375 |
+
Learn About Our Monitoring <i data-feather="eye" class="w-5 h-5"></i>
|
| 376 |
+
</a>
|
| 377 |
+
</div>
|
| 378 |
+
</div>
|
| 379 |
</div>
|
| 380 |
</section>
|
| 381 |
+
<!-- Section 5: Disaster Recovery -->
|
|
|
|
| 382 |
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
|
| 383 |
<div class="max-w-4xl mx-auto" data-aos="fade-up">
|
| 384 |
<h2 class="text-3xl font-bold text-[var(--vlc-navy)] mb-6">Disaster Recovery</h2>
|
style.css
CHANGED
|
@@ -4,6 +4,18 @@ body {
|
|
| 4 |
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
| 5 |
}
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
@media (max-width: 767px) {
|
| 8 |
.flex-col.md\:flex-row > div {
|
| 9 |
width: 100% !important;
|
|
|
|
| 4 |
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
| 5 |
}
|
| 6 |
|
| 7 |
+
/* Pattern overlay for images */
|
| 8 |
+
.img-pattern-overlay {
|
| 9 |
+
position: relative;
|
| 10 |
+
}
|
| 11 |
+
.img-pattern-overlay::before {
|
| 12 |
+
content: "";
|
| 13 |
+
position: absolute;
|
| 14 |
+
inset: -8px;
|
| 15 |
+
background: linear-gradient(135deg, rgba(141,198,63,0.1) 0%, rgba(0,160,233,0.1) 100%);
|
| 16 |
+
border-radius: 12px;
|
| 17 |
+
z-index: 1;
|
| 18 |
+
}
|
| 19 |
@media (max-width: 767px) {
|
| 20 |
.flex-col.md\:flex-row > div {
|
| 21 |
width: 100% !important;
|