/* Cloud Architecture & DevOps Page Specific Styles */

/* Re-import Poppins if not inherited or to ensure specificity */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Specific gradient text for this service page (purple theme) */
.service-gradient-text-purple {
    background: linear-gradient(90deg, #a855f7, #d946ef); /* purple-500 to fuchsia-500 */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Header styles (adjust if different from custom-software-engineering page) */
header.pt-24 { /* Using class from HTML for specificity */
    padding-top: 8rem; /* Tailwind's pt-24 is 6rem, navbar is h-16 (4rem), so need more space */
    padding-bottom: 4rem; /* Tailwind's pb-16 */
}

/* Card hover effect (can be shared or specific) */
.hover-lift {
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Section heading underline style (consistent with other service page) */
.content-section h2 {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem; /* Default, can be overridden by Tailwind mb-* on the h2 itself */
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #d946ef); /* Purple gradient for this page */
    border-radius: 2px;
}

/* For left-aligned headings if preferred for some sections */
.content-section h2.text-left::after {
    left: 0;
    transform: translateX(0);
}

/* Offset for fixed navbar when scrolling to anchor links */
#process, #key-offerings, #case-studies, #technologies, #why-aymenox, #faq, #contact-cta, #overview {
    scroll-margin-top: 5rem; /* Adjust as needed, navbar is h-16 (4rem) */
}

/* Add more specific styles for the Cloud & DevOps page below as sections are built out */
/* e.g., .process-timeline-cloud, .faq-item-cloud */