/* استایل‌های سفارشی قالب داده پردازان آرین */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Vazirmatn', 'IRANSans', 'Tahoma', sans-serif;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

.sticky-top {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1030;
}

/* hover effect for cards */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15) !important;
}

/* hero section */
.hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    position: relative;
    overflow: hidden;
}

/* stats section */
.stats {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* page header */
.page-header {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-bottom: 1px solid #dee2e6;
}

/* breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #0d6efd;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* blog content */
.content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: #212529;
}

.content p {
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* newsletter input group */
.input-group .form-control {
    border-left: none;
}

.input-group .btn {
    border-right: none;
}

/* responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .hero .btn-lg {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0d6efd;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a58ca;
}

/* whatsapp and social icons hover */
.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: #ffc107 !important;
}