/* Solutions Page Specific Styles */

/* Solutions Hero Section */
.solutions-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4A90E2 100%);
    padding: 120px 0 30px;
    text-align: center;
    color: white;
    min-height: 160px;
    display: flex;
    align-items: center;
}

.solutions-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.solutions-hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.solutions-hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Solutions Overview */
.solutions-overview {
    padding: 60px 0;
    background: #f8f9fa;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-card-image {
    height: 250px;
    overflow: hidden;
}

.solution-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-card-image img {
    transform: scale(1.05);
}

.solution-card-content {
    padding: 30px;
}

.solution-card-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.solution-card-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.solution-card-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.solution-card-btn:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2c5aa0 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
    color: white;
    text-decoration: none;
}

/* Solution Details */
.solution-details {
    padding: 80px 0;
    background: white;
}

.solution-detail {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-detail.active {
    display: block;
    opacity: 1;
}

.solution-detail-title {
    font-size: 36px;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 40px;
    text-align: center;
}

.solution-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.solution-detail-text h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    margin-top: 30px;
}

.solution-detail-text h3:first-child {
    margin-top: 0;
}

.solution-features,
.solution-applications {
    list-style: none;
    padding: 0;
}

.solution-features li,
.solution-applications li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.solution-features li:before,
.solution-applications li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: bold;
    font-size: 18px;
}

.solution-detail-image {
    text-align: center;
}

.solution-detail-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Solutions CTA */
.solutions-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #4A90E2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.cta-btn.primary {
    background: white;
    color: #2c5aa0;
}

.cta-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-2px);
}

/* Active Navigation */
.nav-menu a.active {
    color: #4A90E2;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solutions-hero {
        padding: 115px 0 25px;
        min-height: 140px;
    }
    
    .solutions-overview {
        padding: 50px 0;
    }
    
    .solutions-hero-title {
        font-size: 30px;
    }
    
    .solutions-hero-subtitle {
        font-size: 16px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-detail-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .solutions-hero {
        padding: 130px 0 30px;
        min-height: 300px;
    }
    
    .solutions-overview {
        padding: 60px 0;
    }
    
    .solutions-hero-title {
        font-size: 26px;
    }
    
    .solutions-hero-subtitle {
        font-size: 15px;
    }
    
    .solution-card-content {
        padding: 20px;
    }
    
    .solution-detail-title {
        font-size: 24px;
    }
    
    .solution-detail-text h3 {
        font-size: 20px;
    }
} 