/* Base Styles */
/* Beautiful font for menu */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');
@font-face {
  font-family: 'beauty';
  src: url('../fonts/beauty1.ttf') format('ttf'); 
  font-weight: 700;
  font-style: normal;
}


:root {
    --neon-white: #ffffff;
    --glowing-light-blue: #00f2ff;
    --neon-blue: #0066ff;
    --shiny-green: #00ff88;
    --neon-red: #ff0033;
    --neon-yellow: #ffcc00;
    --dark-bg: #0a0a1a;
	--primary-color:#2C3E50;
	--secondarry-color:#8B4513;
	--accent-color: #27AE60;
	--cyber-white: rgba(255, 255, 255, 0.9);
    --cyber-orange: #FF6B00;
    --cyber-coal: #1A1A1A;
    --cyber-coral: #FF4D6D;
    --cyber-blue: #00F0FF;
    --cyber-purple: #9D00FF;
    --cyber-bg: #0D0D0D;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--neon-white);
	background-image: url('../images/aviation_background.jpg');
	background-attachment:fixed;
	background-repeat:no-repeat;
	background-size:cover;
    color: var(--neon-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Loader Styles */
.typography-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  background: linear-gradient(90deg, #00f2ff, #0066ff, #00ff88);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
  margin-bottom: 2rem;
  animation: textGlow 2s infinite alternate;
}

.loading-bar {
  width: 300px;
  height: 4px;
  background: rgba(0, 242, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00ff88, #00f2ff);
  border-radius: 2px;
  animation: loadingAnimation 2.5s ease-in-out infinite;
}

/* Animations */
@keyframes textGlow {
  0% {
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 25px rgba(0, 242, 255, 0.6), 
                 0 0 35px rgba(0, 102, 255, 0.4);
  }
}

@keyframes loadingAnimation {
  0% {
    width: 0%;
    transform: translateX(-50%);
  }
  50% {
    width: 100%;
    transform: translateX(0%);
  }
  100% {
    width: 0%;
    transform: translateX(50%);
  }
}

/* Hide when loaded */
.loaded .typography-loader {
  opacity: 0;
  visibility: hidden;
}

/* Glowing Text Effect 
.glowing-text {
    text-shadow: 0 0 5px var(--neon-white), 0 0 10px var(--glowing-light-blue), 0 0 15px var(--neon-blue);
    transition: text-shadow 0.3s ease;
}*/

.glowing-text:hover {
    text-shadow: 0 0 10px var(--neon-white), 0 0 20px var(--glowing-light-blue), 0 0 30px var(--neon-blue);
}

/* Glowing Border Effect */
.glowing-border {
    border: 2px solid var(--glowing-light-blue);
    box-shadow: 0 0 10px var(--glowing-light-blue), 0 0 20px var(--neon-blue);
    transition: box-shadow 0.3s ease;
}

.glowing-border:hover {
    box-shadow: 0 0 15px var(--glowing-light-blue), 0 0 30px var(--neon-blue), 0 0 45px var(--shiny-green);
}

/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color:  var(--neon-white);
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
	opacity:0.8;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    float: left;
    display: flex;
    align-items: left;
	height:40px;
	width:auto;
}

.logo {
    height: 57px;
    margin-top: -10px;	
    /*filter: drop-shadow(0 0 5px var(--glowing-light-blue));*/
}

.logo-container i{
	color:var(--dark-bg);
}

.logo-container h1 {
    font-size: 1.8rem;
    background: var(--dark-bg);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
	font-family: 'beauty';
    
}

/* Navigation Menu */
.main-nav {
    justify-self: right;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li{
	/*background-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red);
    border-radius: 10px 10px 10px 10px;
	border-right: 0px solid;
	border-color: rgba(0, 0, 0, .5);*/
	
}

.menu-item {
    position: relative;
    margin-left: 1.5rem;
}

.menu-link {
    color: var(--neon-yellow);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    /*border-radius: 4px;*/
    transition: all 0.3s ease;
    text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
    position: relative;
}

.menu-link:hover {
    color: var(--dark-bg);
    text-shadow: 0 0 10px var(--dark-bg);
	
}

.menu li:hover {
    border-color: var(--neon-white);
	
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--dark-bg);
    transition: width 0.3s ease;
	
}

.menu-link:hover::after {
    width: 70%;
	
}

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-bg);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* Submenu Styles */
.submenu {
    position: absolute;
    top: 100%;
    left: -400px;;
    width: 600px;
    background-color: rgba(10, 10, 26, 0.95);
    border: 1px solid var(--dark-bg);
    border-radius: 5px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.submenu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submenu-links {
    display: flex;
    flex-direction: column;
}

.submenu-links a {
    color: var(--neon-yellow);
    padding: 0.5rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.submenu-links a:hover {
    color: var(--neon-white);
    padding-left: 10px;
}

.submenu-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    border: 1px solid var(--neon-white);
}

.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    cursor: zoom-out;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fullscreen-overlay.active {
    display: flex;
    opacity: 1;
}

.fullscreen-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.fullscreen-overlay.active img {
    transform: scale(1);
}

main img {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

main img:hover {
    transform: scale(1.02);
}

/* Hero Cover */
.index-hero {
    width: 100%;
    height: 20vw;
    min-height: 100px;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,102,255,0.1) 50%, rgba(0,0,0,0) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin-top: 1rem;
    
    /* افزودن ویژگی‌های flexbox برای居中 */
    display: flex;
    justify-content: center; /*居中 افقی */
    align-items: center; /*居中 عمودی */
    flex-wrap: wrap; /* برای نمایش چند تصویر در صورت وجود */
    gap: 10px; /* فاصله بین تصاویر */
    overflow: hidden; /* جلوگیری از سرریز شدن */
}

.index-hero img {
    height: 18vw; /* کمی کوچکتر از ارتفاع والد */
    width: auto;
    max-height: calc(20vw - 20px); /* با احتساب فاصله */
    object-fit: contain; /* حفظ نسبت تصویر */
}

.neon-red-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--neon-red);
    box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red);
    border-radius: 50% 50% 0 0;
}

.neon-divided-line{
	width: 100%;
    height: 4px;
    background-color: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow);
    border-radius: 0 0 50% 50%;
    margin-bottom: 2rem;
}

/* Main Content Grid */
.main-content {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.grid-item {
    padding: 1.5rem;
    background-color: rgba(20, 20, 40, 0.5);
    border-radius: 0;
    border: 1px solid rgba(0, 242, 255, 0.1);
    transition: all 0.3s ease;
}

.grid-1-2 img{
	width:100%;
	height:auto;
}

.grid-item:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}

.merged-grid {
    grid-template-columns: 1fr;
}

/* Circle Cards */
.circle-cards-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.circle-card {
    text-align: center;
    max-width: 180px;
	color:var(--neon-blue);
}

.circle-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(0, 242, 255, 0.1);
    border: 2px solid var(--neon-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.circle-icon img {
    width: 70%;
    height: auto;
    filter: drop-shadow(0 0 5px var(--glowing-light-blue));
}

.circle-card:hover .circle-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--neon-blue);
}

/* Product Gallery */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.product-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-details {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 26, 0.9);
    padding: 1rem;
    transition: bottom 0.3s ease;
}

.product-item:hover .product-details {
    bottom: 0;
}

.product-item:hover img {
    transform: scale(1.05);
}

/* Video Containers */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}

/* Contact Form */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
	background: rgba(0, 0, 0, 0.3);
	border-radius:5px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--glowing-light-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--neon-blue);
    border-radius: 4px;
    color: var(--neon-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--shiny-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.glowing-button {
    background: linear-gradient(45deg, var(--neon-blue), var(--shiny-green));
    color: var(--neon-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

.glowing-button:hover {
    box-shadow: 0 0 20px var(--neon-blue), 0 0 30px var(--shiny-green);
    transform: translateY(-2px);
}

/* Footer Styles */
.neon-yellow-line {
    width: 100%;
    height: 4px;
    background-color: var(--dark-bg);
    box-shadow: 0 0 10px var(--dark-bg), 0 0 20px var(--dark-bg);
    border-radius: 0 0 50% 50%;
    margin-bottom: 2rem;
}

.main-footer {
    background-color:  var(--neon-white);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(0, 242, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-about{
	color:var(--dark-bg);
}

.footer-about h1{
	font-family:'beauty';
}

.footer-column h3 {
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
	font-family:"beauty";
}

.footer-logo {
    width: 150px;
    margin-bottom: 1.5rem;
    /*filter: drop-shadow(0 0 5px var(--glowing-light-blue));*/
}

.company-info {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--neon-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--shiny-green);
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.brand-logos img {
    width: 100%;
    height: auto;
    /*filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--glowing-light-blue));*/
    transition: filter 0.3s ease;
}

.brand-logos img:hover {
    filter: brightness(1) drop-shadow(0 0 10px var(--neon-yellow));
}

.copyright {
    font-size: 0.9rem;
    color: var(--dark-bg);
}

.footer-links a{
	color:var(--dark-bg);
}

/* Product Modal Styles */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 26, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: var(--dark-bg);
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--neon-white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: var(--neon-red);
}

.modal-image-container {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid var(--glowing-light-blue);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.modal-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.modal-title {
    color: var(--glowing-light-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-specs {
    margin-bottom: 2rem;
}

.spec-item {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

.spec-item strong {
    color: var(--shiny-green);
}

.inquire-btn {
    align-self: flex-start;
    margin-top: auto;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 10px rgba(0, 242, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 242, 255, 0.8); }
    100% { box-shadow: 0 0 10px rgba(0, 242, 255, 0.5); }
}

.modal-content {
    animation: modalFadeIn 0.3s ease-out, glowPulse 3s infinite;
}

.product-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-item img{
	width:100%;
	height:100%;
}

.product-item:hover {
    transform: scale(1.03);
}





/* Responsive Design */
@media (max-width: 1200px) {
    .header-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    
    .main-nav {
        justify-self: center;
        margin-top: 1rem;
    }
    
    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .menu-item {
        margin: 0.5rem;
    }
    
    .submenu {
        width: 500px;
    }
    
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Modal */
@media (max-width: 900px) {
	
	.hamburger-btn {
        display: block;
    }
	
	.main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;        
        height: 100vh;
        background-color: var(--neon-white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        overflow-y: auto;
        padding-top: 80px;
		z-index:1000;
    }
	
	/* انیمیشن تبدیل به X */
    .hamburger-btn.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-btn.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* جلوگیری از اسکرول هنگام باز بودن منو */
    body.menu-open {
        overflow: hidden;
    }
	
	.main-nav.active {
        right: 0;
    }
    
	.menu-active {
        right: 0;
    }
	
    .menu {
        flex-direction: column;
        padding: 1rem;
    }
    
    .menu-item {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu-link {
        display: block;
        padding: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
	
	.submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background-color: rgba(0, 0, 0, 1);		
    }
    
	.submenu-open .submenu {
        display: block;
    }
	
    .submenu.active {
        display: block;
    }
    
    .submenu-grid {
        grid-template-columns: 1fr;
    }
    
    .submenu-image {
        display: none;
    }
    
	.submenu-links a {
        padding: 0.8rem 1rem;
        border-bottom: none;
		color:var(--neon-white);
    }
	
	.no-scroll {
        overflow: hidden;
    }
	
    .hero-cover {
        height: 15vw;
        min-height: 80px;
    }
	
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 85vh;
    }
    
    .modal-image-container {
        padding: 1rem;
    }
    
    .modal-image {
        max-height: 50vh;
    }
    
    .modal-details {
        padding: 1rem 2rem 2rem;
    }
}

@media (max-width: 768px) {
	
	.logo-container h1 {
        font-size: 1.2rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .main-header {
        padding: 0.5rem 1rem;
    }
	
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .submenu {
        width: 100%;
    }
    
    .submenu-grid {
        grid-template-columns: 1fr;
    }
    
    .submenu-image {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        grid-template-columns: 1fr;
    }
    
    .circle-cards-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .menu {
        flex-direction: column;
    }
    
    .menu-item {
        margin: 0.3rem 0;
    }
    
    .submenu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .menu-item:hover .submenu {
        display: block;
    }
    
    .hero-cover {
        height: 15vw;
    }
	
	.product-modal {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 95vh;
    }
}

/*----index-slider-----*/

/*------cyber-punk------*/
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
	color:var(--dark-bg);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--cyber-orange), var(--cyber-blue));
}

.product-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.product-carousel::-webkit-scrollbar {
    height: 8px;
}

.product-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.product-carousel::-webkit-scrollbar-thumb {
    background: var(--cyber-orange);
    border-radius: 4px;
}

.product-card {
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    scroll-snap-align: start;
	height:40vw;
	width:33%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
    border-color: var(--cyber-orange);
}

.product-image {
    width: 100%;
    height: 30vw;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
    display: flex;
    justify-content: center; /*居中 افقی */
    align-items: center; /*居中 عمودی */
    flex-wrap: wrap; /* برای نمایش چند تصویر در صورت وجود */
    gap: 10px; /* فاصله بین تصاویر */
    overflow: hidden; /* جلوگیری از سرریز شدن */
}

.product-image-aj {
    width: 100%;
    height: 20vw;
    object-fit: cover;
	border: 1px solid rgba(255, 200, 0, 1);
	box-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow);
	display: flex;
    justify-content: center; /*居中 افقی */
    align-items: center; /*居中 عمودی */
    flex-wrap: wrap; /* برای نمایش چند تصویر در صورت وجود */
    gap: 10px; /* فاصله بین تصاویر */
    overflow: hidden; /* جلوگیری از سرریز شدن */
}

.product-image-aj:hover {
   transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.8);
    border-color: var(--cyber-orange);
}

.product-image-aj img{
    height: 18vw; /* کمی کوچکتر از ارتفاع والد */
    width: auto;
    max-height: calc(20vw - 20px); /* با احتساب فاصله */
    object-fit: contain; /* حفظ نسبت تصویر */
	
}

.product-image img {
   
    height: 18vw; /* کمی کوچکتر از ارتفاع والد */
    width: auto;
    max-height: calc(20vw - 20px); /* با احتساب فاصله */
    object-fit: contain; /* حفظ نسبت تصویر */
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--neon-yellow);
}

.product-title a{    
    color: var(--neon-yellow);
}

.product-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-btn{
	color:var(--neon-yellow);
}

.aj-title{
	display:flex;
	padding:20px;
	width:100%;
	background-color: rgba(0, 0, 0, 0.8);
}

.aj-description{
	padding:20px;
	width:100%;
	background-color: rgba(0, 0, 0, 0.8);
}

.aj-features{
	padding:20px;
	width:100%;
	background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 576px){
	.product-card{
		width:100%;
		height:auto;
		flex: 0 0 100%;
	}
	.product-image {
		height:auto;
	}
	.product-image img{
		height:auto;
	}
}

.about-hero {
    background: linear-gradient(rgba(139, 69, 19, 0.85), rgba(139, 69, 19, 0.9));                
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 50px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.html-content {
    line-height: 1.8;
    color: var(--text-primary);
}

.html-content h1,
.html-content h2,
.html-content h3,
.html-content h4,
.html-content h5,
.html-content h6 {
    color: var(--neon-yellow);
    margin: 20px 0 10px 0;
    font-weight: bold;
}

.html-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.html-content ul,
.html-content ol {
    margin: 10px 0 10px 20px;
    padding-right: 20px;
}

.html-content li {
    margin-bottom: 5px;
    list-style-type: disc;
}

.html-content strong,
.html-content b {
    color: var(--neon-yellow);
    font-weight: bold;
}

.html-content em {
    font-style: italic;
}

.html-content u {
    text-decoration: underline;
}

.html-content a {
    color: var(--info);
    text-decoration: none;
}

.html-content a:hover {
    text-decoration: underline;
}

.html-content blockquote {
    border-right: 3px solid var(--neon-yellow);
    padding-right: 15px;
    margin: 15px 0;
    color: var(--text-secondary);
    font-style: italic;
}

.html-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.html-content th,
.html-content td {
    border: 1px solid var(--border-color);
    padding: 8px;
    text-align: right;
}

.html-content th {
    background: var(--charcoal-lighter);
    color: var(--neon-yellow);
}
/*-----normal-----------

.hero-carousel{
	margin-top:10px;
	padding: 40px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-wrapper{
	display:grid;
	grid-template-columns: 1fr 350px;
	gap:30px;
}

@media (max-width: 992px) {
	.hero-wrapper {
		grid-template-columns: 1fr;
	}
}

.featured-carosel {
	background: var(--neon-white);
	border-radius : 20px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.carousel-header {
	display: flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom: 30px;
}

.carousel-header h2 {
	color: var(--dark-bg);
	font-size: 1.8rem;
	display: flex;
	align-items:center;
	gap: 10px;
}

.carousel-nav {
	display: flex;
	gap: 10px;
}

.carousel-nav button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--accent-color);
	color: white;
	border: none;
	cursor: pointer;
	display:flex;
	align-items: center;
	justify-content:center;
	transition: all 0.3s ease;
}

.carousel-nav button:hover {
	background: var(--secondary-color);
	transform: scale(1.1);
}

.carousel-container {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.carousel-slide {
	min-width:100%;
	padding: 10px;
	display: none;
}

.carousel-slide.active {
	display:block;
}

.slide-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	background: var(--neon-white);
	border-radius:15px;
	overflow:hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.slide-content {
		grid-template-columns: 1fr;
	}
}

.slide-image {
	position: relative;
	height:300px;
	overflow: hidden;
}

.slide-image img {
	width:100%;
	height:100%;
	object-fit:cover;
	transition: transform 0.5s ease;
}

.carousel-slide.active .slide-image img {
	transform: scale(1.05);
}

.slide-overlay{
	position: absolute;
	top:15px;
	right:15px;
	display:flex;
	flex-direction: column;
	gap:5px;
}

.slide-info{
	padding:30px 20px;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

.slide-info .product-title{
	font-size:1.5rem;
	margin-bottom:15px;
}

.slide-info .product-title a{
	color: var(--dark-bg);
	text-decoration:none;
}

.slide-info .product-description{
	color:#666;
	line-height:1.6;
	margin-bottom:20px;
}

.slide-info .product-action{
	display:flex;
	gap:15px;
	margin-top:15px;
}

.view-btn{
	padding:12px 25px;
	border-radius: 8px;
	font-weight:600;
	cursor:pointer;
	transition:all 0.3s ease;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	text-decoration:none;
	border:none;
	background: #e9ecef;
	color:var(--dark-bg);
	border:2px solid #dee2e6;
}

.view-btn:hover{
	background:var(--dark-bg);
	color:var(--neon-white);
	border-color:var(--dark-bg);
}

.section-headder{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom:40px;
}

.section-header h2{
	color:var(--dark-bg);
	font-size:1.8rem;
	display:flex;
	align-items:center;
	gap:10px;
}

.product-slider .brands-slider{
	position:relative;
	overflow:hidden;
}

.slider-prev .slider-next{
	position:absolute;
	top:50px;
	transform:translateY(-50%);
	width:50px;
	height:50px;
	border-radius:50%;
	background:var(--neon-white);
	color:var(--dark-bg);
	border:2px solid #e9ecef;
	cursor:pointer;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:1.2rem;
	z-index:10;
	transition:all 0.3s ease;
	box-shadow:0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-prev:hover .slider-next:hover{
	background:var(--accent-color);
	color:var(--neon-white);
	border-color:var(--accent-color);
}

.slider-prev{
	right: -25px;
}

.slider-next{
	left: -25px;
}

.products-slider:hover .slider-prev{
	right:10px;
}

.products-slider:hover .slider-next{
	left:10px;
}

.slider-container{
	overflow:hidden;
	padding:20px 0;
}

.slider-track{
	display:flex;
	gap:30px;
	transition: transform 0.5s ease;
}

.slider-slide{
	flex: 0 0 calc(25% - 22.5px);
}

@media (max-width: 1200px){
	.slider-slide{
		flex:0 0 calc(33.333% - 20px);
	}
}

@media (max-width: 768px){
	.slider-slide{
		flex:0 0 calc(50% - 15px);
	}
}

@media (max-width: 576px){
	.slider-slide{
		flex:0 0 100%;
	}
}*/