  :root {
            --color-primary-dark: #1C2E4A; /* Deep Navy Blue */
            --color-accent-orange: #FF6600; /* Vibrant Orange */
            --color-light-bg: #F8F8F8; /* Light Grey Background */
            --color-white: #FFFFFF;
            --color-dark-text: #2C2C2C;
            --color-grey-text: #6B6B6B;
            --color-light-grey-border: #E0E0E0;

            /* New CSS variables for 3D card tilt and depth */
            --card-hover-tilt-x: -5deg; /* Tilt up on X-axis */
            --card-hover-tilt-y: 5deg; /* Tilt right on Y-axis */
            --card-hover-translateZ: 30px; /* Pop out effect */
        }

        body {
            font-family: 'Syne', sans-serif;
            background-color: var(--color-light-bg);
            color: var(--color-dark-text);
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        h1, h2, h3, h4 {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            color: var(--color-dark-text);
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        h1 { font-weight: 800; }

        strong {
            font-weight: 600;
            color: var(--color-accent-orange);
        }

        p {
            font-weight: 400; /* Syne 400 for paragraph readability */
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform;
        }
        .scroll-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-padding {
            padding: 100px 0;
        }

        /* HERO SECTION */
        .hero-section {
            background: linear-gradient(135deg, var(--color-primary-dark), #0F2027);
            color: var(--color-white);
            padding: 150px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom-left-radius: 60px;
            border-bottom-right-radius: 60px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            animation: fadeInScale 1.5s ease-out forwards;
        }

        #heroCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .hero-title {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            color: var(--color-white);
        }
        .hero-subtitle {
            font-size: 1.75rem;
            color: var(--color-white);
            margin-bottom: 3rem;
            font-weight: 400;
        }
        .hero-subtitle strong {
            color: inherit;
            font-weight: inherit;
        }

        .hero-cta-button {
            background-color: var(--color-accent-orange);
            color: var(--color-white);
            padding: 1.2rem 3rem;
            border-radius: 9999px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
            will-change: transform, box-shadow;
        }

        .hero-cta-button:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 15px 35px rgba(255, 102, 0, 0.6);
            background-color: #FF5500;
        }

        .hero-cta-button::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            filter: blur(10px);
            transform: skewX(-20deg);
            transition: transform 0.8s ease-out, opacity 0.1s ease-in;
            opacity: 0;
            z-index: 2;
            pointer-events: none;
            will-change: transform, opacity;
        }

        .hero-cta-button:hover::after {
            transform: translateX(300%) skewX(-20deg);
            opacity: 1;
            transition: transform 0.8s ease-out, opacity 0.3s ease-in 0.1s;
        }

        @keyframes fadeInScale {
            0% { opacity: 0; transform: scale(0.95); }
            100% { opacity: 1; transform: scale(1); }
        }

        .section-title {
            font-size: 3.2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--color-dark-text);
        }
        .section-description {
            font-size: 1.25rem;
            color: var(--color-grey-text);
            text-align: center;
            max-width: 900px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            font-weight: 400;
        }

        /* Why Choose Us Section & Services Section (3D Card Hover) */
        .why-choose-card, .service-card {
            background-color: var(--color-white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid var(--color-light-grey-border);
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease;
            text-align: center;
            will-change: transform, box-shadow;
            transform-style: preserve-3d;
            perspective: 1000px;
            position: relative;
            overflow: hidden;
        }
        .why-choose-card:hover, .service-card:hover {
            transform: perspective(1000px) translateY(-15px) translateZ(var(--card-hover-translateZ)) rotateX(var(--card-hover-tilt-x)) rotateY(var(--card-hover-tilt-y)) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.25), 0 0 20px rgba(255, 102, 0, 0.5);
            border-color: var(--color-accent-orange);
        }

        .service-card {
            border-radius: 15px;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background-color: var(--color-accent-orange);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease-in-out;
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }

        .why-choose-card .icon, .service-card .icon {
            font-size: 4rem;
            color: var(--color-accent-orange);
            margin-bottom: 1.5rem;
        }
        .why-choose-card h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .service-card h3 {
            font-size: 1.8rem;
        }

        /* Process Section */
        #our-process {
            background-color: var(--color-primary-dark);
        }
        #our-process .section-title, #our-process .section-description {
            color: var(--color-white);
        }
        .process-step-card {
            background-color: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            will-change: transform, background-color, box-shadow;
        }
        .process-step-card:hover {
            transform: translateY(-8px) scale(1.01);
            background-color: rgba(255, 255, 255, 0.15);
            border-color: var(--color-accent-orange);
            box-shadow: 0 10px 25px rgba(255, 102, 0, 0.25);
        }
        .process-step-number {
            font-size: 3rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.15);
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            z-index: 0;
            line-height: 1;
            transition: color 0.3s ease;
        }
        .process-step-card:hover .process-step-number {
            color: rgba(255, 255, 255, 0.3);
        }
        .process-step-card .icon {
            font-size: 4.5rem;
            color: var(--color-accent-orange);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        .process-step-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 1;
        }

        /* Stats/Results Section */
        #results-stats {
            background-color: var(--color-white);
        }
        .stat-item {
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 15px;
            background-color: var(--color-light-bg);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--color-light-grey-border);
            will-change: transform, box-shadow;
            transition: all 0.3s ease-out;
        }
        .stat-item:hover {
             transform: translateY(-5px);
             box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--color-accent-orange);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--color-dark-text);
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* Tools We Use Section */
        .tool-card {
            background-color: var(--color-white);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--color-light-grey-border);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 150px; /* Ensure consistent height for cards */
            will-change: transform, box-shadow, border-color;
        }
        .tool-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-color: var(--color-accent-orange);
        }
        .tool-card i { /* Style for Font Awesome icons */
            font-size: 3.5rem; /* Larger icon size */
            color: #4A4A4A; /* Default color for icons */
            margin-bottom: 0.75rem;
            transition: color 0.3s ease; /* Smooth transition for color */
        }
        .tool-card:hover i {
            color: var(--color-accent-orange); /* Change color on hover */
        }
        .tool-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-dark-text);
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* Testimonials Section */
        #testimonials {
            background-color: var(--color-light-bg);
        }
        .testimonial-carousel-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background-color: var(--color-white);
            padding: 2.5rem 0;
            border: 1px solid var(--color-light-grey-border);
        }
        .testimonial-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        .testimonial-item {
            flex-shrink: 0;
            width: 100%;
            padding: 1.5rem 2.5rem;
            text-align: center;
        }
        .testimonial-text {
            font-size: 1.15rem;
            font-style: italic;
            color: var(--color-dark-text);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-weight: 400;
        }
        .testimonial-author {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--color-accent-orange);
        }
        .testimonial-title-meta {
            font-size: 0.95rem;
            color: var(--color-grey-text);
            font-weight: 400;
        }
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            z-index: 10;
            position: relative;
        }
        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: #DEDEDE;
            margin: 0 7px;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s;
        }
        .dot.active {
            background-color: var(--color-accent-orange);
            transform: scale(1.2);
        }

        /* FAQ Section */
        #faq-section {
            background-color: var(--color-white);
        }
        #faq-section .section-container {
            max-width: 900px;
            margin: 0 auto;
            margin-top: 3rem;
        }
        .faq-item {
            border-bottom: 1px solid var(--color-light-grey-border);
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 1.5rem 1rem;
            font-size: 1.25rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
            color: var(--color-dark-text);
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        .faq-question:hover, .faq-question.active {
            color: var(--color-accent-orange);
        }
        .faq-question span {
            flex-grow: 1;
            flex-shrink: 1;
            min-width: 0;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding: 0 1rem;
            font-size: 1rem;
            color: var(--color-grey-text);
            font-weight: 400;
        }
        .faq-answer.open {
            max-height: 300px;
            padding-bottom: 1.5rem;
        }
        .faq-toggle-icon {
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }
        .faq-question.active .faq-toggle-icon {
            transform: rotate(45deg);
        }

        /* Contact Section */
        #contact-us {
            background-color: var(--color-primary-dark);
            color: var(--color-white);
            text-align: center;
            padding: 80px 0;
        }
        #contact-us .section-title, #contact-us .section-description {
            color: var(--color-white);
        }
        .contact-cta-button {
            background-color: var(--color-accent-orange);
            color: var(--color-white);
            padding: 1rem 2.5rem;
            border-radius: 9999px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
            display: inline-block;
            margin-top: 2rem;
            will-change: transform, box-shadow;
        }
        .contact-cta-button:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 12px 25px rgba(255, 102, 0, 0.6);
            background-color: #FF5500;
        }

        /* Footer */
        .site-footer {
            background-color: #2C2C2C;
            color: var(--color-white);
            padding: 60px 0 30px;
            font-size: 0.9rem;
            font-weight: 400;
        }
        .site-footer a {
            color: var(--color-white);
            transition: color 0.3s;
        }
        .site-footer a:hover {
            color: var(--color-accent-orange);
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-accent-orange);
            margin-bottom: 1rem;
        }
        .footer-description {
            color: #A0A0A0;
            margin-bottom: 1.5rem;
            max-width: 350px;
        }
        .footer-heading {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links li a {
            color: #E0E0E0;
        }
        .footer-social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background-color: #444444;
            margin-right: 0.5rem;
            transition: background-color 0.3s ease;
        }
        .footer-social-icons a:hover {
            background-color: var(--color-accent-orange);
        }
        .footer-bottom-bar {
            border-top: 1px solid #444444;
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: #A0A0A0;
            font-weight: 400;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3.5rem;
            }
            .hero-subtitle {
                font-size: 1.5rem;
            }
            .section-title {
                font-size: 2.5rem;
            }
            .why-choose-card h3, .service-card h3, .process-step-card h3 {
                font-size: 1.7rem;
            }
        }

        @media (max-width: 767px) {
            .hero-section {
                padding: 100px 0 80px;
                border-bottom-left-radius: 40px;
                border-bottom-right-radius: 40px;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
                margin-bottom: 2rem;
            }
            .hero-cta-button {
                padding: 0.9rem 2rem;
                font-size: 0.9rem;
            }
            .section-padding {
                padding: 60px 0;
            }
            .section-title {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            .section-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            .why-choose-card, .service-card, .process-step-card, .stat-item, .tool-card {
                padding: 2rem 1.5rem;
            }
            .why-choose-card h3, .service-card h3, .process-step-card h3 {
                font-size: 1.5rem;
            }
            .why-choose-card .icon, .service-card .icon, .process-step-card .icon {
                font-size: 3rem;
            }
            .stat-number {
                font-size: 2.8rem;
            }
            .stat-label {
                font-size: 1rem;
            }
            .tool-card i { /* Adjust icon size for mobile */
                font-size: 3rem;
            }
            .faq-question {
                font-size: 1.1rem;
                padding: 1rem 0.8rem;
            }
            .faq-question span {
                flex-basis: calc(100% - 2.5rem);
                max-width: calc(100% - 2.5rem);
            }
            .faq-toggle-icon {
                margin-left: 0.5rem;
            }
            .faq-answer {
                padding: 0 0.8rem;
            }
            .footer-logo {
                font-size: 1.8rem;
            }
            .footer-heading {
                font-size: 1rem;
            }
            .footer-links li {
                margin-bottom: 0.7rem;
            }
        }
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
        }