.elementor-1542 .elementor-element.elementor-element-7d91824{--display:flex;}.elementor-1542 .elementor-element.elementor-element-7d91824.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-1542 .elementor-element.elementor-element-820e2f9{--display:flex;}.elementor-1542 .elementor-element.elementor-element-820e2f9.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-1542 .elementor-element.elementor-element-0106bed{--display:flex;}.elementor-1542 .elementor-element.elementor-element-0106bed.e-con{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-1542 .elementor-element.elementor-element-7d91824{--width:98.816%;}.elementor-1542 .elementor-element.elementor-element-820e2f9{--width:98.816%;}.elementor-1542 .elementor-element.elementor-element-0106bed{--width:98.816%;}}/* Start custom CSS */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Vazir', 'Tahoma', sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        h1 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease;
        }

        .subtitle {
            text-align: center;
            font-size: 1.2em;
            opacity: 0.95;
        }

        /* Navigation */
        nav {
            background: #fff;
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        nav li {
            margin: 0 20px;
        }

        nav a {
            text-decoration: none;
            color: #667eea;
            font-weight: bold;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 5px;
        }

        nav a:hover {
            background: #667eea;
            color: white;
        }

        /* Main Content */
        .hero-section {
            background: white;
            padding: 50px 20px;
            margin: 30px 0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        h2 {
            color: #667eea;
            font-size: 2em;
            margin: 30px 0 20px;
            border-right: 5px solid #667eea;
            padding-right: 15px;
        }

        h3 {
            color: #764ba2;
            font-size: 1.5em;
            margin: 25px 0 15px;
        }

        h4 {
            color: #555;
            font-size: 1.2em;
            margin: 20px 0 10px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .service-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }

        /* Media Section */
        .media-section {
            background: white;
            padding: 30px;
            margin: 30px 0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .media-item img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* About Section */
        .about-javadiyeh {
            background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
            padding: 40px;
            margin: 30px 0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-content {
            column-count: 2;
            column-gap: 30px;
            text-align: justify;
            line-height: 2;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px 20px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .cta-button {
            background: white;
            color: #667eea;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Features List */
        .features-list {
            list-style: none;
            padding: 20px;
        }

        .features-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-right: 35px;
        }

        .features-list li:before {
            content: "✓";
            position: absolute;
            right: 0;
            color: #4CAF50;
            font-weight: bold;
            font-size: 1.2em;
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 50px;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-slide {
            animation: slideInLeft 1s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8em;
            }

            h2 {
                font-size: 1.5em;
            }

            .about-content {
                column-count: 1;
            }

            nav li {
                margin: 5px 10px;
            }

            .service-card {
                padding: 20px;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.5em;
            }

            .subtitle {
                font-size: 1em;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Pricing Table */
        .pricing-table {
            width: 100%;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .pricing-table thead {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .pricing-table th, .pricing-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .pricing-table tr:hover {
            background: #f5f5f5;
        }

        /* Badge */
        .badge {
            display: inline-block;
            background: #ff6b6b;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9em;
            margin-right: 10px;
        }

        .badge.success {
            background: #4CAF50;
        }

        .badge.warning {
            background: #ff9800;
        }/* End custom CSS */