.elementor-7348 .elementor-element.elementor-element-0c8a895:not(.elementor-motion-effects-element-type-background), .elementor-7348 .elementor-element.elementor-element-0c8a895 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0A0F2E;}.elementor-7348 .elementor-element.elementor-element-0c8a895 > .elementor-container{min-height:571px;}.elementor-7348 .elementor-element.elementor-element-0c8a895, .elementor-7348 .elementor-element.elementor-element-0c8a895 > .elementor-background-overlay{border-radius:0px 0px 15px 15px;}.elementor-7348 .elementor-element.elementor-element-0c8a895{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-7348 .elementor-element.elementor-element-0c8a895 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-7348 .elementor-element.elementor-element-5d76875 .elementor-heading-title{color:#FFFFFF;}.elementor-7348 .elementor-element.elementor-element-648caa8{color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-9955822 */:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #0f3460;
            --highlight: #45c0e9;
            --light: #f8f9fa;
            --gray: #6c757d;
            --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(--light);
            color: var(--primary);
            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;
        }

        .nav-cta:hover {
            background: #389cd6;
            color: var(--white) !important;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            background: var(--gradient);
            padding: 80px 5% 120px;
            position: relative;
            overflow: hidden;
        }

        .hero::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");
            opacity: 0.5;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .profile-image-container {
            position: relative;
        }

        .profile-image {
            width: 280px;
            height: 280px;
            border-radius: 20px;
            object-fit: cover;
            border: 4px solid rgba(255,255,255,0.2);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
        }

        .profile-badge {
            position: absolute;
            bottom: -15px;
            right: -15px;
            background: var(--highlight);
            color: var(--white);
            padding: 12px 20px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(69, 203, 233, 0.4);
        }

        .hero-text {
            color: var(--white);
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .hero-description {
            font-size: 1rem;
            opacity: 0.85;
            line-height: 2;
            margin-bottom: 2rem;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--highlight);
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: -60px auto 60px;
            padding: 0 5%;
            position: relative;
            z-index: 10;
        }

        /* Cards */
        .card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--light);
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
        }

        .card-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
        }

        .card-content {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 2;
        }

        /* Goals Grid */
        .goals-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .goal-card {
            background: var(--light);
            border-radius: 16px;
            padding: 30px;
            border-right: 4px solid var(--highlight);
        }

        .goal-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .goal-card h4 i {
            color: var(--highlight);
        }

        .goal-card ul {
            list-style: none;
            padding: 0;
        }

        .goal-card li {
            padding: 8px 0;
            color: var(--gray);
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .goal-card li::before {
            content: '✓';
            color: var(--highlight);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* Research Section */
        .research-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .research-item {
            background: var(--light);
            padding: 20px;
            border-radius: 12px;
            font-size: 0.9rem;
            color: var(--gray);
            transition: all 0.3s;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .research-item:hover {
            background: var(--primary);
            color: var(--white);
        }

        .research-item i {
            color: var(--highlight);
            margin-top: 5px;
        }

        /* Awards Section */
        .awards-timeline {
            position: relative;
            padding-right: 30px;
        }

        .awards-timeline::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .award-item {
            position: relative;
            padding: 20px 30px 20px 0;
            margin-bottom: 20px;
        }

        .award-item::before {
            content: '';
            position: absolute;
            right: -8px;
            top: 25px;
            width: 18px;
            height: 18px;
            background: var(--highlight);
            border-radius: 50%;
            border: 4px solid var(--white);
            box-shadow: 0 0 0 3px var(--highlight);
        }

        .award-year {
            display: inline-block;
            background: var(--highlight);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .award-title {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .award-description {
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* 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) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .profile-image-container {
                display: flex;
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .goals-grid,
            .research-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }/* End custom CSS */