@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f9;
}

/* Custom gradient for the hero section */
.hero-gradient {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    /* Dark Blue to Bright Blue */
}

/* Custom gradient for feature backgrounds */
.feature-gradient {
    background: linear-gradient(145deg, #ffffff, #e0f2f7);
    /* Light Blue to White subtle gradient */
}

/* Gradient for buttons and highlights */
.primary-gradient {
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    transition: all 0.3s ease;
}

.primary-gradient:hover {
    opacity: 0.9;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.5);
}

/* Tech Stack Visualization */
.tech-layer {
    transition: all 0.3s ease;
}

.tech-layer:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* NEW: Workflow Flow Styling */
.workflow-flow {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.flow-card {
    position: relative;
    z-index: 10;
}

/* Mock Pie Chart Styling (minimal representation) */
.pie-chart {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: conic-gradient(#ef4444 0% 20%,
            #3b82f6 20% 100%);
}

/* Mock Content Gap Chart Styling */
.gap-chart-mock {
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 10px 0;
    border-bottom: 1px solid #4b5563;
    /* gray-600 */
}

.gap-bar-low {
    width: 20%;
    background-color: #b91c1c;
    /* red-700 */
    text-align: center;
    color: white;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gap-bar-high {
    width: 50%;
    background-color: #059669;
    /* emerald-600 */
    text-align: center;
    color: white;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}