/* Service Page Specific Styles */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero .hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-hero .hero-content p {
    font-size: 14px;
    opacity: 0.95;
}

/* Overview Section */
.service-overview {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.overview-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Services Detailed Section */
.services-detailed {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateX(8px);
}

.service-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Approach Section */
.approach {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff5722 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Technology Stack Section */
.tech-stack {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-category {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
}

.tech-category h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tech-category ul {
    list-style: none;
}

.tech-category li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.tech-category li:last-child {
    border-bottom: none;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.use-case-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.use-case-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.use-case-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-section .cta-button:hover {
    background-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Modernization Patterns Section */
.modernization-patterns {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pattern-card {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.05) 0%, rgba(0, 61, 153, 0.05) 100%);
    padding: 35px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.pattern-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.15);
    transform: translateY(-4px);
}

.pattern-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pattern-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-item {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Cloud Platforms Section */
.cloud-platforms {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.platform-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 87, 34, 0.05) 100%);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
}

.platform-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.platform-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.migration-strategies {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

/* Analytics Capabilities Section */
.analytics-capabilities {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.capability-card {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08) 0%, rgba(0, 61, 153, 0.08) 100%);
    padding: 35px;
    border-radius: 8px;
    border-right: 4px solid var(--primary-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateX(-8px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.15);
}

.capability-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.capability-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* DevSecOps Practices Section */
.devsecops-practices {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.practice-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    border-top: 4px solid #e74c3c;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.15);
}

.practice-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.practice-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Security Testing Levels Section */
.testing-levels {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

/* Security Pillars Section */
.security-pillars {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pillar-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.15);
}

.pillar-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pillar-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Managed Services Section */
.managed-services {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

/* Technology Expertise Section */
.tech-expertise {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.expertise-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.15);
}

.expertise-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.expertise-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Engineering Models Section */
.engineering-models {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero .hero-content h1 {
        font-size: 32px;
    }

    .overview-content h2 {
        font-size: 28px;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-item {
        padding: 20px;
    }

    .approach-steps {
        gap: 20px;
    }

    .step {
        padding: 25px;
    }

    .tech-grid {
        gap: 25px;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .service-hero .hero-content h1 {
        font-size: 24px;
    }

    .service-hero .hero-content p {
        font-size: 16px;
    }

    .overview-content h2 {
        font-size: 22px;
    }

    .overview-content p {
        font-size: 14px;
    }

    .service-item {
        flex-direction: column;
        gap: 15px;
    }

    .service-number {
        min-width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .service-item h3 {
        font-size: 16px;
    }

    .step {
        padding: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 15px;
    }
}
