.elementor-7948 .elementor-element.elementor-element-75c290e{--divider-border-style:solid;--divider-color:#041248;--divider-border-width:1px;}.elementor-7948 .elementor-element.elementor-element-75c290e .elementor-divider-separator{width:0%;}.elementor-7948 .elementor-element.elementor-element-75c290e .elementor-divider{padding-block-start:15px;padding-block-end:15px;}/* Start custom CSS for html, class: .elementor-element-e44b688 */:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #0f3460;
            --highlight: #45bbe9;
            --dark-bg: #2d2d44;
            --card-bg: #363652;
            --light: #f8f9fa;
            --gray: #9ca3af;
            --white: #ffffff;
            --gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Vazirmatn', sans-serif;
            background: var(--dark-bg);
            color: var(--white);
            line-height: 1.8;
        }

        /* Navigation */
        .navbar {
            background: var(--white);
            padding: 1rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary);
        }

        .logo-text span {
            display: block;
            font-size: 0.75rem;
            font-weight: 400;
            color: var(--gray);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--highlight);
        }

        .nav-cta {
            background: var(--highlight);
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: 8px;
        }

        /* Hero Header */
        .page-header {
            margin-top: 80px;
            background: var(--gradient);
            padding: 60px 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .page-header-content {
            position: relative;
            z-index: 1;
        }

        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.1);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }

        .page-badge i {
            color: var(--highlight);
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .page-title-en {
            font-size: 1rem;
            opacity: 0.7;
            font-weight: 400;
            letter-spacing: 3px;
        }

        .page-subtitle {
            font-size: 1rem;
            opacity: 0.85;
            margin-bottom: 10px;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 0.85rem;
            opacity: 0.7;
            margin-top: 20px;
        }

        .breadcrumb a {
            color: var(--white);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: var(--highlight);
        }

        /* Introduction Section */
        .intro-section {
            background: var(--primary);
            padding: 50px 5%;
        }

        .intro-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .intro-content p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 2.2;
            margin-bottom: 15px;
        }

        .intro-content strong {
            color: var(--highlight);
        }

        .intro-cta {
            margin-top: 30px;
        }

        .intro-cta a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--highlight);
            color: var(--white);
            padding: 14px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .intro-cta a:hover {
            background: #3897d6;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
        }

        /* Projects Section */
        .projects-section {
            padding: 60px 5%;
            background: var(--dark-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .section-header p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .projects-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* Project Card */
        .project-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 350px 1fr;
            transition: all 0.4s;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .project-card:hover {
            transform: translateX(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            border-color: var(--highlight);
        }

        .project-images {
            background: var(--primary);
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 10px;
        }

        .project-thumb {
            background: var(--dark-bg);
            border-radius: 8px;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-size: 1.5rem;
            transition: all 0.3s;
            overflow: hidden;
        }

        .project-thumb:first-child {
            grid-column: span 2;
            grid-row: span 2;
            font-size: 3rem;
        }

        .project-thumb:hover {
            background: var(--accent);
            color: var(--white);
        }

        .project-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .project-info {
            padding: 30px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .project-category {
            display: inline-flex;
            align-items: center;
            gap: 8px;
                       background: rgba(69, 198, 233, 0.15);

            color: var(--highlight);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            width: fit-content;
            margin-bottom: 15px;
        }

        .project-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--white);
        }

        .project-title-en {
            font-size: 0.95rem;
            color: var(--gray);
            font-weight: 400;
            margin-bottom: 15px;
        }

        .project-description {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .project-meta {
            display: flex;
            gap: 25px;
            margin-bottom: 20px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--gray);
        }

        .meta-item i {
            color: var(--highlight);
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--highlight);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .project-link:hover {
            gap: 15px;
        }

        .project-link i {
            transition: transform 0.3s;
        }

        .project-link:hover i {
            transform: translateX(-5px);
        }

        /* Project Types Legend */
        .project-types {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .type-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            background: var(--card-bg);
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: all 0.3s;
        }

        .type-badge:hover,
        .type-badge.active {
            background: var(--highlight);
            border-color: var(--highlight);
        }

        .type-badge i {
            font-size: 1rem;
        }

        /* Footer */
        .footer {
            background: var(--primary);
            color: var(--white);
            padding: 60px 5% 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-brand h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .footer-brand p {
            opacity: 0.7;
            font-size: 0.9rem;
            line-height: 1.8;
        }

        .footer-links h4 {
            font-size: 1rem;
            margin-bottom: 20px;
            color: var(--highlight);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--white);
            opacity: 0.7;
            text-decoration: none;
            font-size: 0.9rem;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--highlight);
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            opacity: 0.7;
        }

        .trust-badges {
            display: flex;
            gap: 15px;
        }

        .trust-badge {
            width: 60px;
            height: 60px;
            background: var(--white);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--primary);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .project-card {
                grid-template-columns: 1fr;
            }

            .project-images {
                grid-template-columns: repeat(4, 1fr);
                grid-template-rows: 1fr;
            }

            .project-thumb:first-child {
                grid-column: span 2;
                grid-row: span 1;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .page-title {
                font-size: 1.8rem;
            }

            .project-images {
                grid-template-columns: repeat(2, 1fr);
            }

            .project-meta {
                flex-direction: column;
                gap: 10px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .project-types {
                gap: 10px;
            }

            .type-badge {
                padding: 8px 15px;
                font-size: 0.8rem;
            }
        }/* End custom CSS */