/* Base styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Reset all section header styles */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: white;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}


/* Developers section */

.developers {
    background: #0A2540;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.developers::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(242, 47, 70, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(242, 47, 70, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.developers .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.developers .section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.developers .section-header p {
    color: white;
    font-size: 1.1rem;
    max-width: 600px;
}


/* Force white color for developers section title */

html body .developers .section-header h2,
html body .developers h2,
html body .developers .container .section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.developers .section-header p {
    color: white;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


/* Ensure white color for developers section title */

.developers .section-header h2,
.developers h2,
.developers .container .section-header h2 {
    color: inherit;
}

:root {
    --primary-color: #0066ff;
    --secondary-color: #0052cc;
    --text-color: #333;
    --light-text: #666;
    --background-light: #f5f7fa;
    --background-dark: #1a1a1a;
    --transition: all 0.3s ease;
    --gradient-start: #7A3CB2;
    --gradient-middle: #5368CC;
    --gradient-end: #00D2DC;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #7A3CB2 0%, #5368CC 50%, #00D2DC 100%);
    min-height: 100vh;
}


/* Header Styles */

.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0A2540;
}

.logo-icon {
    font-size: 1.5rem !important;
    margin-left: 0.5rem;
    color: #0A2540;
}

.logo-name {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #0A2540;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-item a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.nav-item a:hover {
    color: var(--primary-color);
}


/* Dropdown Menu */

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section {
    padding: 1rem;
}

.dropdown-section h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.dropdown-section ul {
    list-style: none;
}

.dropdown-section ul li a {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.dropdown-section ul li a:hover {
    background: var(--background-light);
    border-radius: 4px;
}


/* Buttons */

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login,
.btn-start,
.btn-primary,
.btn-secondary {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    transition: var(--transition);
}

.btn-login {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-login:hover {
    background: var(--primary-color);
    color: white;
}

.btn-start,
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: white;
}

.btn-start:hover,
.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background: none;
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background: var(--text-color);
    color: white;
}


/* Hero Section */

.hero {
    background: #0A2540;
    padding: 8rem 2rem 4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    min-height: 90vh;
    color: white;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content h1 br {
    content: "";
    display: block;
    margin: 0.8rem 0;
}

.hero-content h1 .highlight {
    color: #F22F46;
    position: relative;
    display: inline-block;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(242, 47, 70, 0.3);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #F22F46;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
}

.btn-primary:hover {
    background: #ff3d5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 47, 70, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #F22F46;
}

.stat-label {
    font-size: 1.1rem;
    color: #0A2540;
    font-weight: 500;
}

.hero-stats .stat-item i {
    font-size: 2rem;
    color: #F22F46;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 1rem;
    color: var(--text-color);
}


/* Products Section */

.products {
    background: #0A2540;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.product-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: #333;
    margin-bottom: 2rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.product-icon i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-icon i {
    transform: scale(1.1);
}

.product-card h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.5rem;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-features li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.product-features li i {
    color: var(--primary-color);
    font-size: 14px;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.learn-more:hover {
    gap: 1rem;
}


/* Features Section */

.features {
    background: #0A2540;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #0A2540;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: #F22F46;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
    color: #ff3d5d;
}

.feature-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.features .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.features .stat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
}

.features .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.features .stat-label {
    font-size: 1rem;
    color: var(--text-color);
}


/* CTA Section */

.cta {
    padding: 6rem 2rem;
    background: #1A365D;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta .btn-primary {
    background: #F22F46;
    color: white;
}

.cta .btn-primary:hover {
    background: #d91f36;
}


/* Footer */

.footer {
    background-color: black;
    padding: 2rem 0;
    text-align: center;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

.footer-contact {
    margin: 1rem 0;
}


/* Mobile Menu Button */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}


/* استایل برای منوی موبایل در حالت active */

.nav-wrapper.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 999;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/* Responsive Design */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        display: none;
    }
    .nav-wrapper.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav-item a {
        font-size: 1rem;
        padding: 0.5rem 0;
        display: block;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .products,
    .features,
    .use-cases,
    .developers,
    .testimonials,
    .pricing {
        padding: 6rem 1rem;
    }
    .section-header h2 {
        font-size: 2.5rem;
    }
    .section-header p {
        font-size: 1.1rem;
    }
}


/* iPhone 14 and similar devices */

@media screen and (max-width: 430px) {
    .hero {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .section-header p {
        font-size: 1rem;
    }
    .product-card,
    .feature-card,
    .use-case-card,
    .testimonial-card,
    .pricing-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    .product-icon,
    .use-case-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    .product-icon i,
    .use-case-icon i {
        font-size: 20px;
    }
    .features,
    .products,
    .use-cases,
    .developers,
    .testimonials,
    .pricing {
        padding: 4rem 1rem;
    }
    .nav-container {
        padding: 0.5rem 1rem;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1.4rem;
    }
    .btn-primary,
    .btn-secondary,
    .btn-login {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}


/* Fix for very small screens */

@media screen and (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
    .product-card h3,
    .feature-card h3,
    .use-case-card h3 {
        font-size: 1.2rem;
    }
    .product-card p,
    .feature-card p,
    .use-case-card p {
        font-size: 0.9rem;
    }
}


/* Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.6s ease forwards;
}


/* Use Cases Section */

.use-cases {
    background: #0A2540;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 350px;
    margin: 0 auto;
}

.use-case-card:hover {
    transform: translateY(-5px);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: #F22F46;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.use-case-icon i {
    font-size: 1.8rem;
    color: white;
}

.use-case-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1A202C;
}

.use-case-card p {
    color: #4A5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-card ul li {
    color: #4A5568;
    margin-bottom: 0.5rem;
    padding-right: 1.5rem;
    position: relative;
}

.use-case-card ul li:before {
    content: "•";
    color: #F22F46;
    position: absolute;
    right: 0;
}


/* Developers Section */

.developers-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.developers-text {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateY(0);
    transition: transform 0.3s ease;
    text-align: center;
}

.developers-text:hover {
    transform: translateY(-5px);
}

.developers-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.developers-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.developers-text ul {
    margin-bottom: 2rem;
    list-style: none;
    text-align: right;
}

.developers-text .btn {
    display: inline-block;
    margin: 0 auto;
}

.developers-image {
    flex: 1.2;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.developers-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transform: scale(1.1);
}

.developers .btn {
    background: #F22F46;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #F22F46;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(242, 47, 70, 0.3);
}

.developers .btn:hover {
    background: transparent;
    color: #F22F46;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 47, 70, 0.4);
}

@media (max-width: 992px) {
    .developers-content {
        flex-direction: column;
    }
    .developers-text,
    .developers-image {
        width: 100%;
    }
}


/* Testimonials Section */

.testimonials {
    background: #0A2540;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: #0A2540;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.author-avatar i {
    font-size: 24px;
    color: #fff;
}

.author-info h4 {
    margin: 0;
    color: #0A2540;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0.25rem 0 0;
    color: #666;
    font-size: 0.9rem;
}


/* Pricing Section */

.pricing {
    padding: 8rem 0;
    background: #0A2540;
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.pricing-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.pricing-card.featured {
    background: #F22F46;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: #333;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.period {
    color: #666;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: #F22F46;
}

.pricing-card.featured h3,
.pricing-card.featured .amount,
.pricing-card.featured .period,
.pricing-card.featured .pricing-features li {
    color: white;
}


/* Responsive Design Updates */

@media (max-width: 768px) {
    .developers-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}


/* Modal Styles */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 800px;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: #fff;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 1.5rem;
}

.modal-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.modal-image {
    width: 100%;
    margin-bottom: 0;
    border-radius: 8px;
    overflow: hidden;
    grid-column: 1;
}

.modal-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.modal-content-text {
    grid-column: 2;
}

.modal-section:hover {
    transform: translateY(-2px);
}

.modal-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.modal-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    margin: 1rem 0;
}

.modal-section p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-section ul li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

.modal-section ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    right: 0;
}

@media (max-width: 768px) {
    .modal-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .modal-image {
        grid-column: 1;
        margin-bottom: 1rem;
    }
    .modal-content-text {
        grid-column: 1;
    }
}

.features-secondary {
    background: #0A2540;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.features-secondary .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.features-secondary .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.features-secondary .feature-card {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    overflow: hidden;
    transition: transform 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.features-secondary .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.features-secondary .feature-card h3 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features-secondary .feature-card p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.industries {
    padding: 5rem 0;
    background: #0D1126;
}

.industries h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.industries .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .industries .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industries .feature-grid {
        grid-template-columns: 1fr;
    }
}


/* General section title styles */

.section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}


/* Developers section title */

.developers-title {
    color: white !important;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}


/* Remove any specific color overrides for section titles */

.developers .section-header h2,
.features-secondary .section-header h2,
.products .section-header h2,
.use-cases .section-header h2,
.testimonials .section-header h2 {
    color: #0A2540;
}


/* Ensure all section descriptions are white */

.features .section-header p,
.features-secondary .section-header p,
.products .section-header p,
.use-cases .section-header p,
.testimonials .section-header p,
.developers .section-header p {
    color: white;
}


/* تنظیم رنگ متن برای خوانایی بهتر */

.section-header h2,
.section-header p,
.feature-card h3,
.feature-card p,
.product-card h3,
.product-card p,
.use-case-card h3,
.use-case-card p,
.developers-text h3,
.developers-text p,
.testimonial-content p {
    color: inherit;
    text-shadow: none;
}


/* تنظیم رنگ پس‌زمینه کارت‌ها برای خوانایی بهتر */

.feature-card,
.product-card,
.use-case-card,
.testimonial-card {
    background: white;
    backdrop-filter: none;
    border: none;
}


/* --- FINAL Footer Contact Styles --- */

.footer .footer-contact p,
.footer .footer-contact a,
.footer p {
    color: white;
    text-decoration: none;
    font-size: 0.9rem !important;
}

.footer .footer-contact a {
    border-bottom: none !important;
}


/* About page styles */

.about-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.about-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.white-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem auto;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.white-box p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.white-box h3 {
    color: #0A2540;
    margin: 1rem 0;
    font-size: 1.5rem;
}

.white-box i {
    font-size: 2rem;
    color: #0A2540;
    margin-bottom: 1rem;
}

.about-story,
.about-values,
.about-team {
    padding: 4rem 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    .white-box {
        padding: 1.5rem;
        margin: 1rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.about-feature i {
    font-size: 2rem;
    color: #F22F46;
    margin-bottom: 0.5rem;
}

.about-feature span {
    font-size: 1rem;
    color: var(--text-color);
}