﻿
/* استایل‌های CSS که قبلاً ارائه شد */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1d1d1d;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Vazirmatn', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    color: #f8f8f8;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    }

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
        z-index: -1;
    }

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #b0b0b0;
    line-height: 1.8;
}

/* Feature Boxes */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    flex: 1 1 300px;
    max-width: 350px;
    background: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    .feature-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f8f8f8;
}

.feature-desc {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Stats Section */
.stats {
    background: #252525;
    padding: 60px 0;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: #b0b0b0;
    font-size: 1rem;
}

/* Progress Bars */
.progress-section {
    padding: 60px 0;
}

.progress-container {
    max-width: 800px;
    margin: 0 auto;
}

.progress-item {
    margin-bottom: 30px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.progress-bar {
    height: 10px;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 5px;
    width: 0;
    transition: width 1.5s ease-out;
}

/* Video Section */
.video-section {
    text-align: center;
    padding: 60px 0;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

    .video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .video-overlay:hover {
        background: rgba(0, 0, 0, 0.5);
    }

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

    .play-button i {
        color: white;
        font-size: 2rem;
        margin-left: 5px;
    }

.video-overlay:hover .play-button {
    transform: scale(1.1);
}

/* Special Sections */
.special-section {
    position: relative;
    padding: 100px 0;
    margin: 80px 0;
    overflow: hidden;
}

    .special-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
        z-index: -1;
    }

.special-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.special-text {
    flex: 1 1 400px;
}

.special-image {
    flex: 1 1 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

    .special-image:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

    .special-image img {
        width: 100%;
        height: auto;
        display: block;
    }

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #252525;
    border-radius: 15px;
    margin: 40px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #f0f0f0;
}

    .faq-question i {
        transition: transform 0.3s ease;
    }

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #b0b0b0;
    line-height: 1.8;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

    .testimonial::before {
        content: '"';
        font-size: 5rem;
        color: rgba(78, 205, 196, 0.2);
        position: absolute;
        top: 10px;
        right: 20px;
        line-height: 1;
    }

.testimonial-content {
    margin-bottom: 20px;
    color: #b0b0b0;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 15px;
}

    .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #f0f0f0;
}

.author-title {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.blog-card {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-10px);
    }

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.8rem;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.blog-excerpt {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-link {
    color: #4ecdc4;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

    .blog-link i {
        margin-right: 5px;
        transition: transform 0.3s ease;
    }

    .blog-link:hover i {
        transform: translateX(5px);
    }

/* Contact Form */
.contact-form-container {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #252525;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 30px;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
}

    .contact-form-container.show {
        bottom: 20px;
    }

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-btn {
    background: none;
    border: none;
    color: #b0b0b0;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .close-btn:hover {
        color: #ff6b6b;
        transform: rotate(90deg);
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group label {
        color: #f0f0f0;
        font-size: 0.9rem;
    }

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #333;
    color: #f0f0f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: #4ecdc4;
        box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.3);
    }

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    align-self: flex-start;
    margin-top: 10px;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

    .floating-btn:hover {
        transform: scale(1.1) rotate(90deg);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

/* New Sections */
.content-section {
    padding: 80px 0;
}

.content-header {
    text-align: center;
    margin-bottom: 50px;
}

.content-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f8f8f8;
}

.content-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.content-card {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .content-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }

.content-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.content-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f8f8f8;
}

.content-card-desc {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-list {
    list-style-type: none;
    margin: 20px 0;
}

    .content-list li {
        margin-bottom: 12px;
        padding-right: 25px;
        position: relative;
        color: #e0e0e0;
    }

        .content-list li:before {
            content: '•';
            color: #4ecdc4;
            font-weight: bold;
            position: absolute;
            right: 0;
        }

.cta-section {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 15px;
    margin: 80px 0;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #f8f8f8;
}

.cta-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .feature-box {
        flex: 1 1 100%;
    }

    .special-content {
        flex-direction: column;
    }

    .special-image {
        transform: perspective(1000px) rotateY(0);
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    .contact-form-container {
        width: 90%;
        padding: 20px;
    }

    .content-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .progress-section {
        padding: 40px 0;
    }

    .content-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

/* Stats Section */
.stats {
    background: #252525;
    padding: 60px 0;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: #b0b0b0;
    font-size: 1rem;
}

/* Progress Bars */
.progress-section {
    padding: 60px 0;
}

.progress-container {
    max-width: 800px;
    margin: 0 auto;
}

.progress-item {
    margin-bottom: 30px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.progress-bar {
    height: 10px;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 5px;
    width: 0;
    transition: width 1.5s ease-out;
}


.textstyle {

    margin-top: 60px !important;
}