/* Infrastructure and Managed Services page styles */
.infrastructure-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.infrastructure-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}


.hero-intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-intro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.features-section,
.solutions-section,
.summary-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.features-grid.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.1));
}

.feature-icon.primary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(79, 70, 229, 0.2));
    color: #6366f1;
}

.feature-icon.secondary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    color: #10b981;
}

.feature-icon.tertiary {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(190, 24, 93, 0.2));
    color: #ec4899;
}

.feature-icon.quaternary {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
    color: #f59e0b;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .solutions-grid,
    .features-grid,
    .features-grid.four-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-grid,
    .features-grid,
    .features-grid.four-columns {
        grid-template-columns: 1fr;
    }
}

.solution-card {
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.2);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

.process-section {
    padding: 80px 0;
    background-color: rgba(15, 23, 42, 0.4);
}

.process-steps {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: linear-gradient(to bottom,
    #6366f1,
    #10b981,
    #ec4899,
    #4f46e5);
    height: calc(100% - 60px);
    margin-top: 30px;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.process-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, #6366f1, #818cf8);
}

.process-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #818cf8, #10b981);
}

.process-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #10b981, #ec4899);
}

.process-step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #ec4899, #4f46e5);
}


.step-content {
    padding-left: 20px;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.benefits-section {
    padding: 80px 0;
}

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

.benefit-card {
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #6366f1;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.summary-section {
    text-align: center;
}

.summary-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.summary-section p {
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
}

.cta {
    padding: 80px 0;
    text-align: center;
    background-color: rgba(15, 23, 42, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-footer {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

/* Button styles are inherited from public.css */
/* Page-specific button icon spacing */
.btn i {
    margin-right: 10px;
}

/* Container styles are inherited from public.css */

@media (max-width: 768px) {
    .infrastructure-hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .process-steps::before {
        display: none;
    }

    .step-content {
        padding-left: 0;
    }

    .step-content h3 {
        background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
        -webkit-background-clip: text;
        background-clip: text;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}