.elementor-38 .elementor-element.elementor-element-cb553bd{--display:flex;--min-height:1440px;}/* Start custom CSS for html, class: .elementor-element-3ec29d2 */:root {
    --bg-dark: #0b0f19;
    --bg-card: #161b28;
    --bg-input: #0f131f;
    --bg-header: #05070a;
    --accent-primary: #ff2a2a;
    --accent-gradient: linear-gradient(90deg, #d00000 0%, #ff4d4d 100%);
    --accent-glow: rgba(255, 42, 42, 0.4);
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --text-light-gray: #e2e8f0;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-family: 'Vazirmatn', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.7;
    overflow-x: hidden;
    overscroll-behavior: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

.elementor-breakout {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1, h2, h3, h4, h5 {
    font-weight: 800;
    line-height: 1.3;
}

.text-accent {
    color: var(--accent-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 45px;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.4s;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 25px -5px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -5px var(--accent-glow);
}

.main-header {
    background-color: rgba(5, 7, 10, 0.98);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid var(--border-color);
    transition: padding 0.4s ease, background-color 0.4s ease;
}

.main-header.scrolled {
    padding: 10px 0;
    background-color: rgba(5, 7, 10, 1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo i {
    color: var(--accent-primary);
    font-size: 24px;
}

.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light-gray);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: 0.3s;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.about-hero {
    position: relative;
    padding: 250px 0 150px 0;
    background-color: var(--bg-dark);
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 42, 42, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    filter: blur(50px);
}

.glow-orb-2 {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 42, 42, 0.08) 0%, transparent 70%);
    bottom: -300px;
    left: -300px;
    filter: blur(60px);
}

.bg-grid-tech {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 42, 42, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 42, 42, 0.05);
}

.about-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 35px;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-hero-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 50px;
    padding: 0 20px;
}

.stats-wrapper {
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 42, 42, 0.3);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 50px 0;
    position: relative;
}

.stat-box {
    text-align: center;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-color);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    line-height: 1;
    font-family: 'Courier New', monospace;
}

.stat-number span.plus {
    color: var(--accent-primary);
    font-size: 3rem;
    margin-right: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-section {
    padding: 150px 0;
    background: var(--bg-dark);
    position: relative;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.story-sticky-left {
    position: sticky;
    top: 150px;
}

.story-sticky-left h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.story-sticky-left p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.story-scroll-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.story-scroll-right::before {
    content: '';
    position: absolute;
    right: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    z-index: 1;
}

.story-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    z-index: 2;
    margin-right: 80px;
    transition: 0.4s;
}

.story-card::before {
    content: '';
    position: absolute;
    right: -45px;
    top: 50px;
    width: 12px;
    height: 12px;
    background: var(--bg-dark);
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 10px var(--accent-glow);
}

.story-card::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 56px;
    width: 40px;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.story-card:hover {
    border-color: var(--accent-primary);
    transform: translateX(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.story-year {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    font-family: 'Courier New', monospace;
    transition: 0.4s;
}

.story-card:hover .story-year {
    color: rgba(255, 42, 42, 0.15);
}

.story-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 5;
}

.story-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    z-index: 5;
}

.values-section {
    padding: 120px 0;
    background: #080b12;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-header h2 {
    font-size: 3rem;
    color: white;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.5s;
    cursor: default;
}

.bento-item:hover {
    border-color: rgba(255, 42, 42, 0.5);
}

.bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transition: 0.7s;
    filter: grayscale(100%);
}

.bento-item:hover .bento-bg {
    opacity: 0.5;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark) 10%, transparent 90%);
    z-index: 2;
}

.bento-content {
    position: relative;
    z-index: 3;
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(255, 42, 42, 0.3);
}

.bento-item h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.bento-item p {
    color: var(--text-light-gray);
    font-size: 14px;
    line-height: 1.7;
}

.bento-1 { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.bento-2 { grid-column: 3 / span 2; grid-row: 1 / span 1; }
.bento-3 { grid-column: 3 / span 1; grid-row: 2 / span 1; }
.bento-4 { grid-column: 4 / span 1; grid-row: 2 / span 1; }

.factory-tour-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.tour-header {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.tour-header h2 {
    font-size: 3rem;
    color: white;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

.hz-container {
    display: flex;
    width: 400vw;
    height: 100%;
    flex-wrap: nowrap;
}

.hz-panel {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) contrast(1.2);
    z-index: 1;
}

.panel-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.panel-number {
    font-size: 180px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
    line-height: 1;
    position: absolute;
    top: 20%;
    right: 5%;
    z-index: 0;
    font-family: 'Courier New', monospace;
}

.panel-text {
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--accent-primary);
}

.panel-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.panel-text p {
    color: var(--text-light-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.panel-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.spec-box span {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 5px;
}

.spec-box strong {
    color: var(--accent-primary);
    font-size: 18px;
    font-family: monospace;
}

.marquee-section {
    padding: 60px 0;
    background: #05070a;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: calc(200px * 14);
    animation: scrollMarquee 30s linear infinite;
}

.marquee-logo {
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) opacity(0.5);
    transition: 0.4s;
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.marquee-logo:hover {
    filter: grayscale(0%) opacity(1);
    color: var(--accent-primary);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(200px * 7)); }
}

.cta-banner {
    padding: 120px 0;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
}

footer {
    background-color: #05070a;
    padding: 60px 0 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 992px) {
    .about-hero-content h1 { font-size: 3rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stat-box:not(:last-child)::after { display: none; }
    .story-container { grid-template-columns: 1fr; }
    .story-sticky-left { position: relative; top: 0; text-align: center; }
    .story-scroll-right { margin-top: 40px; }
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-1, .bento-2, .bento-3, .bento-4 { grid-column: auto; grid-row: auto; height: 350px; }
    .panel-content { grid-template-columns: 1fr; padding: 0 20px; }
    .panel-number { display: none; }
    .nav-menu { display: none; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}/* End custom CSS */