/* ===== PROCESS SECTION ===== */
    .hose-process {
    background: var(--light-gray);
    padding: 70px 0;
    padding: 70px 50px;
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
}


.hose-step {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.step-number {
     display: inline-block;
    background: #2ecc71;
    color: white;
    padding: 5px 30px;
    border-radius: 500px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.step-info{
width: 60%;
margin-bottom: 20px;

    width: 60%;
    margin-bottom: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
}
.step-visual{
    width: 40%;
}
 .step-info h3 {
    font-size: 35px;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.step-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.process-details {
    margin: 10px 0;
    margin-bottom: 20px;
    padding: 10px;
    background: var(--light-gray);
    min-height: 191px;
    border-radius: 10px;
}

.process-details h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.process-details ul {
    list-style: none;
    padding-left: 10px;
}

.process-details li {
    color: #666;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.process-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.seo-note {
    background: rgba(52, 152, 219, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    margin: 10px 0;
    color: #2c3e50;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hose-container {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.hose-body {
    width: 100%;
    height: 15px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 3px solid #d0d0d0;
}

.hose-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 9px;
    transition: width 0.8s ease;
}

.hose-ends {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.hose-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.hose-label {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-tip {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}
.lightbupb{
    width: 45px;
    height: 45px;
}
.step-tip i {
    color: #f39c12;
    font-size: 1.5rem;
}

.step-tip p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}



     .about-content_index{
                    width: 100%;
    justify-content: space-between;
    gap: 20px;
    display: flex;


                    }
                    .about-text_index{
                        width: 50%;
                    }
                    .text_index{
                            display: flex;
    flex-direction: column;
    width: 50%;
                    }
                    .step-visual_index{
                            display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
                    }




@media (max-width: 992px) {
    .hose-step {
        grid-template-columns: 1fr;
    }
    .hose-container {
    width: 100%;
    max-width: 100%;
    position: relative;
}

    .hose-step:nth-child(even) .step-visual {
        order: 0;
    }
.step-info, .step-visual{
    width: 100%;
}

.step-info {
    margin-top: 20px;
}

 .hose-process {
    padding: 70px 5px;
}
.hose-step{
    flex-direction: column;
}
}

@media (max-width: 576px) {
    .hose-steps {
        gap: 60px;
    }
    
    .step-info h3 {
        font-size: 1.6rem;
    }


    .about-content_index {
    flex-direction: column;
}

.about-text_index {
    width: 100%;
}


}