/* Start custom CSS for html, class: .elementor-element-ec7445b */:root {
            --primary: #000000;
            --secondary: #e9b949;
            --accent: #d74b2a;
            --light: #a6abb1;
            --dark: #000000;
            --gray: #274d6e;
            --light-gray: #1c4e81;
            --perth-sand: #e4d6bc;
             --perth-blue: #ffffff;
            --perth-sun: #f4a742;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--primary);
        }
        
        p {
            margin-bottom: 1.5rem;
            color: var(--gray);
            font-size: 1.1rem;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(215, 75, 42, 0.3);
        }
        
        .btn:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            margin-left: 1rem;
        }
        
        .btn-secondary:hover {
            background-color: white;
            color: var(--primary);
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581833971359-8c8c51a4a550?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1800&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            padding-top: 80px;
            position: relative;
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            animation: fadeIn 1.5s ease;
        }
        
        .hero h1 {
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 2.5rem;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 2rem;
            animation: bounce 2s infinite;
        }
        
        /* Section Styling */
        section {
            padding: 6rem 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            
        }
        
        .section-header h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        /* Why Choose Us */
        .features {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .features:before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background-color: var(--perth-sand);
            border-radius: 50%;
            opacity: 0.2;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        
        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--perth-blue));

            -webkit-text-fill-color: transparent;
        }
        
        /* Services */
        .services {
            position: relative;
        }
        
        .services:after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background-color: var(--perth-sun);
            border-radius: 50%;
            opacity: 0.1;
            z-index: -1;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .service-img:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        }
        
        .service-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .service-content {
            padding: 2rem;
        }
        
        .service-list {
            list-style: none;
            margin: 1.5rem 0;
        }
        
        .service-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .service-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
        }
        
        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, var(--primary) 0%, var(--perth-blue) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .testimonials:before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-color: rgb(2, 2, 2);
            border-radius: 50%;
        }
        
        .testimonials:after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background-color: rgb(0, 0, 0);
            border-radius: 50%;
        }
        
        .testimonials .section-header h2 {
            color: white;
        }
        
        .testimonials .section-header h2:after {
           background: #ffffff;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background: rgb(255, 255, 255);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(68, 68, 68, 0);
            position: relative;
        }
        
        .testimonial-card:before {
            content: '"';
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: rgba(218, 49, 49, 0);
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
        }
        
        .testimonial-text {
            position: relative;
            z-index: 2;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 1.5rem;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--light-gray);
            margin-right: 1rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--secondary), var(--perth-sun));
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        /* Process */
        .process {
            background-color: var(--light);
            position: relative;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 3rem;
            position: relative;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 100px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            z-index: 0;
        }
        
        .step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .step-number {
            font-size: 3rem;
            font-weight: 800;
            color: rgba(0, 0, 0, 0.192);
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: -1;
        }
        
        .step-content {
            position: relative;
            z-index: 2;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .step-content:hover {
            transform: translateY(-10px);
        }
        
        .step-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--perth-blue));
            -webkit-text-fill-color: transparent;
        }
        
        /* FAQ */
        .faq {
            position: relative;
        }
        
        .accordion {
            margin-top: 2rem;
        }
        
        .accordion-item {
            background: white;
            margin-bottom: 1.5rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .accordion-item:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            background: linear-gradient(135deg, var(--light) 0%, white 100%);
            transition: 0.3 ease
        }
        
        .accordion-header:hover {
            background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
        }
        
        .accordion-content {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        
        .accordion-content.active {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }
        
        /* CTA */
        .cta {
            text-align: center;
            background: linear-gradient(135deg, var(--accent) 0%, #c23a1d 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta:before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .cta:after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .cta h2 {
            color: white;
            position: relative;
            z-index: 2;
        }
        
        .cta h2:after {
            display: none;
        }
        
        .cta p {
            color: white;
            max-width: 700px;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 2;
        }
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-20px); }
            60% { transform: translateX(-50%) translateY(-10px); }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .process-steps:before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.3rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0.5rem 1rem;
            }
            
            .hero {
                height: auto;
                padding: 7rem 0;
                background-attachment: scroll;
            }
            
            .process-steps {
                flex-direction: column;
            }
            
            .btn-secondary {
                margin-left: 0;
                margin-top: 1rem;
                display: block;
            }
        }/* End custom CSS */