/* services.css */

:root {
    --orange: #FF6700;
    --dark-bg: #111111;
    --light-bg: #F9FAFB;
    --text-light: #F9FAFB;
    --text-dark: #1F2937;
    --text-subtle: #6B7280;
    --border-light: #E5E7EB;
}

body { font-family: 'Inter', sans-serif; background-color: var(--light-bg); margin: 0; color: var(--text-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; max-width: 70ch; margin: 0 auto 4rem auto; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 1rem 0; }
.section-header p { font-size: 1.1rem; color: var(--text-subtle); margin: 0; }

/* --- 1. HERO SECTION --- */
.hero-services-section {
    background-color: var(--dark-bg); color: var(--text-light); text-align: center;
    padding: 8rem 2rem; position: relative; overflow: hidden;
}
.hero-services-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 103, 0, 0.15) 0%, transparent 30%),
                      radial-gradient(circle at 80% 90%, rgba(255, 103, 0, 0.1) 0%, transparent 40%);
    opacity: 0.5;
}
.hero-services-section h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin: 0 0 1rem 0; }
.hero-services-section p { font-size: 1.25rem; color: #9CA3AF; max-width: 60ch; margin: 0 auto; }

/* --- 2. SERVICES GRID --- */
.services-grid-section { padding: 8rem 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.service-card {
    background-color: white; padding: 2.5rem; border: 1px solid var(--border-light);
    border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1); }
.service-icon {
    width: 60px; height: 60px; margin-bottom: 1.5rem;
    background-color: #FFF7F0; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.service-icon svg {
    width: 32px; height: 32px; color: var(--orange);
}
.service-card h3 { font-size: 1.5rem; margin: 0 0 0.5rem 0; }
.service-card p { color: var(--text-subtle); line-height: 1.6; margin: 0; }

/* services.css (Replace the old process section CSS with this) */

/* --- 3. PROCESS SECTION (2x2 GRID REWRITE) --- */
.process-section {
    padding: 8rem 2rem;
    background-color: white;
}

.process-section .section-header {
    margin-bottom: 5rem;
}

.process-list {
    max-width: 1100px; /* Widen the container for a grid layout */
    margin: 0 auto;
    display: grid;
    /* CHANGED: This creates the 2-column grid */
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.process-item {
    /* CHANGED: Text is now left-aligned within each card */
    text-align: left;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
}

.process-item h3 {
    font-size: 1.75rem; /* Slightly smaller for the card layout */
    font-weight: 600;
    margin: 0 0 1rem 0;
    display: flex;
    /* CHANGED: Number is now next to the title */
    align-items: center;
    gap: 1rem;
}

.step-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--orange);
    /* Add a subtle background for the number */
    background-color: #FFF7F0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-item p {
    color: var(--text-subtle);
    line-height: 1.7;
    margin: 0;
}

/* --- RESPONSIVE STYLES FOR THE GRID --- */
@media (max-width: 768px) {
    .process-list {
        /* CHANGED: Stack to a single column on mobile */
        grid-template-columns: 1fr;
    }
}

/* --- 4. INDUSTRIES SECTION --- */
.industries-section { padding: 8rem 0; text-align: center; overflow: hidden; }
.industry-scroller { display: flex; width: max-content; }
.industry-list {
    display: flex; gap: 3rem; font-size: 1.5rem; font-weight: 600;
    color: #D1D5DB; animation: scroll 40s linear infinite;
}
.industry-list span { flex-shrink: 0; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- 5. FINAL CTA --- */
.final-cta-section {
    background-color: var(--dark-bg); color: var(--text-light);
    padding: 10rem 2rem; text-align: center;
    position: relative; overflow: hidden;
}
.cta-bg-circle {
    position: absolute;
    top: 50%; left: 50%;
    width: 100px; height: 100px;
    background-color: var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 1;
}
.final-cta-section .container { position: relative; z-index: 2; }
.final-cta-section h2 { font-size: clamp(2.5rem, 6vw, 4rem); margin: 0 0 2rem 0; }
.cta-button {
    background-color: var(--light-bg); color: var(--text-dark);
    padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none;
    font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease;
}
.cta-button:hover { transform: scale(1.05); }

