/* Why Choose Us Section */
.why-choose-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section .title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.why-choose-section .title.text-orange {
    color: #ff6b00;
}

.why-choose-section .title .text-dark {
    color: #2c3e50 !important;
}

.why-choose-section .lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.why-choose-section .feature-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-choose-section .feature-item:hover {
    transform: translateY(-5px);
    border-left-color: #ff6b00;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.why-choose-section .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-section .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.why-choose-section .feature-item p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}


.why-choose-section .fa-quote-left,
.why-choose-section .fa-cube {
    color: #ff6b00;
    font-size: 1.2rem;
}

.why-choose-section .mt-5.pt-3 p {
    font-style: italic;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.why-choose-section .mt-5.pt-3 i {
    position: absolute;
    left: 0;
    top: 5px;
}

/* Timeline Styles */
.features-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px 0;
    gap: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features-timeline::-webkit-scrollbar {
    display: none;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    text-align: center;
    padding: 20px 15px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff6b00;
    margin-bottom: 10px;
}

.timeline-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.timeline-connector {
    color: #ddd;
    font-size: 1.5rem;
    margin: 0 -15px;
    z-index: 1;
}

/* Feature Highlights */
.feature-highlights {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin: 10px 15px;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.highlight-item i {
    font-size: 1.2rem;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
}

/* Button Styles */
.btn-orange {
    background-color: #ff6b00;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #e05d00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .features-timeline {
        padding-bottom: 30px;
    }
    
    .timeline-item {
        min-width: 160px;
        padding: 15px 10px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-content h5 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    .highlight-item {
        margin: 8px 10px;
        padding: 8px 15px;
    }
    
    .highlight-item i {
        font-size: 1.1rem;
        width: 25px;
        height: 25px;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .features-timeline {
        padding-bottom: 40px;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .timeline-item {
        min-width: 140px;
        padding: 12px 8px;
    }
    
    .timeline-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .highlight-item {
        margin: 6px 8px;
        padding: 8px 12px;
    }
    
    .highlight-item i {
        font-size: 1rem;
    }
    
    .highlight-item span {
        font-size: 0.85rem;
    }
    
    .btn-orange {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .why-choose-section {
        padding: 50px 0;
    }
    
    .features-timeline {
        padding: 10px 0 30px;
    }
    
    .timeline-item {
        min-width: 120px;
        padding: 10px 5px;
    }
    
    .timeline-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .timeline-content h5 {
        font-size: 0.9rem;
    }
    
    .timeline-content p {
        font-size: 0.8rem;
    }
    
    .highlight-item {
        margin: 5px 6px;
        padding: 6px 10px;
        border-radius: 30px;
    }
    
    .highlight-item i {
        font-size: 0.9rem;
        width: 22px;
        height: 22px;
        margin-right: 6px;
    }
    
    .highlight-item span {
        font-size: 0.8rem;
    }
}

.why-choose-section .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.why-choose-section .title.text-orange {
    color: #ff6b00;
    position: relative;
}

.why-choose-section .title.text-orange:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 8px;
    background: rgba(255, 107, 0, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.why-choose-section .lead {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #ff6b00;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b00;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Feature Line Section */
.feature-line {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    border-left: 3px solid #ff6b00;
}

.feature-line .vr {
    opacity: 0.3;
    height: 30px;
    background-color: #666;
}

.client-badge {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 2px 10px;
    margin: 0 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .feature-line {
        padding: 15px;
    }
    
    .feature-line > div > div:first-child {
        margin-bottom: 10px;
    }
    
    .feature-line .vr {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .feature-line {
        font-size: 0.95rem;
    }
    
    .client-badge {
        font-size: 0.8rem;
        padding: 2px 8px;
    }
}

/* Raw Material to Component Section */
.raw-to-component {
    background: linear-gradient(135deg, #fff8f2 0%, #fff 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    border: 1px dashed rgba(255, 107, 0, 0.3);
}

.raw-to-component h3 {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.raw-to-component .text-orange {
    color: #ff6b00;
    position: relative;
}

.raw-to-component .bi-arrow-right {
    font-size: 1.8rem;
    vertical-align: middle;
    margin: 0 10px;
    color: #ff6b00;
    opacity: 0.7;
}

.raw-to-component p {
    color: #666;
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

/* Image Container */
.why-choose-image-container {
    position: relative;
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.why-choose-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-choose-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 1199.98px) {
    .why-choose-section .title {
        font-size: 2.2rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 991.98px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-section .title {
        font-size: 2rem;
        text-align: center;
        display: block;
    }
    
    .why-choose-section .title.text-orange {
        display: inline-block;
        margin-top: 5px;
    }
    
    .why-choose-image-container {
        margin-top: 40px;
        max-width: 500px;
    }
    
    .raw-to-component {
        text-align: center;
    }
    
    .raw-to-component h3 {
        display: block;
        margin: 10px 0;
    }
    
    .raw-to-component .bi-arrow-right {
        display: inline-block;
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

@media (max-width: 767.98px) {
    .why-choose-section .title {
        font-size: 1.8rem;
    }
    
    .why-choose-section .lead {
        font-size: 1.05rem;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .raw-to-component {
        padding: 25px 20px;
    }
    
    .raw-to-component h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-section .title {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .raw-to-component {
        padding: 20px 15px;
    }
    
    .raw-to-component h3 {
        font-size: 1.2rem;
    }
    
    .raw-to-component .bi-arrow-right {
        font-size: 1.5rem;
    }
}