/* NEXITENCE TECHNOLOGY LLP - Solutions Page Specific Styles */

/* Hero */
.nexitence-solutions-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nexitence-solutions-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.nexitence-solutions-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nexitence-solutions-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
}

.nexitence-solutions-hero-content {
    text-align: center;
    color: var(--nexitence-white);
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.nexitence-solutions-hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.nexitence-solutions-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Solution Categories */
.nexitence-solution-categories {
    padding: 6rem 0;
    background: var(--nexitence-white);
}

.nexitence-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.nexitence-solution-card {
    background: var(--nexitence-light);
    padding: 2.5rem;
    border-radius: var(--nexitence-border-radius);
    position: relative;
    overflow: hidden;
    box-shadow: var(--nexitence-shadow);
    transition: var(--nexitence-transition);
}

.nexitence-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--nexitence-gradient);
}

.nexitence-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.nexitence-solution-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nexitence-gradient);
    border-radius: 50%;
    color: var(--nexitence-white);
    font-size: 1.75rem;
}

.nexitence-solution-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nexitence-dark);
    margin-bottom: 0.75rem;
}

.nexitence-solution-description {
    color: var(--nexitence-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.nexitence-solution-features {
    list-style: none;
}

.nexitence-solution-features li {
    color: var(--nexitence-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9rem;
}

.nexitence-solution-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--nexitence-primary);
}

/* Reference Architecture */
.nexitence-architecture {
    padding: 6rem 0;
    background: var(--nexitence-light);
}

.nexitence-architecture-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.nexitence-architecture-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--nexitence-border-radius);
    box-shadow: var(--nexitence-shadow);
}

.nexitence-architecture-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.nexitence-arch-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--nexitence-white);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.nexitence-arch-point i {
    color: var(--nexitence-primary);
}

.nexitence-arch-point span {
    font-weight: 600;
    color: var(--nexitence-dark);
}

/* Success Stories */
.nexitence-case-stories {
    padding: 6rem 0;
    background: var(--nexitence-white);
}

.nexitence-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.nexitence-case-card {
    background: var(--nexitence-light);
    border-radius: var(--nexitence-border-radius);
    overflow: hidden;
    transition: var(--nexitence-transition);
    position: relative;
}

.nexitence-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.nexitence-case-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.nexitence-case-info {
    padding: 1.25rem 1.5rem 1.75rem;
}

.nexitence-case-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--nexitence-dark);
    margin-bottom: 0.5rem;
}

.nexitence-case-description {
    color: var(--nexitence-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Support */
.nexitence-support {
    padding: 6rem 0;
    background: var(--nexitence-light);
}

.nexitence-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.nexitence-support-card {
    background: var(--nexitence-white);
    padding: 2rem;
    border-radius: var(--nexitence-border-radius);
    box-shadow: var(--nexitence-shadow);
    text-align: center;
    transition: var(--nexitence-transition);
    position: relative;
    overflow: hidden;
}

.nexitence-support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--nexitence-gradient);
}

.nexitence-support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.nexitence-support-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nexitence-gradient);
    border-radius: 50%;
    color: var(--nexitence-white);
    font-size: 1.75rem;
}

.nexitence-support-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nexitence-dark);
    margin-bottom: 0.5rem;
}

.nexitence-support-description {
    color: var(--nexitence-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nexitence-solutions-hero-title { font-size: 2.5rem; }

    .nexitence-architecture-layout {
        grid-template-columns: 1fr;
    }

    .nexitence-architecture-img {
        height: 340px;
    }
}
