﻿/* استایل اختصاصی اسلایدر هیرو */
.hero-section {
    position: relative;
    height: 450px;
    overflow: hidden;
}
.hero-slide {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    display: flex;
    align-items: center;
    color: white;
    border-radius:15px;
}
.lead{
    font-size: 0.8rem;
}
/* کارت‌های دسته‌بندی با هاور سه‌بعدی */
.category-card {
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(229, 45, 39, 0.15);
}
.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(0, 114, 255, 0.1);
    color: #0072ff;
    font-size: 2rem;
    transition: 0.3s;
}
.category-card:hover .category-icon {
    background: linear-gradient(90deg, #ff8c00, #e52d27);
    color: #fff;
    transform: rotateY(180deg);
}
