:root {
            --primary-color: #115abb; /* Deep teal for industrial feel */
            --secondary-color: #112a4b; /* Lighter teal */
            --accent-color: #FF6D00; /* Safety orange */
            --dark-color: #002F35;
            --light-color: #E0F7FA;
        }

body {
            font-family: 'Roboto', sans-serif;
        }
        
        .about-section1 {
            background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .about-section1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1530549387789-4c1017266635?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.08;
            z-index: 0;
        }
        
        .section-header1 {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-header1 h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-header1 h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-color);
        }
        
        .about-content1 {
            background: white;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
            border-top: 4px solid var(--accent-color);
        }
        
        .about-content1:hover {
            transform: translateY(-5px);
        }
        
        .about-content1 h3 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .about-content1 p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .highlight-text {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .services-grid1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .service-card1 {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 3px solid var(--secondary-color);
            transition: all 0.3s ease;
        }
        
        .service-card1:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-left: 3px solid var(--accent-color);
        }
        
        .service-icon1 {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .service-card1 h4 {
            color: var(--dark-color);
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        
        .service-card1 p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        .cta-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .cta-button:hover {
            background: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .cta-button i {
            margin-left: 10px;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 40px;
            background: rgba(0, 96, 100, 0.1);
            padding: 30px;
            border-radius: 8px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            min-width: 150px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: var(--dark-color);
            font-size: 1rem;
            font-weight: 500;
        }
        
        .quality-badge {
            display: inline-block;
            background: var(--light-color);
            color: var(--primary-color);
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 10px;
            margin-bottom: 10px;
        }
        
        @media (max-width: 768px) {
            .about-content1 {
                padding: 30px 20px;
            }
            
            .section-header1 h2 {
                font-size: 2rem;
            }
            
            .services-grid1 {
                grid-template-columns: 1fr;
            }
            
            .stat-item {
                min-width: 120px;
                padding: 15px 10px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }