/* Solutions Hero Section */
.solutions-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.solutions-hero-title {
    color: var(--primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solutions-hero-description {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Solutions Overview */
.solutions-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Category Navigation */
.category-navigation {
    margin-bottom: 40px;
    position: relative;
}

.category-tabs {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    -ms-overflow-style: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    background: white;
    border: 2px solid var(--primary-light);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.category-tab:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.category-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Solutions Grid */
.solutions-grid {
    position: relative;
}

.solution-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.solution-category.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Category Header */
.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-title {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.category-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Solution Cards */
.solution-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-light);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 28px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.solution-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-title {
    color: var(--primary-dark);
}

.solution-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.solution-card:hover .feature-tag {
    background: var(--primary);
    color: white;
}

.solution-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.solution-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

.why-choose-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--primary-light);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-description {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-light);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Additional Services */
.additional-services {
    margin-top: 80px;
}

.additional-service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.additional-service-card .service-icon {
    margin: 0 auto 20px;
}

.additional-service-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.additional-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}


/* Responsive Adjustments */
@media (max-width: 991px) {
    .solutions-hero {
        padding: 60px 0;
    }

    .solutions-hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px;
    }

    .solution-card {
        padding: 25px;
    }

    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .category-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .solutions-hero-title {
        font-size: 2rem;
    }

    .solutions-hero-description {
        font-size: 1.1rem;
    }

    .solutions-overview {
        padding: 60px 0;
    }

    .category-tabs {
        gap: 10px;
    }

    .category-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .solution-card {
        padding: 20px;
    }

    .solution-title {
        font-size: 1.3rem;
    }

    .solution-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .solutions-hero {
        padding: 40px 0;
    }

    .services-section {
        padding: 40px 0;
    }

    .service-card {
        padding: 20px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .solutions-overview {
        padding: 40px 0;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .category-description {
        font-size: 1rem;
    }

    .solution-card {
        padding: 15px;
    }

    .solution-title {
        font-size: 1.2rem;
    }

    .solution-description {
        font-size: 0.9rem;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    .solution-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
} 