.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for html, class: .elementor-element-a69e1a9 *//* CSS Variables */
        :root {
            --primary: #2c3e50;
            --secondary: #e74c3c;
            --accent: #3498db;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --text: #333;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #f9f9f9;
        }

        h1, h2, h3, h4 {
            margin-bottom: 1rem;
            color: var(--primary);
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
          
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: var(--accent);
            transition: var(--transition);
        }

        a:hover {
            color: var(--secondary);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .btn-outline:hover {
            background-color: var(--secondary);
            color: white;
        }

       

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1589939705384-5185137a7f0f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 8rem 0;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: white;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        /* Services Section */
        .services {
            background-color: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            background-color: var(--primary);
            color: white;
            font-size: 2.5rem;
            padding: 1.5rem;
            text-align: center;
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-content h3 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        /* Why Choose Us Section */
        .why-choose {
            background-color: var(--light);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .feature {
            text-align: center;
            padding: 1.5rem;
        }

        .feature i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        /* Process Section */
        .process {
            background-color: white;
        }

        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 2rem;
        }

        .step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 1.5rem;
            position: relative;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 25px;
            right: 0;
            width: 50%;
            height: 2px;
            
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 5rem 0;
        }

        .cta h2 {
            color: white;
        }

        .cta h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        
    </style>
</head>
<body>


    <!-- Hero Section -->
    <section class="hero" id="home">
        <div class="container">
            <h1>Professional Painting Services in Ingle Farm</h1>
            <p>Transform your property with precision, quality materials, and professional workmanship for long-lasting results.</p>
            <a href="#contact" class="btn">Get Free Quote</a>
        </div>
    </section>

    <!-- Services Section -->
    <section class="services" id="services">
        <div class="container">
            <h2>Our Services</h2>
            <p>From detailed interior painting to large-scale industrial projects, we cover a full spectrum of painting needs.</p>
            
            <div class="services-grid">
                <div class="service-card">
                    <div class="service-icon">
                        <i class="fas fa-home"></i>
                    </div>
                    <div class="service-content">
                        <h3>House Painting</h3>
                        <p>Complete interior and exterior painting services for your home with weatherproofing and color consultation.</p>
                    </div>
                </div>
                
                <div class="service-card">
                    <div class="service-icon">
                        <i class="fas fa-paint-roller"></i>
                    </div>
                    <div class="service-content">
                        <h3>Interior Painting</h3>
                        <p>Transform your living spaces with finesse, using low-VOC or eco-friendly paints for a healthier environment.</p>
                    </div>
                </div>
                
                <div class="service-card">
                    <div class="service-icon">
                        <i class="fas fa-building"></i>
                    </div>
                    <div class="service-content">
                        <h3>Commercial Painting</h3>
                        <p>Professional painting for offices, retail spaces, and commercial properties with minimal disruption.</p>
                    </div>
                </div>
                
                <div class="service-card">
                    <div class="service-icon">
                        <i class="fas fa-industry"></i>
                    </div>
                    <div class="service-content">
                        <h3>Industrial Painting</h3>
                        <p>Protective coatings for warehouses, factories, and industrial facilities with high-performance finishes.</p>
                    </div>
                </div>
                
                <div class="service-card">
                    <div class="service-icon">
                        <i class="fas fa-paint-brush"></i>
                    </div>
                    <div class="service-content">
                        <h3>Wall & Ceiling Painting</h3>
                        <p>Feature walls, accent designs, and seamless ceiling finishes that complete your room's look.</p>
                    </div>
                </div>
                
                <div class="service-card">
                    <div class="service-icon">
                        <i class="fas fa-tools"></i>
                    </div>
                    <div class="service-content">
                        <h3>Room Painting</h3>
                        <p>Custom painting solutions for every room - bedrooms, living areas, kitchens, and bathrooms.</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Why Choose Us Section -->
    <section class="why-choose" id="why-choose">
        <div class="container">
            <h2>Why Choose AJ Painting Services</h2>
            <p>We combine local expertise with professional workmanship to deliver exceptional results for every project.</p>
            
            <div class="features">
                <div class="feature">
                    <i class="fas fa-map-marker-alt"></i>
                    <h3>Local Expertise</h3>
                    <p>We understand Ingle Farm's climate, architecture, and common property challenges.</p>
                </div>
                
                <div class="feature">
                    <i class="fas fa-award"></i>
                    <h3>Quality Materials</h3>
                    <p>We use premium paints and materials to ensure long-lasting, beautiful finishes.</p>
                </div>
                
                <div class="feature">
                    <i class="fas fa-users"></i>
                    <h3>Skilled Team</h3>
                    <p>Our trained painters deliver precision work with attention to every detail.</p>
                </div>
                
                <div class="feature">
                    <i class="fas fa-shield-alt"></i>
                    <h3>Written Warranty</h3>
                    <p>We stand behind our work with a written warranty and guarantee.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Process Section -->
    <section class="process" id="process">
        <div class="container">
            <h2>Our Painting Process</h2>
            <p>We follow a systematic approach to ensure quality results from start to finish.</p>
            
            <div class="process-steps">
                <div class="step">
                    <div class="step-number">1</div>
                    <h3>Consultation & Quote</h3>
                    <p>We begin with a site visit and provide a clear, written quote.</p>
                </div>
                
                <div class="step">
                    <div class="step-number">2</div>
                    <h3>Surface Preparation</h3>
                    <p>We prepare surfaces by removing old paint, patching, and cleaning.</p>
                </div>
                
                <div class="step">
                    <div class="step-number">3</div>
                    <h3>Protection & Masking</h3>
                    <p>We protect your furniture, floors, and fixtures from paint splatter.</p>
                </div>
                
                <div class="step">
                    <div class="step-number">4</div>
                    <h3>Primer & Undercoat</h3>
                    <p>We apply suitable primers to ensure proper adhesion and coverage.</p>
                </div>
                
                <div class="step">
                    <div class="step-number">5</div>
                    <h3>Topcoat Application</h3>
                    <p>We apply the agreed number of topcoats for a smooth, durable finish.</p>
                </div>
                
                <div class="step">
                    <div class="step-number">6</div>
                    <h3>Inspection & Cleanup</h3>
                    <p>We inspect our work, make touch-ups, and leave your space spotless.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="cta" id="contact">
        <div class="container">
            <h2>Ready to Transform Your Property?</h2>
            <p>Contact us today for a free, no-obligation quote on your painting project.</p>
            <a href="tel:+61123456789" class="btn">Call Now</a>
            <a href="mailto:info@ajpaintingservices.com" class="btn btn-outline">Email Us</a>
        </div>
    </section>/* End custom CSS */