/* Data Analytics Section Styles */
.data-analytics-section {
    background: linear-gradient(135deg, var(--brand-teal-950) 0%, var(--brand-teal-900) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.data-analytics-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image:
        linear-gradient(rgba(94, 234, 212, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94, 234, 212, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.data-analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.data-content h2 {
    color: white;
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.data-content .subtitle {
    font-family: 'Merriweather', serif;
    color: var(--brand-teal-200);
    font-size: 1.25rem;
    margin-bottom: 32px;
    display: block;
}

.data-content p {
    color: var(--brand-teal-50);
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.tech-stack {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.tech-item span {
    font-weight: 600;
    color: var(--brand-teal-100);
}

.dashboard-showcase {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 500px;
    position: relative;
}

.dashboard-img {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(94, 234, 212, 0.3);
    overflow: hidden;
    transition: all 0.5s ease;
}

.dashboard-img:hover {
    z-index: 10;
    transform: scale(1.05);
    border-color: var(--brand-teal-300);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dashboard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specific positioning for the collage */
.dash-1 {
    grid-column: 1 / 9;
    grid-row: 2 / 10;
    z-index: 1;
}

.dash-2 {
    grid-column: 6 / 13;
    grid-row: 5 / 13;
    z-index: 2;
}

.dash-3 {
    grid-column: 8 / 13;
    grid-row: 1 / 6;
    z-index: 3;
    transform: translateY(-20px);
}

/* Responsive */
@media (max-width: 968px) {
    .data-analytics-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dashboard-showcase {
        height: 400px;
    }
}