
        :root {
            --electric-blue: #0066FF;
            --neon-green: #39FF14;
            --black: #000000;
            --dark-gray: #1a1a1a;
            --light-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--electric-blue) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--neon-green);
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--black) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--electric-blue) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-green);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.9), rgba(57, 255, 20, 0.1)), 
                        url('https://images.airtasker.com/v7/https://airtasker-seo-assets-prod.s3.amazonaws.com/en_AU/1761289635747-DIY-renovation-tools.jpg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content h1 {
            font-size:4.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content p {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: white;
        }
        
        .about-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
            padding: 60px 0;
            color: white;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--neon-green);
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        /* Vision Mission */
        .vision-mission-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .vm-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
        }
        
        .vm-card i {
            font-size: 3rem;
            color: var(--electric-blue);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: white;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            background: var(--light-gray);
            transform: translateY(-5px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--neon-green);
            margin-bottom: 20px;
        }
        
        /* Work Process */
        .process-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 30px 20px;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--electric-blue), var(--neon-green));
            z-index: -1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: white;
        }
        
        .service-card {
            background: var(--light-gray);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h4 {
            color: var(--electric-blue);
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .service-content p {
            flex-grow: 1;
            margin-bottom: 20px;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .stars {
            color: #FFD700;
            margin-bottom: 15px;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .reviewer-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: white;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--electric-blue);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--electric-blue), var(--neon-green));
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .contact-info-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateX(10px);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--electric-blue);
            margin-right: 20px;
        }
        
        /* Footer */
        footer {
            background: var(--black);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }
        
        .footer-links a:hover {
            color: var(--neon-green);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background: var(--neon-green);
            color: var(--black);
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--electric-blue);
            color: white;
        }
        
        .copyright {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .copyright a {
            color: var(--neon-green);
            text-decoration: none;
            margin: 0 10px;
        }
        
        .copyright a:hover {
            color: var(--electric-blue);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .process-step::after {
                display: none;
            }
            
            .navbar-nav {
                text-align: center;
            }
        }
