/* --- استایل‌های اختصاصی صفحه درباره ما (آنیل) --- */

/* متغیرهای رنگی */
:root {
    --anil-color: #4A5A8D;
    --anil-dark: #21417C;
    --anil-soft: #eef1f8;
    --gray-soft: #f8f9fa;
}

.text-anil { color: var(--anil-color) !important; }
.bg-anil { background-color: var(--anil-color) !important; }
.bg-blue-soft { background-color: var(--anil-soft) !important; }
.bg-gray-soft { background-color: var(--gray-soft) !important; }

/* تایپوگرافی و ساختار */
.lh-lg { line-height: 2.2 !important; }
.tracking-wide { letter-spacing: 1px; }
.text-justify { text-align: justify; }

/* کارت‌ها و افکت‌ها */
.info-card {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover-lift-anil:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(74, 90, 141, 0.15) !important;
}

.icon-square {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-box {
    transition: all 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.05);
    border-color: var(--anil-color) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* دکمه اختصاصی */
.btn-anil {
    background-color: var(--anil-color);
    color: #fff;
    border: none;
    transition: all 0.3s;
}
.btn-anil:hover {
    background-color: var(--anil-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 90, 141, 0.4) !important;
}

/* اشکال پس‌زمینه (Background Shapes) */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}
.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--anil-color);
    top: -100px;
    right: -100px;
}
.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--anil-dark);
    bottom: -50px;
    left: -50px;
}

/* انیمیشن‌ها */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
.animate-zoom-in {
    animation: zoomIn 0.8s ease-out forwards;
    opacity: 0;
    transform: scale(0.95);
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes zoomIn { to { opacity: 1; transform: scale(1); } }

/* المان تزیینی هیرو */
.circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74,90,141,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse-anil 3s infinite alternate;
}

@keyframes pulse-anil {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}