/* 11B Premium Design Upgrades */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* Typography overrule */
h1, h2, h3, h4, h5, h6, .lato {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}

body, p, span, a, li, input, button, textarea {
    font-family: 'Inter', sans-serif !important;
}

/* Glassmorphism Navbar */
.navbar.fixed-top {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease-in-out;
}

/* Premium Card Upgrades (Our Program & Features) */
.card.border-1.bg-card {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.02) !important;
    border-radius: 16px !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease !important;
    overflow: hidden;
}

.card.border-1.bg-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 30px -4px rgba(0, 102, 255, 0.08) !important;
    border-color: rgba(0, 102, 255, 0.3) !important;
}

/* Blurry Shape drifting animations */
@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(3%, 4%) scale(1.03); }
    100% { transform: translate(0, 0) scale(1); }
}

.blurry-shape img, .striped-shape img {
    animation: floatShape 16s ease-in-out infinite !important;
}

/* Sleek Linear Gradients for accent panels */
.bg-lite-blue {
    background: linear-gradient(135deg, #f3f6ff 0%, #fbf9ff 100%) !important;
    border: 1px solid rgba(0, 102, 255, 0.06) !important;
    border-radius: 24px !important;
}

/* Buttons visual polish */
.btn-primary {
    border-radius: 10px !important;
    font-weight: 600 !important;
    padding: 12px 28px !important;
    box-shadow: 0 4px 14px 0 rgba(0, 102, 255, 0.2) !important;
    transition: all 0.2s ease !important;
}
.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px 0 rgba(0, 102, 255, 0.3) !important;
}
.btn-secondary {
    border-radius: 10px !important;
    font-weight: 600 !important;
    padding: 12px 28px !important;
    transition: all 0.2s ease !important;
}
.btn-secondary:hover {
    transform: translateY(-2px) !important;
}

/* Custom Stepper for Our Solutions */
.stepper-container {
    position: relative;
    padding: 3rem 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #f3f6ff 0%, #fbf9ff 100%);
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.stepper-line {
    position: absolute;
    top: 60px; /* Aligned with the center of the step-circle */
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.3) 50%, rgba(0, 102, 255, 0.05) 100%);
    border-radius: 2px;
    z-index: 0;
}

.step-node {
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-node:hover {
    transform: translateY(-5px);
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(0, 102, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0066ff;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

.step-node:hover .step-circle {
    background: #0066ff;
    color: #ffffff;
    border-color: #0066ff;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
    transform: scale(1.08);
}

.step-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #10355a;
    margin-bottom: 0.25rem;
}

.step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #6c757d;
}

