/* Hero Bölümü*/
.montaj-hero {
    position: relative;
    padding: 120px 0 80px; /* Navbar fixed olduğu için üstten pay verdik */
    background: linear-gradient(135deg, rgba(5, 22, 34, 0.95) 40%, rgba(112, 112, 112, 0.7)), 
                url('../assets/images/hero/montaj.jpg'); /* Arkaya teknik bir iş görseli koyabilirsin */
    background-size: cover;
    background-position: center;
    color: #fff;
    border-bottom: 3px solid #00d2ff; /* Sayfaya bir vurgu rengi çizgisi */
}

.montaj-hero-content .subtitle {
    color: #00d2ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
}

.montaj-hero h1 {
    font-size: 2.8rem;
    margin: 10px 0;
    font-weight: 800;
}

.montaj-hero-content p {
    max-width: 600px;
    opacity: 0.8;
    font-size: 1.1rem;
}





/* Üretim Teknikleri  */
.production-methods-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.methods-flow-wrapper {
  
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    margin-top: 20px;
}

/* Dikey Akış Hattı */
.method-flow-row {
    display: flex;
    gap: 30px;
}

.method-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.method-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid #4da3ff; 
    border-radius: 50%;
    z-index: 2;
    margin-top: 5px;
    transition: all ease-in-out 0.15s;
}

.method-line {
    width: 2px;
    flex-grow: 1;
    background: #f0f0f0;
    margin: 10px 0;
}

/* İçerik Alanı */
.method-info {
    padding-bottom: 50px; /* Maddeler arası mesafe */
}

.method-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.method-title-wrap i {
    font-size: 24px;
    color: #0A3D62; 
}

.method-title-wrap h3 {
    font-size: 20px;
    color: #0A3D62;
    font-weight: 700;
    margin: 0;
}

.method-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    margin-left: 15px;
}

/* Hover Efekti */
.method-flow-row:hover .method-dot {
    background: #4da3ff;
    box-shadow: 0 0 0 6px rgba(77, 163, 255, 0.2);
    
}