/* =================================================================
   Digital Transformation Service Page - Custom Styles
   ================================================================= */

/* Offering Detail Sections */
.offering-detail {
    background: #fff;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.offering-detail:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.offering-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.offering-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5f8d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.offering-header h3 {
    color: #1e3a5f;
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.offering-tagline {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
    font-style: italic;
}

.offering-content {
    color: #555;
    line-height: 1.8;
}

.offering-content h4 {
    color: #1e3a5f;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.offering-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.offering-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.offering-features li:last-child {
    border-bottom: none;
}

.offering-features li i {
    color: #28a745;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.offering-features li strong {
    color: #1e3a5f;
}

/* Tech Stack Badges */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1e3a5f;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5f8d 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.tech-badge i {
    font-size: 0.8rem;
    color: #28a745;
}

.tech-badge:hover i {
    color: #fff;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.benefit-card h5 {
    color: #1e3a5f;
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-item i {
    font-size: 2rem;
    color: #1e3a5f;
    flex-shrink: 0;
}

.feature-item h5 {
    color: #1e3a5f;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    margin: 3rem 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5f8d 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.process-content {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-content:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateX(10px);
}

.process-content h3 {
    color: #1e3a5f;
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.process-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.industry-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.industry-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
    border-color: #1e3a5f;
}

.industry-card i {
    font-size: 3rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.industry-card h3 {
    color: #1e3a5f;
    font-size: 1.3rem;
    margin: 1rem 0;
    font-weight: 600;
}

.industry-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.metric-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5f8d 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.2);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0.5rem 0 1rem 0;
    opacity: 0.9;
}

.metric-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
}

/* Why Choose Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.why-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.why-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
    border-color: #1e3a5f;
}

.why-card i {
    font-size: 3rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    color: #1e3a5f;
    font-size: 1.3rem;
    margin: 1rem 0;
    font-weight: 600;
}

.why-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .offering-detail {
        padding: 2rem;
    }
    
    .offering-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
    }
    
    .process-content:hover {
        transform: translateY(-5px);
    }
    
    .benefits-grid,
    .features-list,
    .industry-grid,
    .metrics-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-stack {
        justify-content: center;
    }
}
