/* RTL Styles for Persian */
body {
    font-family: 'Byekan', 'Tahoma', sans-serif;
    direction: rtl;
    text-align: right;
}

/* فقط اعداد با فونت Tahoma - بدون تغییر در layout */
.en-number {
    font-family: 'Tahoma', 'Arial', sans-serif !important;
    font-variant-numeric: lining-nums !important;
}

/* Hero Slider */
.hero-slider .carousel-item {
    min-height: 600px;
}

.hero-slide {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 2rem 0;
}

/* About Year Box */
.about-year {
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%) !important;
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,139,139,0.2) !important;
}

.product-overlay {
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1 !important;
}

/* Brand Boxes */
.brand-box {
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-box:hover {
    box-shadow: 0 5px 15px rgba(0,139,139,0.3) !important;
    transform: translateY(-5px);
    border-color: #008B8B !important;
}

/* Hover Effects */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

/* Text Styles */
.text-justify {
    text-align: justify;
}

.top-bar {
    font-size: 0.9rem;
}

/* Primary Color Override */
.bg-primary {
    background-color: #008B8B !important;
}

.text-primary {
    color: #008B8B !important;
}

.btn-primary {
    background-color: #008B8B;
    border-color: #008B8B;
}

.btn-primary:hover {
    background-color: #006666;
    border-color: #006666;
}

.btn-outline-primary {
    color: #008B8B;
    border-color: #008B8B;
}

.btn-outline-primary:hover {
    background-color: #008B8B;
    border-color: #008B8B;
    color: white;
}

/* Feature Icons */
.feature-icon {
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,139,139,0.7);
    border-radius: 50%;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(0,139,139,0.9);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #008B8B;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 400px;
    }
    
    .hero-slider .carousel-item {
        min-height: 400px;
    }
    
    .display-3 {
        font-size: 2rem;
    }
}

