html {
            scroll-behavior: smooth;
        }
@keyframes slowZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}
.animate-slowZoom {
    animation: slowZoom 20s linear infinite alternate;
}

@keyframes gradientMove {
    0% { transform: translateX(-10%); }
    100% { transform: translateX(10%); }
}
.animate-gradientMove {
    animation: gradientMove 8s ease-in-out infinite alternate;
}

.line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #3b82f6, transparent);
    left: 20%;
    animation: moveLine 6s linear infinite;
    opacity: 0.3;
}
.line:nth-child(2) { left: 50%; }
.line:nth-child(3) { left: 80%; }

@keyframes moveLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}
@keyframes slowZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.25); }
}
.animate-slowZoom {
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes gradientMove {
    0% { transform: translateX(-15%); }
    100% { transform: translateX(15%); }
}
.animate-gradientMove {
    animation: gradientMove 10s infinite alternate ease-in-out;
}

#spotlight {
    position:absolute;
    width:300px;
    height:300px;
    background: radial-gradient(circle, rgba(59,130,246,0.3), transparent 70%);
    pointer-events:none;
    border-radius:50%;
    transform:translate(-50%, -50%);
}

.truck {
    position:absolute;
    width:60px;
    opacity:0.7;
}
.truck1 {
    bottom:20%;
    left:-100px;
    animation: moveTruck 18s linear infinite;
}
.truck2 {
    bottom:10%;
    left:-150px;
    animation: moveTruck 25s linear infinite;
}

@keyframes moveTruck {
    0% { transform: translateX(0); }
    100% { transform: translateX(120vw); }
}
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(30px); }
    to { opacity:1; transform:translateY(0); }
}
.animate-fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

@keyframes moveParticles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}
.premium-card {
    position: relative;
    padding: 24px;
    border-radius: 16px;
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59,130,246,0.15);
    border-color: rgba(59,130,246,0.3);
}

.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(59,130,246,0.1), transparent);
    opacity: 0;
    transition: 0.4s;
}

.premium-card:hover::before {
    opacity: 1;
}

.icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 16px;
}

.premium-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.premium-card p {
    font-size: 15px;
    color: #6b7280;
}
.flow-item {
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.flow-item:hover {
    transform: translateY(10px);
}

.circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(59,130,246,0.3);
    transition: all 0.3s ease;
}

.flow-item:hover .circle {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(59,130,246,0.5);
}
.flow-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
}

.flow-item p {
    font-size: 15px;
    color: #6b7280;
}
@media(max-width:768px){
    .flow-item {
        padding-bottom: 20px;
    }
}
.industry-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59,130,246,0.15);
}



.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-item span {
    font-size: 22px;
}
.glass-panel {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.bar div {
    height: 100%;
    background: linear-gradient(to right, #3b82f6, #6366f1);
    animation: growBar 1.5s ease;
}
@keyframes growBar {
    from { width: 0; }
}
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(30px); }
    to { opacity:1; transform:translateY(0); }
}
.animate-fadeInUp {
    animation: fadeInUp 1s ease;
}
.interactive {
    transition: transform 0.2s ease;
}
.tab {
    padding: 4px 8px;
    border-radius: 6px;
    background: #f3f4f6;
    cursor: pointer;
}
.tab.active {
    background: #3b82f6;
    color: white;
}
.small-card {
    position: absolute;
    width: 160px;
}

.floating-card {
    bottom: -70px;
    right: -20px;
    animation: float 4s infinite ease-in-out;
}

.floating-card-2 {
    top: -50px;
    left: -20px;
    animation: float 5s infinite ease-in-out;
    z-index: 100;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature span {
    font-size: 22px;
}

.main-card {
    position: relative;
    z-index: 2;
}
.floating-card {
    position: absolute;
    bottom: -70px;
    right: -20px;
    width: 180px;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 100;
}
@keyframes floatCard {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.bar div {
    height: 100%;
    background: linear-gradient(to right, #3b82f6, #6366f1);
}

/* FADE */
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(30px); }
    to { opacity:1; transform:translateY(0); }
}
.animate-fadeInUp {
    animation: fadeInUp 1s ease;
}
.footer-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}
.footer-links li {
    margin-bottom: 8px;
    color: #6b7280;
}

.footer-links a {
    color: #6b7280;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
    transform: translateX(4px);
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3f4f6;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
}
.metric-card {
    padding: 20px;
    border-radius: 16px;
    background: white;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


@keyframes modalFade {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-modal {
    animation: modalFade 0.4s ease;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 14px 12px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
    background: white;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    background: white;
    padding: 0 5px;
    color: #888;
    font-size: 13px;
    transition: 0.3s;
    pointer-events: none;
}
.input-group input:focus,
.input-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -4px;
    font-size: 11px;
    color: #2563eb;
}

#demoModal .relative {
    max-height: 90vh;
    overflow-y: auto;
}

.error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

input.error-border,
textarea.error-border {
    border-color: #dc2626 !important;
}

.glass-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}
.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

.icon-box {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
}
.stat-item span:first-child {
    color: #374151;
    font-size: 14px;
}
.progress {
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    width: 0;
    border-radius: 999px;
    transition: width 1.5s ease;
}
.progress-bar.blue {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.progress-bar.green {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.progress-bar.indigo {
    background: linear-gradient(90deg, #6366f1, #818cf8);
}

.progress-bar.purple {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.feature-card {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.feature-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}
.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}
.feature-card .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 16px;
}
.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.feature-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.5;
}
#particles-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
#mouseGlow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
}
section > div {
    position: relative;
    z-index: 2;
}
#globalLoader {
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#globalLoader.hidden {
    opacity: 0;
    visibility: hidden;
}
@keyframes loadingBar {
    0% { width: 0% }
    100% { width: 100% }
}

.animate-loading-bar {
    animation: loadingBar 1.5s infinite;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes grow {
    from { width: 0 }
}
.animate-grow {
    animation: grow 1.5s ease forwards;
}
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }







