/* فونت‌ها */
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;700&display=swap');

:root {
    --primary-color: #1a237e;
    --primary-dark: #0d1440;
    --secondary-color: #00b0ff;
    --secondary-dark: #0081cb;
    --accent-color: #ffc107;
    --accent-dark: #ffa000;
    --light-color: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --gold-color: #FFD700;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

body {
    font-family: 'Vazirmatn', 'Noto Nastaliq Urdu', Tahoma, sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;
}

/* هدر */
header {
    background: var(--gradient-primary);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--accent-color);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

h1 {
    margin: 15px 0 10px;
    font-size: 2.5rem;
    font-family: 'Noto Nastaliq Urdu', serif;
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.slogan {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* محتوا */
.content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-section {
    background: linear-gradient(135deg, rgba(0, 176, 255, 0.03) 0%, rgba(26, 35, 126, 0.03) 100%);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    border: 1px solid rgba(0, 176, 255, 0.1);
}

.about-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Noto Nastaliq Urdu', serif;
    position: relative;
    padding-bottom: 10px;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 3px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background: white;
    border-right: 4px solid var(--secondary-color);
}

.about-text ul {
    padding-right: 20px;
}

.about-text li {
    margin-bottom: 10px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid rgba(255, 193, 7, 0.2);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
}

.highlight-box h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Noto Nastaliq Urdu', serif;
}

.highlight-box ul {
    padding-right: 20px;
}

.highlight-box li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 15px;
}

.highlight-box li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

/* ویژگی‌ها */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--secondary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 176, 255, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    fill: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Noto Nastaliq Urdu', serif;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* تصاویر */
.screenshots-container {
    margin: 40px 0;
}

.screenshots-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Noto Nastaliq Urdu', serif;
    position: relative;
    padding-bottom: 10px;
}

.screenshots-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 3px;
}

.screenshots {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.screenshot {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* نمادهای اعتماد */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    padding: 15px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.trust-badge img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

/* فوتر */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px 15px;
    color: white;
    font-size: 0.9rem;
    background: var(--gradient-primary);
    position: relative;
    border-top: 5px solid var(--accent-color);
}

.footer-content h3 {
    font-family: 'Noto Nastaliq Urdu', serif;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* انیمیشن‌ها */
.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }
.animate-delay-4 { animation-delay: 0.8s; }

/* رسپانسیو */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .slogan {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot {
        max-width: 200px;
    }
    
    .trust-badges {
        flex-direction: column;
    }
    
    .footer-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 120px;
        height: 120px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .about-title, .screenshots-title {
        font-size: 1.5rem;
    }
    
    .content, .about-section {
        padding: 15px;
    }
}