  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            color: #2d3436;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        .text-gradient {
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Header Styles */
        .harshwal-nav-header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .harshwal-navbar-container {
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
            position: relative;
        }

        .harshwal-nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
            margin-right: auto;
            flex-shrink: 0;
        }

        .harshwal-nav-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .harshwal-nav-menu-list {
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        .harshwal-nav-menu-item {
            position: relative;
            display: flex;
            align-items: center;
            height: 70px;
        }

        .harshwal-nav-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 8px;
            display: flex;
            align-items: center;
            gap: 3px;
            transition: color 0.3s;
            height: 100%;
            cursor: pointer;
            white-space: nowrap;
        }

        .harshwal-nav-link:hover {
            color: #1a3d5c;
        }

        .harshwal-nav-link-dropdown::after {
            content: '▼';
            font-size: 9px;
            transition: transform 0.3s;
            margin-left: 2px;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-link-dropdown::after {
            transform: rotate(180deg);
        }

        .harshwal-nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            padding: 10px 0;
            z-index: 999;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .harshwal-nav-dropdown-item {
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: all 0.3s;
        }

        .harshwal-nav-dropdown-item:hover {
            background: #f5f7fa;
            color: #1a3d5c;
            padding-left: 25px;
        }

        .harshwal-nav-cta-btn {
            background: linear-gradient(45deg, #5f2a52, #862a2a);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            margin-left: 10px;
        }

        .harshwal-nav-cta-btn:hover {
            background: #6d2349;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 44, 92, 0.3);
        }

        .harshwal-nav-mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            background: none;
            border: none;
            margin-left: 15px;
        }

        .harshwal-nav-mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #1a3d5c;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
            display: block;
        }

        /* Hero Section */
        .hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
            background-image: url('../assets/taxation.jpg'), linear-gradient(135deg, rgba(95, 42, 82, 0.1) 0%, rgba(134, 42, 42, 0.1) 100%);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: white;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: #ffffff;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-tagline {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            background: white;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Service Areas Section */
        .service-areas-section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .service-area-item {
            background: rgba(255, 255, 255, 0.8);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(95, 42, 82, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(95, 42, 82, 0.05);
        }

        .service-area-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(95, 42, 82, 0.15);
        }

        .service-area-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-area-name {
            font-weight: 600;
            color: #2d3436;
        }

        /* Offerings Section */
        .offerings-section {
            padding: 6rem 2rem;
            background: rgba(248, 249, 250, 0.5);
        }

        .offerings-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .offerings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .offering-card {
            background: rgba(255, 255, 255, 0.9);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(95, 42, 82, 0.1);
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(95, 42, 82, 0.05);
        }

        .offering-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(95, 42, 82, 0.15);
        }

        .offering-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2d3436;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .offering-arrow {
            color: #5f2a52;
            font-weight: bold;
        }

        .offering-description {
            color: #636e72;
            line-height: 1.6;
        }

        /* Expectations Section */
        .expectations-section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .expectations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .expectation-item {
            background: rgba(255, 255, 255, 0.8);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid #5f2a52;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(95, 42, 82, 0.05);
        }

        .expectation-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(95, 42, 82, 0.1);
        }

        .expectation-title {
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2d3436;
        }

        .expectation-description {
            color: #636e72;
        }

        /* Why Works Section */
        .why-works-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(95, 42, 82, 0.05) 0%, rgba(134, 42, 42, 0.05) 100%), 
                        url('../assets/tax_cta.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .why-works-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .why-works-content {
            background: rgba(255, 255, 255, 0.9);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(95, 42, 82, 0.1);
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 2rem;
            background: rgba(248, 249, 250, 0.5);
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(95, 42, 82, 0.05);
        }

        .faq-question {
            background: transparent;
            border: none;
            padding: 1.5rem;
            width: 100%;
            text-align: left;
            font-weight: 600;
            color: #2d3436;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(95, 42, 82, 0.05);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #636e72;
        }

        .faq-answer.active {
            padding: 0 1.5rem 1.5rem;
            max-height: 300px;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-icon.rotated {
            transform: rotate(180deg);
        }

        /* Testimonials Section */
        .client-testimonials-showcase {
            background: #ffffff;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .testimonials-container-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .testimonials-header-area {
            text-align: center;
            margin-bottom: 4rem;
        }

        .trusted-firms-headline {
            font-size: 3rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .highlighted-firms-text {
            color: #40e0d0;
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .partnership-description-text {
            font-size: 1.1rem;
            color: #555555;
            max-width: 600px;
            margin: 0 auto;
        }

        .testimonials-carousel-container {
            position: relative;
            margin-bottom: 4rem;
            padding: 2rem 0;
        }

        .testimonials-carousel-wrapper {
            overflow: hidden;
            position: relative;
            padding: 1rem 0;
            margin: -1rem 0;
        }

        .testimonials-cards-grid {
            display: flex;
            transition: transform 0.5s ease;
            gap: 2rem;
        }

        .individual-testimonial-card {
            background: white;
            border: none;
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(95, 42, 82, 0.2);
            flex: 0 0 350px;
            min-height: 300px;
        }

        .individual-testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(145, 92, 132, 0.15), rgba(184, 92, 92, 0.15));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .individual-testimonial-card:hover::before {
            opacity: 1;
        }

        .individual-testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(95, 42, 82, 0.3);
        }

        .individual-testimonial-card > * {
            position: relative;
            z-index: 2;
        }

        .quote-symbol-icon {
            font-size: 3rem;
            color: black;
            font-weight: bold;
            line-height: 1;
            margin-bottom: 1rem;
            font-family: Georgia, serif;
        }

        .testimonial-content-text {
            font-size: 1rem;
            font-style: italic;
            color: rgb(0, 0, 0);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .star-rating-display {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
        }

        .rating-star {
            color: #ff8800;
            font-size: 1.2rem;
        }

        .testimonial-author-info {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding-top: 1rem;
        }

        .author-name-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: rgb(0, 0, 0);
            margin-bottom: 0.25rem;
        }

        .author-position-title {
            font-size: 0.9rem;
            color: rgba(0, 0, 0, 0.8);
            margin-bottom: 0.25rem;
        }

        .carousel-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(95, 42, 82, 0.3);
        }

        .carousel-nav-button:hover {
            background: linear-gradient(135deg, #862a2a, #5f2a52);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(95, 42, 82, 0.4);
        }

        .carousel-nav-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: translateY(-50%) scale(1);
        }

        .carousel-nav-button.prev {
            left: -25px;
        }

        .carousel-nav-button.next {
            right: -25px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(95, 42, 82, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            transform: scale(1.2);
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: white;
            max-width: 1100px;
            margin: 4rem auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-cta-white {
            background: white;
            color: #5f2a52;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-cta-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
            color: #5f2a52;
        }

        /* Footer */
        .harshwal-footer {
            background: black;
            color: #ffffff;
            padding: 4rem 0 2rem;
            margin-top: 6rem;
        }

        .harshwal-footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .harshwal-footer-cta {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .harshwal-cta-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .harshwal-cta-description {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.5;
        }

        .harshwal-btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .harshwal-btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Main Grid Layout */
        .harshwal-footer-grid {
            display: grid;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        /* Desktop Layout - 5 columns */
        @media (min-width: 1024px) {
            .harshwal-footer-grid {
                grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
                gap: 2rem;
            }
        }

        /* Tablet Layout */
        @media (min-width: 768px) and (max-width: 1023px) {
            .harshwal-footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .harshwal-company-info {
                grid-column: 1 / -1;
                margin-bottom: 1rem;
            }
        }

        /* Mobile Layout */
        @media (max-width: 767px) {
            .harshwal-footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .harshwal-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .harshwal-section-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .harshwal-footer-links {
            list-style: none;
            padding: 0;
        }

        .harshwal-footer-links li {
            margin-bottom: 0.8rem;
        }

        .harshwal-footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 400;
        }

        .harshwal-footer-link:hover {
            color: #ffffff;
        }

        /* Social Links */
        .harshwal-social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .harshwal-social-link {
            display: flex;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
            font-weight: 600;
        }

        .harshwal-social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Contact Information Styles */
        .harshwal-contact-info {
            margin-bottom: 1rem;
        }

        .harshwal-contact-label {
            color: #ffffff;
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }

        .harshwal-contact-value {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.4;
            font-size: 0.95rem;
        }

        .harshwal-contact-value a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .harshwal-contact-value a:hover {
            color: #ffffff;
        }

        /* Footer Bottom */
        .harshwal-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 2rem;
        }

        .harshwal-footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .harshwal-footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .harshwal-footer-legal {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .harshwal-footer-legal-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .harshwal-footer-legal-link:hover {
            color: #ffffff;
        }

        /* Mobile specific adjustments */
        @media (max-width: 767px) {
            .harshwal-footer {
                padding: 3rem 0 1rem;
            }

            .harshwal-footer-content {
                padding: 0 1.5rem;
            }

            .harshwal-footer-cta {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }

            .harshwal-cta-title {
                font-size: 1.3rem;
            }

            .harshwal-section-title {
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }

            .harshwal-social-links {
                justify-content: flex-start;
            }

            .harshwal-footer-bottom {
                padding-top: 1rem;
            }

            .harshwal-footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 0.8rem;
            }

            .harshwal-footer-legal {
                justify-content: center;
                gap: 0.8rem;
                flex-wrap: wrap;
                order: 1;
            }

            .harshwal-footer-legal-link {
                font-size: 0.8rem;
                padding: 0.2rem 0.5rem;
                white-space: nowrap;
            }

            .harshwal-footer-copyright {
                order: 2;
                font-size: 0.75rem;
                margin-top: 0.5rem;
            }
        }

        /* Small mobile adjustments */
        @media (max-width: 480px) {
            .harshwal-footer-content {
                padding: 0 1rem;
            }

            .harshwal-footer-legal {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
                max-width: 280px;
                margin: 0 auto;
            }

            .harshwal-footer-legal-link {
                font-size: 0.75rem;
                padding: 0.3rem;
                text-align: center;
            }

            .harshwal-footer-copyright {
                font-size: 0.7rem;
                margin-top: 0.3rem;
            }

            .harshwal-footer-bottom {
                padding-top: 0.8rem;
            }
        }


        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .harshwal-navbar-container {
                padding: 0 15px;
                min-height: 60px;
            }

            .harshwal-nav-logo img {
                height: 35px;
            }

            .harshwal-nav-menu-list {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: left;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.1);
                padding: 20px 0;
                gap: 0;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
                justify-content: flex-start;
                align-items: stretch;
            }

            .harshwal-nav-menu-list.harshwal-nav-active {
                left: 0;
            }

            .harshwal-nav-menu-item {
                width: 100%;
                height: auto;
                display: block;
            }

            .harshwal-nav-link {
                padding: 15px 20px;
                width: 100%;
                justify-content: space-between;
                border-bottom: 1px solid #f0f0f0;
                height: auto;
                font-size: 14px;
            }

            .harshwal-nav-link-dropdown::after {
                content: '+';
                font-size: 20px;
                font-weight: 300;
            }

            .harshwal-nav-menu-item.harshwal-nav-item-active .harshwal-nav-link-dropdown::after {
                content: '−';
            }

            .harshwal-nav-dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                background: #f8f9fa;
                border-radius: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .harshwal-nav-menu-item.harshwal-nav-item-active .harshwal-nav-dropdown {
                display: block;
                max-height: 500px;
            }

            .harshwal-nav-dropdown-item {
                padding: 12px 40px;
                border-bottom: 1px solid #e0e0e0;
            }

            .harshwal-nav-dropdown-item:last-child {
                border-bottom: none;
            }

            .harshwal-nav-dropdown-item:hover {
                padding-left: 45px;
            }

            .harshwal-nav-mobile-toggle {
                display: flex;
            }

            .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(1) {
                transform: rotate(-45deg) translate(-6px, 6px);
            }

            .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(2) {
                opacity: 0;
            }

            .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(3) {
                transform: rotate(45deg) translate(-7px, -8px);
            }

            .harshwal-nav-cta-btn {
                margin: 20px;
                display: block;
                text-align: center;
                width: calc(100% - 40px);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 6rem 1rem 3rem;
                min-height: 50vh;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .offerings-grid {
                grid-template-columns: 1fr;
            }

            .expectations-grid {
                grid-template-columns: 1fr;
            }

            .service-areas-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-section {
                max-width: 90%;
                margin: 2rem auto;
                padding: 3rem 1.5rem;
                border-radius: 15px;
            }

            .individual-testimonial-card {
                flex: 0 0 280px;
                padding: 1.5rem;
                min-height: 280px;
            }

            .carousel-nav-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .carousel-nav-button.prev {
                left: -20px;
            }

            .carousel-nav-button.next {
                right: -20px;
            }

            .trusted-firms-headline {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .cta-section {
                max-width: 95%;
                margin: 1.5rem auto;
                padding: 2.5rem 1rem;
                border-radius: 12px;
            }

            .individual-testimonial-card {
                flex: 0 0 250px;
                padding: 1.2rem;
                min-height: 260px;
            }

            .carousel-nav-button {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .carousel-nav-button.prev {
                left: -18px;
            }

            .carousel-nav-button.next {
                right: -18px;
            }

            .trusted-firms-headline {
                font-size: 2rem;
            }
        }