@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Thin.woff2') format('woff2');
    font-weight: 100;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Light.woff2') format('woff2');
    font-weight: 300;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Medium.woff2') format('woff2');
    font-weight: 500;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Bold.woff2') format('woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Black.woff2') format('woff2');
    font-weight: 900;
}

body {
    font-family: 'Vazir', sans-serif;
}

html {
    scroll-behavior: smooth;
}


.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #57534e;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #0B1F6D;
    transform: translateY(-2px);
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: #22c55e;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero-image {
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);

    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
}


@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeLeft {
    from {
        opacity: 0;
        transform: translateX(-35px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes blobMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -18px) scale(1.08);
    }
}

.animate-hero-badge,
.animate-hero-title,
.animate-hero-title-delay,
.animate-hero-text,
.animate-hero-button,
.animate-hero-image {
    opacity: 0;
    animation-fill-mode: forwards;
}

.animate-hero-badge {
    animation: heroFadeUp .7s ease forwards;
}

.animate-hero-title {
    animation: heroFadeUp .8s ease .15s forwards;
}

.animate-hero-title-delay {
    animation: heroFadeUp .8s ease .28s forwards;
}

.animate-hero-text {
    animation: heroFadeUp .8s ease .42s forwards;
}

.animate-hero-button {
    animation: heroFadeUp .8s ease .56s forwards;
}

.animate-hero-image {
    animation: heroFadeLeft .9s ease .25s forwards, heroFloat 4.5s ease-in-out 1.2s infinite;
}

.hero-blob {
    animation: blobMove 7s ease-in-out infinite;
}

.hero-blob-delay {
    animation-delay: 1.5s;
}


.feature-card {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.feature-card.show {
    opacity: 1;
    transform: translateY(0);
}


.gallery-card {
    opacity: 0;
    transform: translateY(70px) scale(.96);
    transition:
        opacity .8s ease,
        transform .8s ease,
        box-shadow .3s ease;
}

.gallery-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-card:hover img {
    filter: saturate(1.08) contrast(1.04);
}



.workflow-card {
    opacity: 0;
    transform: translateY(60px) scale(.95);
    transition:
        opacity .8s ease,
        transform .8s ease,
        box-shadow .3s ease;
}

.workflow-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.workflow-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(15, 23, 42, .08);
}


.pricing-card {
    opacity: 0;
    transform: translateY(80px) scale(.96);
    transition:
        opacity .9s ease,
        transform .9s ease;
}

.pricing-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}


@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pricing-badge {
    animation: badgePulse 2.8s ease-in-out infinite;
}


.pricing-btn {
    position: relative;
    overflow: hidden;
}

.pricing-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, .2);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {

    0% {
        left: -120%;
    }

    30% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}