/* Hero Section */
.automation-hero {
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    padding: 100px 0;
    text-align: center;
}

.automation-hero .section-title h1,
.automation-hero .section-title p {
    color: #ffffff !important; /* Force white text */
}

/* Process Section */
.automation-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
}

.automation-process .section-title h2,
.automation-process .section-title p {
    color: #ffffff !important; /* Force white text aa */
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Solutions Section Title */
.automation-solutions .section-title h2 {
    color: #1e3a8a !important; /* Dark blue color */
}

.automation-solutions .section-title p {
    color: #64748b !important; /* Darker gray for subtitle */
}

/* Solutions Grid */
.automation-solutions {
    padding: 80px 0;
    background: #ffffff; /* Ensure white background */
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.solution-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.solution-card ul li {
    padding: 5px 0;
    color: var(--text);
}

.solution-card ul li:before {
    content: "•";
    color: var(--accent);
    padding-right: 10px;
}

/* Benefits Section */
.automation-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.benefit h4 {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 10px;
}

/* CTA Section */
.automation-cta {
    padding: 80px 0;
    background: var(--accent);
    color: white;
    text-align: center;
    color: #ffffff !important;
}
.cta-content h2,
.cta-content p {
    color: #ffffff !important;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: var(--accent);
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-steps,
    .solutions-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .step,
    .solution-card {
        padding: 20px;
    }
    
    .step-number {
        font-size: 36px;
    }
    
    .benefit h4 {
        font-size: 36px;
    }
} 