.banner{
    width:100vw;             /* همیشه عرض واقعی صفحه */
    position:relative;
    left:50%;
    right:50%;
    margin-left:-50vw;
    margin-right:-50vw;      /* بنر دقیقاً در مرکز */
    margin-top:-90px;
}
.breadcrumb{display: none}

.banner img{
    width:100%;
    height:auto;
    display:block;}

        :root {
            --primary-color: #0d3b66;
            --secondary-color: #1a659e;
            --accent-color: #f4a261;
            --light-color: #f7f9fc;
            --dark-color: #1a1a2e;
            --text-color: #333;
            --border-radius: 12px;
            --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'iranyekan', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #f9fafc;
            overflow-x: hidden;
        }

        .containerx {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 100px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-right: auto;
            margin-left: auto;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(244, 162, 97, 0.3);
        }

        .cta-button:hover {
            background-color: #e76f51;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(244, 162, 97, 0.4);
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            border-radius: 2px;
        }

        .section-title p {
            color: #a0a0a0;
            max-width: 750px;
            margin: 15px auto 0;
            font-size: 1rem;
            text-align:center
        }

        /* Compressor Cards */
       /* Compressors Section - New Horizontal Design */
.compressors-containerx {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 40px;
}

.compressor-item {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.compressor-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.compressor-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.compressor-img-containerx {
    flex: 0 0 45%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compressor-img-containerx img {
    width: 100%;
    height: 350px;
    transition: var(--transition);
}

.compressor-item:hover .compressor-img-containerx img {
    transform: scale(1.05);
}

.compressor-text-content {
    flex: 1;
}

.compressor-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.compressor-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.compressor-desc {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
    max-width:520px;
    text-align:justify;

}

.compressor-features {
    list-style-type: none;
    margin-bottom: 25px;
}

.compressor-features li {
    margin-bottom: 12px;
    padding-right: 30px;
    position: relative;
    font-size: 1rem;
}

.compressor-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.brand-tag {
    display: inline-block;
    background-color: rgba(26, 101, 158, 0.1);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(26, 101, 158, 0.2);
}

/* Alternating layout for odd items */
.compressor-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.compressor-item:nth-child(odd)::before {
    right: auto;
    left: 0;
}

.compressor-item:nth-child(odd) .compressor-title::after {
    right: -50;
    left: 182;
}
.ui-box  {
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.08) !important;
    border-radius: 1px !important;
    border:1px #fff !important;
    background-color: #f9fafc !important;
  }

/* Responsive for horizontal design */
@media (max-width: 992px) {
    .compressor-item {
        flex-direction: column !important;
        gap: 30px;
        padding: 30px;
    }
    
    .compressor-img-containerx {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .compressor-img-containerx img {
        height: 100%;
    }
    
    .compressor-item::before {
        width: 100%;
        height: 5px;
        top: 0;
        right: 0;
    }
    
    .compressor-item:nth-child(odd)::before {
        right: 0;
        left: auto;
    }
}

@media (max-width: 576px) {
    .compressor-item {
        padding: 25px 20px;
        gap: 25px;
    }
    
    .compressor-title {
        font-size: 1.2rem;
        line-height: 1.7;
    }
}


        /* Golden Fin Section */
        .golden-fin-section {
            background: linear-gradient(to left, #f7f9fc, #f7f9fc);
            position: relative;
            overflow: hidden;
        }



        .golden-fin-img {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .golden-fin-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .golden-fin-img:hover img {
            transform: scale(1.03);
        }
        .golden-fin-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .golden-fin-text {

            flex: 1;
        }
        .golden-fin-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .golden-feature {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .golden-feature:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .golden-feature i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .golden-feature h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        .golden-feature p {text-align:justify;
        }
        

        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: #ddd;
            padding: 50px 0 30px;
            text-align: center;
        }

        .footer-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .golden-fin-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .align-items-center {margin-top: -8px;}

            .compressors-grid {
                grid-template-columns: 1fr;
            } 
           .banner {
            background-size: cover;
    background-position: center;
    background-repeat: no-repeat;}

    .banner img {margin-top:20px;}
            .section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 80px 0 60px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
   
  .golden-fin-img{
    order:1;
    margin:20px 0;
  }

  .golden-fin-text{
    order:2;
    margin-top: -50px;
  }
  .containerx {
    width:100%;
    max-width:700px;
    margin:0 auto;
    padding:0 20px;
}

.compressors-containerx {  
    width:100%;
    max-width:700px;
    margin:0 auto;
}

     .golden-feature h4 {
        color: var(--primary-color);
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
    .section-title h2 {
        font-size: 1rem;
        max-width: 100%;
        text-align: center;


        } 
        .section-title p{text-align: right;}

        .fade-in {margin-bottom: -50px;}
       .golden-fin-content{margin-top: -50px;}
    }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .ui-box  {
            box-shadow: 0 0px 0px rgba(0, 0, 0, 0.08) !important;
            border-radius: 1px !important;
            border:1px #fff !important;
            background-color: #f9fafc !important;
          }