/* Manufacturing process section */
.manufacturing-process {
    margin: 60px 0;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    padding: 15px;
    text-align: center;
    animation: fadeIn 1.5s ease;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
	border:1px solid #FF5917;
	border-radius:10px;
	margin-bottom:20px;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 89, 23, 0.4);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 89, 23, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    font-size: 6rem;
    font-weight: 700;
    color: rgba(255, 89, 23, 0.2);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    color: rgba(255, 89, 23, 0.2);
    transform: scale(1.1);
}

.process-step h4 {
    color: #FF5917;
    font-size: 2.2 rem;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 1.5rem;
    line-height: 1.6;
	text-align:justify;
}

/* Stats counter section */
.factory-stats {

    margin: 60px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
	border:1px solid #FF5917;
	border-radius:10px;

}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 89, 23, 0.3);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF5917;
    margin-bottom: 10px;
    animation: countUp 2.5s ease forwards;
}

.stat-label {
    font-size: 1.8rem;
    color: #cccccc;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Testimonials section */
.testimonials {
    margin: 60px 0;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 30px;
    position: relative;
    animation: fadeIn 1.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 89, 23, 0.3);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(255, 89, 23, 0.5);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #FF5917;
}

.author-info h5 {
    color: #FF5917;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    margin: 60px 0 40px;
    padding: 50px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 89, 23, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    position: relative;
    overflow: hidden;
	border:1px solid #FF5917;
	border-radius:10px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 89, 23, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    animation: rotateSlow 40s infinite linear;
    z-index: -1;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h3 {
    color: #FF5917;
    font-size: 3.2rem;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease;
}

.cta-section p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    animation: fadeIn 1.8s ease;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #FF5917;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: fadeIn 2s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    box-shadow: 0 5px 15px rgba(255, 89, 23, 0.5);
	background:#000000;
    transform: translateY(-3px);
}

.cta-button:hover::before {
    left: 100%;
}
/* Enhanced factory details styling */
.factory-details {
    padding: 40px;
    margin-top: 40px;
    animation: slideUp 1s ease;
    position: relative;
    overflow: hidden;
		border:1px solid #FF5917;
	border-radius:10px;

}

.factory-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.factory-details h2 {
    text-align: center;
    margin-bottom: 20px;
}

.factory-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.details-column ul {
    list-style: none;
    padding: 0;
}

.details-column ul li {
    padding: 15px 0;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 89, 23, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.details-column ul li:last-child {
    border-bottom: none;
}

.details-column ul li span {
    color: #FF5917;
    margin-right: 10px;
    font-size: 2.3rem;
    transition: all 0.3s ease;
}

.details-column ul li:hover {
    transform: translateX(10px);
    color: #FF5917;
}

.details-column ul li:hover span {
    transform: scale(1.2);
}