.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 );}.elementor-1208 .elementor-element.elementor-element-19963dfd{font-family:"Roboto", Sans-serif;font-size:20px;font-weight:400;text-shadow:0px 0px 0px rgba(0,0,0,0.3);color:#000000;}.elementor-1208 .elementor-element.elementor-element-19963dfd p{margin-block-end:0px;}.elementor-1208 .elementor-element.elementor-element-19963dfd a{transition-duration:0s;}/* Start custom CSS for html, class: .elementor-element-1ecf14b */:root {
            /* Color Palette */
            --primary-blue: #2A4B8C;      /* Trustworthy deep blue */
            --accent-orange: #FF7A30;     /* Energetic orange */
            --neutral-light: #F8F9FA;     /* Clean white */
            --neutral-medium: #E9ECEF;    /* Light gray */
            --neutral-dark: #343A40;      /* Dark gray for text */
            --accent-green: #28A745;      /* Success/eco-friendly green */
            --shadow: rgba(42, 75, 140, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--neutral-light);
            color: var(--neutral-dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3a7a 100%);
            color: white;
            padding: 2rem 0;
            box-shadow: 0 4px 12px var(--shadow);
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--accent-orange);
        }

        .logo::before {
            content: "🎨";
            margin-right: 10px;
            font-size: 2rem;
        }

        .tagline {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        /* Section Styles */
        section {
            padding: 4rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary-blue);
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent-orange);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background-color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--primary-blue);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px var(--shadow);
        }

        .feature-card h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .feature-card h3::before {
            content: "✓";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: var(--accent-green);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            font-size: 0.9rem;
        }

        /* Services Section */
        .services {
            background-color: var(--neutral-medium);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: scale(1.03);
        }

        .service-icon {
            height: 120px;
            background: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-content h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        /* Methods Section */
        .methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .method-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px var(--shadow);
            display: flex;
            align-items: center;
            border-left: 4px solid var(--accent-orange);
        }

        .method-icon {
            width: 50px;
            height: 50px;
            background: var(--neutral-medium);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--primary-blue);
            font-size: 1.5rem;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3a7a 100%);
            color: white;
        }

        .testimonials .section-title h2 {
            color: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .testimonial-text::before {
            
            font-size: 3rem;
            color: var(--accent-orange);
            position: absolute;
            top: -20px;
            left: -10px;
            opacity: 0.5;
        }

        .testimonial-author {
            font-weight: 600;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 5rem 0;
            background: var(--neutral-medium);
        }

        .cta-title {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: var(--accent-orange);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 122, 48, 0.3);
        }

        .cta-button:hover {
            background: #e56a20;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 122, 48, 0.4);
        }

      
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .logo {
                font-size: 2rem;
            }
        }/* End custom CSS */