* {
    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;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    /* background: linear-gradient(135deg, #2d3436 0%, #5f2a52 50%, #862a2a 100%); */
    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: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%); */
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   3. Layout Utilities
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-title {
    margin-bottom: 16px;
}

/* New navbar css starts here */

        /* 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;
        }

        /* Logo Styles - Positioned at extreme left */
        .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;
        }

        /* Alternative text logo if no image */
        .harshwal-nav-logo-text {
            color: #1a3d5c;
            font-size: 24px;
            font-weight: bold;
            margin-right: 5px;
        }

        .harshwal-nav-logo-h {
            background: #1a3d5c;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 24px;
            font-weight: bold;
        }

        .harshwal-nav-tagline {
            font-size: 10px;
            color: #666;
            font-weight: normal;
            margin-left: 10px;
        }

        /* Navigation Menu Styles - Right aligned with proper spacing */
        .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;
        }

        /* Dropdown Arrow */
        .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);
        }

        /* Dropdown Menu Styles */
        .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;
        }

        /* CTA Button */
        .harshwal-nav-cta-btn {
            /* background: #8b2c5c; */
            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);
        }

        /* Mobile Menu Toggle */
        .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;
        }

        /* Responsive adjustments for different screen sizes */
        @media screen and (max-width: 1400px) {
            .harshwal-navbar-container {
                padding: 0 30px;
            }
        }

        @media screen and (max-width: 1200px) {
            .harshwal-nav-menu-list {
                gap: 15px;
            }
            
            .harshwal-nav-link {
                font-size: 14px;
                padding: 0 6px;
            }
            
            .harshwal-nav-cta-btn {
                padding: 9px 18px;
                font-size: 13px;
            }
        }

        /* Mobile Styles */
        @media screen and (max-width: 968px) {
            .harshwal-navbar-container {
                padding: 0 15px;
                min-height: 60px;
            }

            .harshwal-nav-logo img {
                height: 35px;
            }

            .harshwal-nav-logo-text {
                font-size: 20px;
            }

            .harshwal-nav-logo-h {
                font-size: 20px;
            }

            .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);
            }

            .harshwal-nav-tagline {
                display: none;
            }
        }

        @media screen and (max-width: 480px) {
            .harshwal-navbar-container {
                min-height: 60px;
                padding: 0 10px;
            }

            .harshwal-nav-logo img {
                height: 30px;
            }

            .harshwal-nav-menu-list {
                top: 60px;
                max-height: calc(100vh - 60px);
            }

            .harshwal-nav-link {
                padding: 12px 15px;
                font-size: 14px;
            }

            .harshwal-nav-dropdown-item {
                padding: 10px 30px;
                font-size: 13px;
            }
        }

        /* Hover Effects for Desktop */
        @media (min-width: 969px) {
            .harshwal-nav-menu-item:hover .harshwal-nav-dropdown {
                animation: harshwalNavSlideDown 0.3s ease;
            }
        }

        @keyframes harshwalNavSlideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Demo Content */
        .content {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        h1 {
            color: #1a3d5c;
            margin-bottom: 20px;
        }

        p {
            color: #666;
            line-height: 1.6;
        }
/* New navbar css ends here */

/* 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;
        }
                /* Buttons */
        .btn {
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .btn-cta {
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: #ffffff !important;
            margin-left: 1rem;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(95, 42, 82, 0.3);
            color: #ffffff !important;
        }

        .btn-primary-cta {
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: #ffffff;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1.1rem;
            border: 2px solid transparent;
        }

        .btn-primary-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(95, 42, 82, 0.3);
        }

        /* 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: linear-gradient(135deg, rgba(95, 42, 82, 0.1) 0%, rgba(134, 42, 42, 0.1) 100%);
        } */
        
        .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 */
            background-image:  url('../assets/Group 26.png'), 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: linear-gradient(135deg, #2d3436 0%, #5f2a52 50%, #862a2a 100%); */
            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: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-tagline {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            background: white;
            /* background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%); */
            -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;
            color: #5f2a52;
            margin-bottom: 1rem;
        } */

        .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;
        }

        /* What We Offer 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 This 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%);
        } */
        
        .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/bgcta.jpg'); /* Add your image URL here */
            background-size: cover; /* Ensures the image covers the entire section */
            background-position: center; /* Centers the image */
            background-repeat: no-repeat; /* Prevents the image from repeating */
}

        .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);
        }

        /* Testimonials Section */
        /* .testimonials-section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial {
            background: rgba(255, 255, 255, 0.8);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(95, 42, 82, 0.2);
            box-shadow: 0 5px 15px rgba(95, 42, 82, 0.05);
            transition: all 0.3s ease;
        }

        .testimonial:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(95, 42, 82, 0.15);
        }

        .testimonial-quote {
            font-style: italic;
            color: #636e72;
            margin-bottom: 1rem;
            font-size: 1rem;
            line-height: 1.6;
        }

        .testimonial-author {
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .testimonial-title {
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 0.25rem;
        } */

        /* 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);
        }

        /* CTA Section */
        /* .cta-section {
            padding: 6rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: white;
        } */

    /* CTA Section */
        .cta-section {
            padding: 4rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: white;
            
            /* Centering and width constraints */
            max-width: 1100px;
            margin: 4rem auto;
            border-radius: 20px;
            
            /* Box shadow for better visual appeal */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .cta-section {
                max-width: 90%;
                margin: 2rem auto;
                padding: 3rem 1.5rem;
                border-radius: 15px;
            }
        }

        @media (max-width: 480px) {
            .cta-section {
                max-width: 95%;
                margin: 1.5rem auto;
                padding: 2.5rem 1rem;
                border-radius: 12px;
            }
        }

        .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 */
        .footer {
            background: black;
            color: #ffffff;
            padding: 4rem 0 2rem;
        }

        /* Accessibility improvements */
        .dropdown-toggle:focus,
        .dropdown-item:focus {
            outline: 2px solid rgba(95, 42, 82, 0.5);
            outline-offset: 2px;
        }

        /* Animation for dropdown appearance */
        @keyframes dropdownFadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-menu.show {
            animation: dropdownFadeIn 0.2s ease-out;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar-logo {
                height: 40px;
            }

            .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;
            }

            .btn-cta {
                margin-left: 0;
                margin-top: 1rem;
                display: inline-block;
                text-align: center;
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .service-areas-grid {
                gap: 1rem;
            }
        }

        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    /* ==========================================================================
   15. Footer
   ========================================================================== */

/* .footer {
    background: black;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-cta-description {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-section-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-contact .contact-info {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
}

.footer-contact .contact-info strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
    font-weight: 600;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #ffffff;
}
.btn-footer-cta {
    background: #ffffff;
    color: #5f2a52;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
} */

.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;
            }
        }

        .client-testimonials-showcase {
            background: #ffffff;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .testimonials-container-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header Area */
        .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;
        }

        /* Carousel Container */
        .testimonials-carousel-container {
            position: relative;
            margin-bottom: 4rem;
            padding: 2rem 0; /* Add padding to prevent clipping */
        }

        .testimonials-carousel-wrapper {
            overflow: hidden;
            position: relative;
            padding: 1rem 0; /* Additional padding for shadows and hover effects */
            margin: -1rem 0; /* Negative margin to offset the padding */
        }

        .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;
        }

        .author-company-name {
            font-size: 0.9rem;
            color: #000000;
            font-weight: 500;
        }

        /* Navigation Arrows */
        .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;
        }

        /* Dots Indicator */
        .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);
        }

        /* Performance Metrics Section */
        /* .performance-metrics-section {
            border: none;
            border-radius: 20px;
            padding: 3rem 2rem;
            margin-top: 2rem;
            box-shadow: 0 8px 25px rgba(95, 42, 82, 0.2);
        } */

        .metrics-display-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .single-metric-item {
            position: relative;
        }

        .metric-number-display {
            font-size: 3.5rem;
            font-weight: 700;
            color: #40e0d0;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .metric-label-text {
            font-size: 1rem;
            color: rgba(0, 0, 0, 0.9);
            font-weight: 500;
        }

        /* Mobile Responsive Design */
        @media (max-width: 768px) {
            .testimonials-container-wrapper {
                padding: 0 1rem;
            }
            
            .trusted-firms-headline {
                font-size: 2.5rem;
            }
            
            .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;
            }
            
            .metrics-display-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .metric-number-display {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .client-testimonials-showcase {
                padding: 4rem 0;
            }
            
            .trusted-firms-headline {
                font-size: 2rem;
            }
            
            .partnership-description-text {
                font-size: 1rem;
            }
            
            .individual-testimonial-card {
                flex: 0 0 250px;
                padding: 1.2rem;
                min-height: 260px;
            }
            
            .quote-symbol-icon {
                font-size: 2.5rem;
            }
            
            .testimonial-content-text {
                font-size: 0.9rem;
            }
            
            .carousel-nav-button {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .carousel-nav-button.prev {
                left: -18px;
            }
            
            .carousel-nav-button.next {
                right: -18px;
            }
            
            .performance-metrics-section {
                padding: 2rem 1rem;
            }
            
            .metrics-display-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .metric-number-display {
                font-size: 2rem;
            }
        }

        /* Touch-friendly mobile navigation */
        @media (hover: none) and (pointer: coarse) {
            .carousel-nav-button {
                opacity: 0.8;
            }
            
            .carousel-nav-button:active {
                transform: translateY(-50%) scale(0.95);
            }
        }

        /* Animation Classes */
        .testimonial-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .testimonial-fade-in.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .metric-counter-animation {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s ease;
        }

        .metric-counter-animation.is-visible {
            opacity: 1;
            transform: scale(1);
        }