<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Cloud Data &amp; Analytics Specific Styles */
:root {
    --primary-color: #0073ec;
}

/* Colors Bar */
.cloud-colors-bar {
    height: 5px;
    background: linear-gradient(to right, #4285f4, #0073ec, #34a853, #ea4335);
}

/* Gradient Background */
.data-gradient {
    background: linear-gradient(135deg, #0073ec, #4285f4);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 0;
    height: auto;
}

.hero-background {
    background-image: url('https://images.pexels.com/photos/5716001/pexels-photo-5716001.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1260&amp;h=750&amp;dpr=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    background-color: rgba(0, 115, 236, 0.85); /* Primary color with opacity */
    width: 100%;
    height: 100%;
    padding: 13rem 6rem;
}

.hero-section h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.primary-btn {
    background-color: #0073ec;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #0062cc;
    color: white;
}

.outline-btn {
    background-color: transparent;
    color: #0073ec;
    border: 2px solid #0073ec;
    transition: all 0.3s ease;
}

.outline-btn:hover {
    background-color: #0073ec;
    color: white;
}

.outline-btn-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.outline-btn-light:hover {
    background-color: white;
    color: #0073ec;
}

/* Service Cards */
.service-card {
    border: 1px solid rgba(0, 115, 236, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-icon.blue {
    background-color: #4285f4;
}

.service-icon.purple {
    background-color: #0073ec;
}

.service-icon.green {
    background-color: #34a853;
}

.service-icon.red {
    background-color: #ea4335;
}

.service-icon.orange {
    background-color: #ff9800;
}

.service-icon.teal {
    background-color: #009688;
}

/* Feature Icons */
.feature-icon {
    margin-bottom: 20px;
    color: #0073ec;
}

/* Stand Out Section */
.stand-out-section .card {
    transition: all 0.3s ease;
}

.stand-out-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Case Study Cards */
.case-study-card {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.case-study-date {
    font-size: 0.9rem;
}

/* Related Services */
.related-service-card {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* FAQ Section */
.faq-card {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    padding: 15px 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background-color: #e9ecef;
}

.faq-header h6 {
    margin: 0;
    font-weight: 600;
}

.faq-header i {
    transition: transform 0.3s ease;
}

.faq-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.card-body {
    padding: 20px;
}

/* Contact Form */
.contact-form label {
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 6px;
}

.contact-form textarea {
    min-height: 120px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-overlay {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-overlay {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

:root {
    --primary-color: #0073ec;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}</pre></body></html>