.page-about { gap: 35px; padding-top: 20px; padding-bottom: 60px; max-width: 1000px; margin: 0 auto; } /* Typography and Highlighting */ .highlight-neon { color: var(--neon-blue); text-shadow: 0 0 10px rgba(45, 212, 191, 0.4); } /* Hero Section */ .about-hero-block { padding: 50px 30px; border-top: 2px solid var(--neon-blue); background: linear-gradient(180deg, rgba(45, 212, 191, 0.05) 0%, rgba(15, 23, 42, 0.6) 100%); position: relative; overflow: hidden; } .about-icon-badge { font-size: 40px; color: var(--neon-blue); margin-bottom: 20px; display: inline-block; filter: drop-shadow(0 0 10px rgba(45,212,191,0.5)); } .hero-heading { font-size: 38px; font-weight: 800; margin-bottom: 20px; color: #fff; line-height: 1.2; } .hero-subtext { font-size: 17px; color: var(--text-muted); line-height: 1.8; max-width: 800px; margin: 0 auto; } /* Content Blocks */ .about-content-block { padding: 40px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .about-content-block:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); border-color: rgba(255, 255, 255, 0.15); } .block-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; } .header-icon { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 20px; background: rgba(255, 255, 255, 0.05); } .header-icon.blue-glow { color: var(--neon-blue); box-shadow: inset 0 0 15px rgba(45, 212, 191, 0.2); } .header-icon.green-glow { color: var(--neon-green); box-shadow: inset 0 0 15px rgba(16, 185, 129, 0.2); } .header-icon.purple-glow { color: var(--neon-purple); box-shadow: inset 0 0 15px rgba(168, 85, 247, 0.2); } .header-icon.yellow-glow { color: var(--neon-yellow); box-shadow: inset 0 0 15px rgba(251, 191, 36, 0.2); } .header-icon.neon-glow { color: var(--neon-red); box-shadow: inset 0 0 15px rgba(244, 63, 94, 0.2); } .block-header h2 { font-size: 24px; color: #fff; font-weight: 700; } .block-body p { font-size: 16px; line-height: 1.8; color: #cbd5e1; margin-bottom: 15px; } .block-body p:last-child { margin-bottom: 0; } /* Feature Grid */ .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 25px; } .feature-card { background: rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.05); padding: 25px; border-radius: 16px; text-align: center; transition: 0.3s ease; } .feature-card:hover { background: rgba(45, 212, 191, 0.05); border-color: rgba(45, 212, 191, 0.3); } .feature-card i { font-size: 28px; color: var(--neon-green); margin-bottom: 15px; } .feature-card h4 { color: #fff; font-size: 18px; margin-bottom: 10px; } .feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; } /* Styled Lists */ .styled-list { list-style: none; padding-left: 0; margin-top: 15px; } .styled-list li { font-size: 16px; color: #cbd5e1; line-height: 1.8; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; } .styled-list li i { color: var(--neon-purple); font-size: 14px; margin-top: 6px; } /* Values Grid */ .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 25px; } .value-item { border-left: 3px solid var(--neon-yellow); padding: 15px 20px; background: linear-gradient(90deg, rgba(251, 191, 36, 0.05) 0%, transparent 100%); border-radius: 0 12px 12px 0; } .value-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; } .value-item p { font-size: 15px; color: var(--text-muted); margin-bottom: 0; } /* Contact Methods */ .contact-methods { display: flex; flex-direction: column; gap: 15px; margin-top: 25px; } .contact-card { display: flex; align-items: center; gap: 20px; background: rgba(0, 0, 0, 0.2); border: 1px solid rgba(255, 255, 255, 0.05); padding: 20px; border-radius: 16px; text-decoration: none; transition: 0.3s ease; } a.contact-card:hover { background: rgba(45, 212, 191, 0.08); border-color: rgba(45, 212, 191, 0.4); transform: translateX(5px); } .contact-icon { width: 60px; height: 60px; flex-shrink: 0; background: rgba(255, 255, 255, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--neon-blue); } .contact-details h4 { color: #fff; font-size: 18px; margin-bottom: 4px; } .contact-details span { display: inline-block; font-size: 14px; color: var(--neon-blue); font-weight: 600; margin-bottom: 8px; } .contact-details p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 0; } /* Mobile Responsive */ @media (max-width: 768px) { .hero-heading { font-size: 30px; } .about-content-block { padding: 25px; } .block-header h2 { font-size: 20px; } .contact-card { flex-direction: column; text-align: center; } .value-item { border-left: none; border-top: 3px solid var(--neon-yellow); background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, transparent 100%); border-radius: 0 0 12px 12px;} } /* ========================================= About Page Modern Optimization ========================================= */ .page-about { display: flex; flex-direction: column; gap: 30px; } .about-hero-block { padding: 50px 30px; border-top: 3px solid var(--neon-blue); position: relative; overflow: hidden; } .hero-heading { font-size: 38px; color: #fff; margin-bottom: 20px; font-weight: 800; } .highlight-gradient { background: linear-gradient(to right, var(--neon-blue), var(--neon-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .hero-subtext { font-size: 17px; line-height: 1.7; color: var(--text-muted); max-width: 800px; margin: 0 auto; } .about-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; } .about-content-block { padding: 35px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .about-content-block:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); } .block-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; } .header-icon { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: rgba(255,255,255,0.05); } /* Neon Glows */ .purple-glow { color: var(--neon-purple); box-shadow: 0 0 15px rgba(168, 85, 247, 0.2); } .blue-glow { color: var(--neon-blue); box-shadow: 0 0 15px rgba(45, 212, 191, 0.2); } .green-glow { color: var(--neon-green); box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); } .yellow-glow { color: var(--neon-yellow); box-shadow: 0 0 15px rgba(251, 191, 36, 0.2); } .neon-glow { color: #fff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); } .block-header h2 { font-size: 22px; color: #fff; font-weight: 700; } .block-body p { font-size: 15px; line-height: 1.8; color: #cbd5e1; margin-bottom: 15px; } .styled-list { list-style: none; padding: 0; margin-top: 15px; } .styled-list li { margin-bottom: 15px; font-size: 15px; color: #cbd5e1; display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; } .styled-list li i { color: var(--neon-blue); margin-top: 5px; font-size: 14px; } .feature-grid, .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 25px; } .feature-card, .value-item { background: rgba(0,0,0,0.25); padding: 25px 20px; border-radius: 16px; border: 1px solid var(--glass-border); transition: 0.3s; } .feature-card:hover, .value-item:hover { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); } .feature-card i { font-size: 32px; margin-bottom: 15px; } .feature-card h3, .value-title { font-size: 17px; color: #fff; margin-bottom: 10px; font-weight: 700; display: flex; align-items: center; gap: 10px; } .value-title i { color: var(--neon-blue); font-size: 18px; } .contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 25px; } .contact-card { display: flex; align-items: flex-start; gap: 18px; background: rgba(0,0,0,0.25); padding: 25px; border-radius: 16px; border: 1px solid var(--glass-border); transition: 0.3s; text-decoration: none; } 

.imgarticle { width: -webkit-fill-available;}

.contact-card:hover { border-color: var(--neon-blue); background: rgba(45, 212, 191, 0.05); transform: translateY(-3px); } .contact-icon { font-size: 26px; color: #fff; background: rgba(255,255,255,0.1); width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; } .contact-details h3 { font-size: 18px; color: #fff; margin-bottom: 5px; } .contact-details span { font-size: 14px; color: var(--neon-blue); font-weight: 600; display: block; margin-bottom: 8px; } .contact-details p { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); margin: 0; } .about-tag-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(45, 212, 191, 0.1); border: 1px solid rgba(45, 212, 191, 0.3); border-radius: 20px; color: var(--neon-blue); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; } /* Responsive */ @media (max-width: 850px) { .about-grid-2col { grid-template-columns: 1fr; } } @media (max-width: 768px) { .hero-heading { font-size: 28px; } .about-hero-block { padding: 40px 20px; } .about-content-block { padding: 25px; } } .block-body a{ color: var(--neon-blue); text-decoration: none; font-weight: bold; } .footer-social { display: flex; gap: 16px; margin-top: 24px; } .footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; /* پس‌زمینه نیمه‌شفاف متناسب با تم تیره وب‌سایت */ background-color: rgba(255, 255, 255, 0.05); color: #a0a0a0; text-decoration: none; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1); } .footer-social a:hover { background-color: #ffffff; color: #121212; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1); } .footer-social a svg { width: 22px; height: 22px; /* این دستور رنگ آیکون را از ویژگی color تگ a به ارث می‌برد */ fill: currentColor; }



/* Blog Listing & Grid Layout */
.blog-search-container {
    max-width: 650px;
    margin: 0 auto 35px auto;
    position: relative;
}
.blog-search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease;
}
.blog-search-input:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.3);
}
.blog-search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--neon-blue);
    font-size: 18px;
    cursor: pointer;
}

/* Popular Articles Grid (Top 6) */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.popular-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.popular-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(45, 212, 191, 0.25);
    border-color: var(--neon-blue);
}
.card-img-wrapper {
    height: 180px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popular-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: var(--neon-blue);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--neon-blue);
}
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-body h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}
.card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}
.read-more-btn {
    color: var(--neon-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Latest Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.page-link {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}
.page-link.active, .page-link:hover {
    background: var(--neon-blue);
    color: #000;
    font-weight: 700;
}

/* Gallery inside Article */
.article-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}
.article-gallery img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

   .post-meta-modern { display: flex; gap: 20px; justify-content: center; margin-bottom: 30px; font-size: 14px; color: var(--neon-blue); font-weight: 600; }
        .post-meta-modern span { background: rgba(45, 212, 191, 0.1); padding: 8px 16px; border-radius: 20px; border: 1px solid rgba(45, 212, 191, 0.3); }
        .featured-image { width: 100%; max-height: 400px; object-fit: fill; border-radius: 16px; margin-bottom: 30px; border: 1px solid var(--glass-border); }
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 30px; }
        .gallery-grid img { width: 100%; height: 150px; object-fit: cover; border-radius: 12px; border: 1px solid var(--glass-border); transition: 0.3s; }
        .gallery-grid img:hover { transform: scale(1.05); border-color: var(--neon-blue); }
        
        .related-section { margin-top: 50px; border-top: 1px solid var(--glass-border); padding-top: 30px; }
        .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
        .related-card { background: rgba(0,0,0,0.25); border: 1px solid var(--glass-border); border-radius: 12px; padding: 15px; text-decoration: none; transition: 0.3s; display: flex; gap: 15px; align-items: center; }
        .related-card:hover { border-color: var(--neon-blue); transform: translateX(5px); }
        .related-card img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
        .related-card h4 { color: #fff; font-size: 15px; margin: 0; }
        /* ==========================
   Table
========================== */

table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #161b2d;
    border: 1px solid #2b3550;
    border-radius: 10px;
    overflow: hidden;
    color: #edf2ff;
    font-size: 16px;
}

th,
td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #2b3550;
}

th {
    background: #202845;
    color: #ffffff;
    font-weight: 600;
}

tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.03);
}

tbody tr:hover {
    background: rgba(96,165,250,0.10);
    transition: .2s;
}

tbody tr:last-child td {
    border-bottom: none;
}


/* ==========================
   Blockquote
========================== */

blockquote {
    margin: 30px 0;
    padding: 20px 24px;
    background: #161b2d;
    border-left: 5px solid #60a5fa;
    border-radius: 10px;
    color: #f1f5f9;
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: "❝";
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 38px;
    color: rgba(96,165,250,.25);
    line-height: 1;
}

blockquote p {
    margin: 0;
    padding-left: 18px;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #94a3b8;
    font-style: normal;
}


/* ==========================
   Mobile
========================== */

@media (max-width:768px){

    table{
        font-size:15px;
    }

    th,
    td{
        padding:12px;
    }

    blockquote{
        font-size:16px;
        padding:18px;
    }

}