/* Start custom CSS for html, class: .elementor-element-3130a34 */<style>
       /* ===== Global Styles ===== */
        :root {
            --primary: #2a5c8b;
            --secondary: #e67e22;
            --light: #f8f9fa;
            --dark: #212529;
            --text: #333;
            --white: #fff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.7;
            color: var(--text);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4 {
            color: var(--primary);
            line-height: 1.3;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .btn {
            display: inline-block;
            background: var(--secondary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary);
        }
        
        .btn:hover {
            background: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }
        
        .btn-outline:hover {
            background: var(--secondary);
            color: var(--white);
        }
        
        .text-center {
            text-align: center;
        }
        
        /* ===== Header ===== */
        header {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            padding: 150px 0;
            text-align: center;
        }
        
        header h1{ 
            font-size: 3rem;
            margin-bottom: 20px;
            color: #2667a8;
        }
        
        header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: rgba(31, 92, 172, 0.9);
        }
        
      
        /* ===== Why Choose Us ===== */
        .why-us {
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 20px auto;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .feature:hover {
            transform: translateY(-10px);
        }
        
        .feature i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .feature h3 {
            margin-bottom: 15px;
        }
        
        /* ===== Services ===== */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-img {
            height: 250px;
            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: 30px;
            background: var(--white);
        }
        
        .service-content h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .service-content ul {
            margin: 20px 0;
            padding-left: 20px;
        }
        
        .service-content li {
            margin-bottom: 10px;
        }
        
        /* ===== Process ===== */
        .process {
            background-color: var(--light);
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 0 15px;
            position: relative;
            margin-bottom: 50px;
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 25px;
            border: 5px solid var(--light);
            box-shadow: 0 0 0 4px var(--primary);
        }
        
        .step h3 {
            margin-bottom: 15px;
        }
        
        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 35px;
            right: -50px;
            width: 100px;
            height: 2px;
            background: var(--primary);
        }
        
        /* ===== Gallery ===== */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* ===== Testimonials ===== */
        .testimonials {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .testimonials .section-title {
            color: var(--white);
        }
        
        .testimonials .section-title::after {
            background: var(--secondary);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 10px;
            position: relative;
        }
        
        .testimonial::before {
            content: '\201C';
            font-size: 5rem;
            color: rgba(255,255,255,0.1);
            position: absolute;
            top: 10px;
            left: 10px;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: var(--white);
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        
        /* ===== Suburbs ===== */
        .suburbs {
            background-color: var(--light);
        }
        
        .suburb-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            text-align: center;
        }
        
        .suburb-item {
            background: var(--white);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .suburb-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        /* ===== CTA ===== */
        .cta {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), ;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            text-align: center;
            padding: 100px 0;
        }
        
        .cta h2 {
            color: var(--white);
            margin-bottom: 30px;
        }
        
        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        /* ===== FAQ ===== */
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background: var(--light);
            font-weight: 600;
            cursor: pointer;
            position: relative;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            font-size: 1.5rem;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
      
     
        /* ===== Responsive ===== */
        @media (max-width: 992px) {
            header {
                padding: 120px 0;
            }
            
            header h1 {
                font-size: 2.5rem;
            }
            
            .step:not(:last-child)::after {
                display: none;
            }
            
            .step {
                min-width: 50%;
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            header {
                padding: 100px 0;
                background-attachment: scroll;
            }
            
            header h1 {
                font-size: 2rem;
            }
            
            nav .container {
                flex-direction: column;
            }
            
            .nav-links {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-links li {
                margin: 0 10px 10px;
            }
            
            .step {
                min-width: 100%;
            }
            
            .cta {
                padding: 80px 0;
                background-attachment: scroll;
            }
        }
        
        @media (max-width: 576px) {
            header {
                padding: 80px 0;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .service-card, .feature {
                min-width: 100%;
            }
        }
</style>/* End custom CSS */