   
   
   @import '../css/header.css';
   @import '../css/section.css';
   @import '../css/responsive.css';
   @import '../css/animation.css';
   @import '../css/footer.css';
   
   :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #3498db;
        }
        

 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f9fa;
        }
        
        /* Page Header */

        .page-header {
    position: relative;
    width: 100%;
    height: 350px;  /* adjust as needed */
    overflow: hidden;
}

.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Position text ON TOP of the image */
.page-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

/* Optional overlay for better readability */
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.page-header h1 
{
font-size: 3.5rem;
font-weight: bold;
margin-bottom: 20px;
}


 /* Facilities Section */
        .facilities-section {
            padding: 60px 0;
            background: white;
        }
        
        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .facility-card {
            background: #f8f9fa;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .facility-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2.5rem;
        }

        
        .facility-card h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .facility-card p {
            color: #666;
            line-height: 1.7;
        }
        
        /* Quality Control */
        .quality-section {
            padding: 60px 0;
            background: var(--primary-color);
            color: white;
        }
        
        .quality-section .section-title {
            color: white;
        }
        
        .quality-section .section-title::after {
            background: var(--secondary-color);
        }
        
        .quality-section .section-subtitle {
            color: rgba(255,255,255,0.8);
        }
        
        .quality-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .quality-item {
            background: rgba(255,255,255,0.1);
            padding: 35px 25px;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
        }
        
        .quality-item i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .quality-item h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .quality-item p {
            color: rgba(255,255,255,0.9);
            line-height: 1.7;
        }
        

        .stats-section {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--secondary-color), #c0392b);
            color: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: white;
            text-align: center;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
        }
        
        .btn-cta {
            background: var(--primary-color);
            color: white;
            padding: 18px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 15px;
        }
        
        .btn-cta:hover {
            background: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .intro-grid {
                grid-template-columns: 1fr;
            }
            
            .process-step {
                grid-template-columns: 1fr;
            }
            
            .process-step:nth-child(even) .step-content,
            .process-step:nth-child(even) .step-image {
                order: 0;
            }
            
            .timeline-line {
                left: 30px;
            }
            
            .step-number {
                left: 30px;
            }
            
            .intro-highlights {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .intro-image,
            .step-image {
                height: 300px;
            }
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }


        .product-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
         .product-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .product-description {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        
        .product-phone{
        font-weight: bold;
        font-size: 15px !important;
        }

            .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .product-image {
            position: relative;
            overflow: hidden;
            height: 280px;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
                .product-content h3 {
            font-size: 16px;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .product-content p {
            color: #666;
            font-size: 15px;
        }

