body {
    background: #eef1f7;
    font-family: IRANYekanX, sans-serif;
}

/* NAVBAR */
.pro-nav {
    font-weight: 500;
    transition: .3s;
}
.pro-nav:hover {
    color: #0d6efd !important;
    transform: translateY(-2px);
}
.logo-glow {
    text-shadow: 0 0 10px rgba(0, 123, 255, .4);
}

/* GLASS EFFECT */
.glass-nav, .glass-footer, .glass-box {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
}

/* HERO */
.hero-section {
    height: 80vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, #e6ebf5);
}
.hero-light {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,123,255,0.25), transparent 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(80px);
}
.hero-title {
    animation: fadeUp 1.5s ease forwards;
    opacity: 0;
}
.hero-subtitle {
    animation: fadeUp 2s ease forwards;
    opacity: 0;
}

/* SECTION TITLE */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}
.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #0d6efd;
    display: block;
    margin: 10px auto 0;
    border-radius: 10px;
}

/* CARDS */
.pro-card {
    padding: 25px;
    transition: .4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform-style: preserve-3d;
}
.pro-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ANIMATIONS عمومی */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all .8s ease;
}
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.card-anim {
    opacity: 0;
    transform: translateY(40px);
    animation: cardIn .9s forwards;
}
@keyframes cardIn {
    to { opacity: 1; transform: translateY(0); }
}

/* SVG ANIMATIONS */

/* خط زیر هیرو */
.svg-line line {
    animation: lineDraw 1.8s ease forwards;
}
@keyframes lineDraw {
    to { stroke-dashoffset: 0; }
}

/* Orbit SVG در هیرو */
.svg-orbit {
    animation: orbitPulse 4s ease-in-out infinite;
}
.orbit-dot {
    transform-origin: 50px 50px;
    animation: orbitMove 4s linear infinite;
}
@keyframes orbitPulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
@keyframes orbitMove {
    0%   { transform: rotate(0deg) translateY(0); }
    100% { transform: rotate(360deg) translateY(0); }
}

/* Badge روی کارت‌ها */
.badge-circle {
    stroke-dasharray: 140;
    stroke-dashoffset: 140;
    animation: badgeCircleDraw 1.5s ease forwards;
}
.badge-check {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: badgeCheckDraw 1.5s ease forwards 0.4s;
}
@keyframes badgeCircleDraw {
    to { stroke-dashoffset: 0; }
}
@keyframes badgeCheckDraw {
    to { stroke-dashoffset: 0; }
}

/* BACK TO TOP */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
}
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    z-index: 9999; /* دکمه همیشه بالاتر از فوتر */
}
/* Badge Animation */
.badge-circle {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: badgeCircleDraw 1.2s ease forwards;
}

.badge-check {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: badgeCheckDraw 1.2s ease forwards .3s;
}

@keyframes badgeCircleDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes badgeCheckDraw {
    to { stroke-dashoffset: 0; }
}
.status-info-box {
    border-radius: 20px;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
}

/* فاصله بین SVG و متن */
.status-info-box svg {
    flex-shrink: 0;
}
/* Glow برای تیک سبز */
.badge-green-glow {
    filter: drop-shadow(0 0 6px rgba(40, 167, 69, 0.7))
            drop-shadow(0 0 12px rgba(40, 167, 69, 0.5));
    transition: .3s ease;
}

/* Glow برای تیک آبی */
.badge-blue-glow {
    filter: drop-shadow(0 0 6px rgba(13, 110, 253, 0.7))
            drop-shadow(0 0 12px rgba(13, 110, 253, 0.5));
    transition: .3s ease;
}

/* افکت Hover برای جذابیت بیشتر */
.svg-badge:hover svg {
    transform: scale(1.08);
    transition: .3s ease;
}
/* استایل ویجت بسیار مینیمال */
.mini-glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    width: 280px; /* عرض ثابت برای کوچک بودن */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 30px auto 0 auto;
    display: block;
}

.mini-label {
    font-size: 0.75rem;
    color: #6c757d;
    display: block;
    margin-bottom: 2px;
}

.mini-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.mini-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.progress-container {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
    text-align: center;
}

.mini-percentage {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
}

.text-success-mini { color: #28a745; }
.text-danger-mini { color: #dc3545; }