/* Page Specific Styles - Analytics & Big Data Theme (Data/Tech) */
.analytics-hero {
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.analytics-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.analytics-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ecfeff;
    /* Cyan 50 */
}

.analytics-text span.highlight {
    color: #22d3ee;
    /* Cyan 400 */
    background: linear-gradient(135deg, #22d3ee, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #cffafe;
    /* Cyan 100 */
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.subtitle strong {
    color: #fff;
}

.analytics-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

/* Abstract Analytics Interface */
.data-dashboard {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 20px;
    padding: 0;
    width: 400px;
    /* Wider for dashboard */
    height: 300px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    transform: rotateY(-10deg) rotateX(5deg);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.data-dashboard:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    border-color: rgba(34, 211, 238, 0.6);
}

.dashboard-screen {
    background: #0f172a;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    height: 100%;
}

.chart-area {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    gap: 5px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #22d3ee, #0891b2);
    border-radius: 4px 4px 0 0;
    animation: growBar 2s ease-out infinite alternate;
}

@keyframes growBar {
    0% {
        height: 20%;
    }

    100% {
        height: 80%;
    }
}

.stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    height: 100%;
    position: relative;
}

.mini-stat::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 40px;
    height: 4px;
    background: #8b5cf6;
    border-radius: 2px;
}

/* Floating elements */
.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #0891b2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(8, 145, 178, 0.4);
    z-index: 10;
}

.float-1 {
    top: -30px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
    background: #06b6d4;
}

.float-2 {
    bottom: -20px;
    left: -20px;
    animation: float 7s ease-in-out infinite reverse;
    background: #7c3aed;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Button Styling - Cyan/Violet Theme */
.btn-neon {
    background: linear-gradient(90deg, #0891b2, #2563eb);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(8, 145, 178, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-neon:hover {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(6, 182, 212, 0.6);
    border-color: rgba(34, 211, 238, 0.5);
}

.btn-secondary-neon {
    background: transparent;
    color: white;
    padding: 0 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 211, 238, 0.5);
    box-shadow: none;
}

.btn-secondary-neon:hover {
    background: linear-gradient(90deg, #0891b2, #2563eb);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(6, 182, 212, 0.6);
}

/* Feature Cards - Cool Blue Overlay */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #ecfeff;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(34, 211, 238, 0.15);
    border-color: #a5f3fc;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #ecfeff;
    color: #0891b2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.feature-desc {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Modules Dark Section (Blue Variant) */
.modules-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #172554 100%);
    position: relative;
    overflow: hidden;
}

.modules-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: #06b6d4;
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    bottom: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite reverse;
}

/* Stats Section */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0891b2;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: #fff;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #ecfeff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #0891b2;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #2563eb;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.step-title {
    font-size: 1.25rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    color: #cbd5e1;
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #22d3ee;
}

.ind-icon {
    color: #22d3ee;
    margin-bottom: 1.5rem;
}

.industry-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.industry-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.industry-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #22d3ee;
    font-weight: bold;
}

/* Enhanced Tech Stack Section */
.tech-stack-section {
    padding: 5rem 0;
    background: #f1f5f9;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
    border-top: 1px solid #e2e8f0;
}

.tech-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tech-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1rem;
    flex-wrap: wrap;
    /* Safety for small screens */
}

.cat-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.i-ai {
    background: #e0e7ff;
    color: #4338ca;
}

.i-data {
    background: #dbeafe;
    color: #1e40af;
}

.i-bi {
    background: #fce7f3;
    color: #be185d;
}

.i-cloud {
    background: #ccfbf1;
    color: #0f766e;
}

.category-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 700;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-chip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.tech-chip:hover {
    background: #fff;
    border-color: #94a3b8;
    color: #0f172a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tech-chip::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
}

.tech-category-card:hover .tech-chip::before {
    background: #22d3ee;
    box-shadow: 0 0 5px #22d3ee;
}

/* Responsive for Process */
@media (max-width: 991px) {
    .analytics-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .analytics-text h1 {
        font-size: 3rem;
    }

    .subtitle {
        margin: 0 auto 2rem;
    }

    .analytics-visual {
        width: 100%;
        margin-top: 2rem;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 0;
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .analytics-hero {
        padding: 6rem 0 4rem;
    }

    .analytics-text h1 {
        font-size: 2.5rem;
    }

    .data-dashboard {
        width: 100%;
        max-width: 350px;
        transform: none !important;
    }
}