            /* Force light mode always */
            html, body {
                color-scheme: light !important;
                background-color: #f8fafc !important;
                color: #0f1923 !important;
            }

            /* Override any dark mode preferences */
            @media (prefers-color-scheme: dark) {
                html, body {
                    background-color: #f8fafc !important;
                    color: #0f1923 !important;
                }

                * {
                    color-scheme: light !important;
                }
            }

            /* Force all elements to light mode */
            *, *::before, *::after {
                color-scheme: light !important;
            }

            /* Custom styles for mainservice page */
            .hero-subheadline {
                font-size: var(--text-lg);
                color: var(--text-light);
                margin-bottom: 30px;
                line-height: 1.6;
                font-weight: 400;
            }

            .highlight-text {
                color: var(--text-color);
                font-weight: 600;
            }

            /* Credentials section - white text */
            .credentials .highlight-text {
                color: white !important;
                font-weight: 600;
            }

            .credentials p {
                color: white !important;
            }

            .trust-stats {
                display: flex;
                justify-content: center;
                align-items: stretch;
                gap: 30px;
                flex-wrap: wrap;
            }

            .trust-stat {
                text-align: center;
                padding: 20px;
                background-color: rgba(255, 255, 255, 0.8);
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(15, 25, 35, 0.08);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                transition: var(--transition);
                flex: 1;
                min-width: 180px;
                max-width: 220px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .trust-stat:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 30px rgba(15, 25, 35, 0.12);
            }

            .stat-number {
                display: block;
                font-size: var(--text-2xl);
                font-weight: 700;
                color: var(--primary-color);
                margin-bottom: 5px;
                font-family: 'Poppins', sans-serif;
            }

            .stat-label {
                display: block;
                font-size: var(--text-sm);
                color: var(--text-light);
                font-weight: 500;
                text-transform: lowercase;
            }

            /* Testimonial Quote Styles */
            .testimonial-quote {
                margin-top: 60px;
                text-align: center;
                padding: 40px;
                background-color: rgba(56, 178, 73, 0.05);
                border-radius: 20px;
                border-left: 4px solid var(--primary-color);
            }

            .testimonial-quote blockquote {
                margin: 0;
                font-style: italic;
                font-size: var(--text-lg);
                color: var(--text-light);
                line-height: 1.6;
            }

            .testimonial-quote p {
                margin: 0;
                font-weight: 500;
            }

            /* Trust Partners Styles */
            .trust-partners {
                text-align: center;
                margin-bottom: 40px;
            }

            .trust-partners-title {
                color: var(--primary-color) !important;
                font-size: var(--text-lg);
                font-weight: 600;
                margin-bottom: 0;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            /* Industry Fit Grid Styles */
            .industry-fit-grid {
                display: grid;
                grid-template-columns: auto auto auto auto;
                gap: 30px;
                margin-top: 40px;
            }

            .industry-card {
                text-align: center;
                padding: 40px 30px;
                background-color: var(--bg-white);
                border-radius: 20px;
                box-shadow: 0 10px 30px rgba(15, 25, 35, 0.08);
                transition: var(--transition);
                border: 1px solid rgba(56, 178, 73, 0.1);
            }

            .industry-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(15, 25, 35, 0.12);
                border-color: var(--primary-color);
            }

            .industry-icon {
                width: 80px;
                height: 80px;
                margin: 0 auto 25px;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: var(--text-2xl);
                color: white;
                box-shadow: 0 8px 25px rgba(56, 178, 73, 0.3);
            }

            .industry-card h3 {
                font-size: var(--text-xl);
                color: var(--secondary-color);
                margin-bottom: 0;
                font-weight: 600;
                line-height: 1.3;
            }

            /* Sticky Navigation Styles */
            .sticky-navigation {
                position: sticky;
                top: 80px; /* Below the main navbar */
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(56, 178, 73, 0.1);
                box-shadow: 0 2px 20px rgba(15, 25, 35, 0.08);
                z-index: 100;
                transition: all 0.3s ease;
            }

            .sticky-nav-content {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 0;
                padding: 0;
                overflow-x: auto;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .sticky-nav-content::-webkit-scrollbar {
                display: none;
            }

            .nav-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 16px 20px;
                text-decoration: none;
                color: var(--text-light);
                font-size: 14px;
                font-weight: 500;
                transition: all 0.3s ease;
                border-bottom: 3px solid transparent;
                min-width: 120px;
                text-align: center;
                white-space: nowrap;
            }

            .nav-item i {
                font-size: 18px;
                margin-bottom: 6px;
                color: var(--primary-color);
                transition: all 0.3s ease;
            }

            .nav-item:hover {
                color: var(--primary-color);
                background-color: rgba(56, 178, 73, 0.05);
                border-bottom-color: var(--primary-color);
            }

            .nav-item:hover i {
                transform: translateY(-2px);
            }

            .nav-item.active {
                color: var(--primary-color);
                background-color: rgba(56, 178, 73, 0.1);
                border-bottom-color: var(--primary-color);
                font-weight: 600;
            }

            .nav-item.cta-nav {
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                color: white;
                border-radius: 8px;
                margin-left: 10px;
                border-bottom: 3px solid transparent;
            }

            .nav-item.cta-nav i {
                color: white;
            }

            .nav-item.cta-nav:hover {
                background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(56, 178, 73, 0.3);
            }

            /* Trusted Brands Section - Uses trust-logos classes for consistency */
            #trusted-brands .trust-logo img {
                filter: none !important;
                opacity: 1 !important;
                transition: none !important;
            }

            #trusted-brands .trust-logo:hover img {
                filter: none !important;
                opacity: 1 !important;
            }

            /* Enhanced section styling */
            #trusted-brands {
                padding: 40px 0 !important;
                background: #f8fafc !important;
            }

            #trusted-brands .section-title {
                font-size: 2.5rem !important;
                font-weight: 700 !important;
                color: #1e293b !important;
                margin-bottom: 20px !important;
                text-align: center !important;
            }

            /* Who Is This Service Best Suited For Styles */
            .section-header {
                text-align: center;
                margin-bottom: 30px;
                margin-left: auto;
                margin-right: auto;
            }

            .section-header .section-subtitle {
                font-size: var(--text-lg);
                color: var(--text-light);
                margin-top: 8px;
                line-height: 1.6;
            }

            .suited-for-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
                gap: 30px;
                margin-bottom: 00px;
            }

            .suited-card {
                background: var(--bg-white);
                border-radius: 20px;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(15, 25, 35, 0.08);
                border: 1px solid rgba(56, 178, 73, 0.1);
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .suited-card::before {
                display: none;
            }

            .suited-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 40px rgba(15, 25, 35, 0.12);
                border-color: var(--primary-color);
            }

            .suited-card:hover::before {
                display: none;
            }

            .card-header {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 12px;
                border-bottom: 0px !important;
                padding: 0 !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
            }

            .suited-icon {
                width: 45px;
                height: 45px;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white !important;
                font-size: var(--text-lg);
                box-shadow: 0 6px 20px rgba(56, 178, 73, 0.3);
            }

            .suited-icon i {
                color: white !important;
                font-size: var(--text-lg) !important;
                display: block !important;
            }

            .suited-badge {
                background: rgba(56, 178, 73, 0.1);
                color: var(--primary-color);
                padding: 6px 16px;
                border-radius: 20px;
                font-size: var(--text-sm);
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .suited-card h3,
            .suited-card .suited-card-title {
                font-size: calc(var(--text-xl) * 0.9375);
                color: var(--secondary-color);
                margin-bottom: 8px;
                font-weight: 600;
                line-height: 1.3;
            }

            .suited-card p {
                color: var(--text-light);
                line-height: 1.6;
                margin-bottom: 20px;
                font-size: var(--text-base);
            }

            .suited-metrics {
                display: flex;
                align-items: center;
            }

            .metric-item {
                display: flex;
                align-items: center;
                gap: 8px;
                background: rgba(56, 178, 73, 0.05);
                color: var(--primary-color);
                padding: 8px 16px;
                border-radius: 25px;
                font-size: var(--text-sm);
                font-weight: 600;
                border: 1px solid rgba(56, 178, 73, 0.2);
            }

            .metric-item i {
                font-size: 12px;
            }

            .metric-number {
                display: block;
                font-size: 3rem;
                font-weight: 800;
                color: var(--primary-color);
                text-align: center;
                line-height: 1;
                margin-top: 5px;
            }

            .suited-cta {
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                border-radius: 25px;
                padding: 50px;
                text-align: center;
                color: white;
                position: relative;
                overflow: hidden;
            }

            .suited-cta::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
                animation: float 6s ease-in-out infinite;
            }

            .cta-content {
                position: relative;
                z-index: 1;
            }

            .suited-cta h3 {
                color: white;
                font-size: var(--text-2xl);
                margin-bottom: 15px;
                font-weight: 700;
            }

            .suited-cta p {
                color: rgba(255, 255, 255, 0.9);
                font-size: var(--text-lg);
                margin-bottom: 30px;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }

            .cta-button.primary {
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
                color: white !important;
                padding: 18px 40px !important;
                border-radius: 50px !important; /* Fully rounded */
                text-decoration: none !important;
                font-weight: 700 !important;
                font-size: var(--text-lg) !important;
                display: inline-flex !important;
                align-items: center !important;
                gap: 12px !important;
                transition: all 0.3s ease !important;
                box-shadow: 0 10px 30px rgba(56, 178, 73, 0.3) !important;
                border: none !important;
            }

            .cta-button.primary:hover {
                background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
                transform: translateY(-3px) !important;
                box-shadow: 0 15px 35px rgba(56, 178, 73, 0.4) !important;
                color: white !important;
            }

            @keyframes float {
                0%, 100% {
                    transform: translateY(0px) rotate(0deg);
                }
                50% {
                    transform: translateY(-20px) rotate(180deg);
                }
            }

            /* GROW Framework Styles - 4 Cards in Row with Icons on Top */
            .grow-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
                margin-top: 40px;
            }

            .grow-card {
                background: var(--bg-white);
                padding: 30px 25px;
                border-radius: 15px;
                box-shadow: 0 8px 25px rgba(15, 25, 35, 0.08);
                border: 1px solid rgba(56, 178, 73, 0.1);
                transition: var(--transition);
                text-align: center;
            }

            .grow-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 35px rgba(15, 25, 35, 0.12);
                border-color: var(--primary-color);
            }

            .grow-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .grow-letter {
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.5rem;
                font-weight: 800;
                flex-shrink: 0;
                box-shadow: 0 6px 20px rgba(56, 178, 73, 0.3);
                margin-bottom: 5px;
            }

            .grow-text {
                flex: 1;
                text-align: center;
            }

            .grow-card h3 {
                font-size: var(--text-lg);
                color: var(--secondary-color);
                margin-bottom: 10px;
                font-weight: 700;
            }

            .grow-card p {
                color: var(--text-light);
                line-height: 1.5;
                margin-bottom: 15px;
                font-size: var(--text-sm);
            }

            .grow-benefit {
                display: flex !important;
                align-items: center !important;
                justify-content: center !important; /* Center the text */
                background: rgba(56, 178, 73, 0.05) !important;
                padding: 10px 12px !important;
                border-radius: 8px !important;
                text-align: center !important; /* Center text alignment */
            }

            /* Remove icon styles since we removed the icon */
            .grow-benefit i {
                display: none !important; /* Hide any remaining icons */
            }

            .grow-benefit span {
                color: var(--text-color) !important;
                font-weight: 600 !important;
                font-size: var(--text-xs) !important;
                text-align: center !important; /* Ensure text is centered */
                width: 100% !important; /* Take full width for centering */
            }

            /* Tablet responsiveness */
            @media (max-width: 1024px) {
                .grow-framework-grid {
                    grid-template-columns: 1fr;
                    grid-template-rows: auto;
                    gap: 25px;
                    max-width: 600px;
                }

                .grow-step {
                    padding: 25px;
                }
            }

            /* Mobile responsiveness */
            @media (max-width: 768px) {
                .sticky-navigation {
                    top: 70px;
                }

                .sticky-nav-content {
                    justify-content: flex-start;
                    padding: 0 10px;
                }

                .nav-item {
                    min-width: 100px;
                    padding: 12px 16px;
                    font-size: 12px;
                }

                .nav-item i {
                    font-size: 16px;
                    margin-bottom: 4px;
                }

                .nav-item.cta-nav {
                    margin-left: 5px;
                }

                .trust-stats {
                    gap: 20px;
                    flex-direction: column;
                }

                .trust-stat {
                    min-width: 100%;
                    max-width: 100%;
                    padding: 15px;
                    margin: 0 auto;
                    width: 280px;
                }

                .stat-number {
                    font-size: var(--text-xl);
                }

                .hero-subheadline {
                    font-size: var(--text-base);
                }

                .industry-fit-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }

                .industry-card {
                    padding: 30px 20px;
                }

                .industry-icon {
                    width: 60px;
                    height: 60px;
                    font-size: var(--text-xl);
                }

                .testimonial-quote {
                    padding: 30px 20px;
                }

                /* Trusted Brands Mobile Styles - Uses same classes as tools section */
                #trusted-brands {
                    padding: 40px 0 !important;
                }

                /* Suited For Mobile Styles */
                .section-header {
                    margin-bottom: 25px;
                }

                .section-header .section-subtitle {
                    font-size: var(--text-base);
                    margin-top: 20px;
                }

                .suited-for-grid {
                    grid-template-columns: 1fr;
                    gap: 25px;
                    margin-bottom: 60px;
                }

                .suited-card {
                    padding: 15px;
                }

                .card-header {
                    flex-direction: row;
                    align-items: center;
                    gap: 8px;
                    margin-bottom: 10px;
                }

                .suited-icon {
                    width: 40px;
                    height: 40px;
                    font-size: var(--text-base);
                }

                .suited-card h3 {
                    font-size: var(--text-lg);
                    margin-bottom: 12px;
                    font-weight: 600;
                }

                .suited-card p {
                    font-size: var(--text-sm);
                    margin-bottom: 15px;
                }

                .metric-item {
                    font-size: var(--text-xs);
                    padding: 6px 12px;
                }

                .metric-number {
                    font-size: 2.4rem;
                    margin-top: 5px;
                }

                .suited-cta {
                    padding: 30px 20px;
                }

                .suited-cta h3 {
                    font-size: var(--text-xl);
                    margin-bottom: 12px;
                }

                .suited-cta p {
                    font-size: var(--text-base);
                    margin-bottom: 25px;
                }

                .cta-button.primary {
                    padding: 15px 30px;
                    font-size: var(--text-base);
                }

                /* GROW Framework Mobile Styles */
                .grow-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 20px;
                    margin-top: 30px;
                }

                .grow-card {
                    padding: 25px 20px;
                }

                .grow-content {
                    gap: 15px;
                }

                .grow-letter {
                    width: 50px;
                    height: 50px;
                    font-size: 1.2rem;
                    margin-bottom: 3px;
                }

                .grow-card h3 {
                    font-size: var(--text-base);
                    margin-bottom: 8px;
                }

                .grow-card p {
                    font-size: var(--text-xs);
                    margin-bottom: 12px;
                    line-height: 1.4;
                }
            }

            @media (max-width: 480px) {
                /* GROW Framework Small Mobile */
                .grow-grid {
                    grid-template-columns: 1fr;
                    gap: 15px;
                }

                .grow-card {
                    padding: 20px 15px;
                }

                .grow-letter {
                    width: 45px;
                    height: 45px;
                    font-size: 1.1rem;
                }

                .grow-benefit {
                    padding: 8px 10px !important;
                    justify-content: center !important;
                    text-align: center !important;
                }

                .grow-benefit span {
                    font-size: 11px !important;
                    text-align: center !important;
                    width: 100% !important;
                }
            }

            /* Results Dashboard Styles */
            .results-dashboard {
                display: grid;
                grid-template-columns: 1fr 1.5fr;
                gap: 40px;
                margin-top: 50px;
                align-items: start;
            }

            /* Testimonial section container to match stat cards height */
            .testimonial-section-container {
                display: flex;
                flex-direction: column;
                height: 100%;
                min-height: 400px; /* Match approximate height of 4 stat cards */
            }

            .dashboard-stats {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 15px; /* Reduced from 25px */
                max-width: 600px; /* Limit width for better proportions */
            }

            .big-stat {
                background: linear-gradient(135deg, #47A048, #3D8B40) !important; /* Darker green gradient */
                padding: 30px 25px !important;
                border-radius: 24px !important;
                text-align: center !important;
                color: white !important;
                position: relative !important;
                overflow: hidden !important;
                transition: transform 0.2s ease, box-shadow 0.2s ease !important;
            }

            /* Force testimonial stats to have white text - Override global green styling */
            .dashboard-stats .stat-number,
            .big-stat .stat-number {
                color: white !important;
                text-shadow: none !important;
            }

            .dashboard-stats .stat-label,
            .big-stat .stat-label {
                color: rgba(255, 255, 255, 0.9) !important;
                display: flex !important;
                flex-direction: column !important;
                justify-content: center !important;
            }

            .big-stat:hover {
                transform: translateY(-3px) !important;
                box-shadow: 0 12px 35px rgba(103, 194, 88, 0.35) !important;
            }

            /* Remove the floating animation overlay */
            .big-stat::before {
                display: none !important;
            }

            /* Hero Section Stats - Original Styling */
            .hero-stat-number {
                font-size: 2.5rem;
                font-weight: 700;
                line-height: 1;
                margin-bottom: 8px;
                color: var(--primary-color);
                display: block;
            }

            .hero-stat-label {
                font-size: var(--text-sm);
                color: var(--text-light);
                font-weight: 500;
                display: block;
            }

            /* Results Section Stats - Enhanced Styling */
            .stat-number {
                font-size: 3.5rem !important;
                font-weight: 800 !important;
                line-height: 1 !important;
                margin-bottom: 15px !important;
                position: relative !important;
                z-index: 2 !important;
                color: white !important;
                text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
                font-family: 'Poppins', sans-serif !important;
                letter-spacing: -1px !important;
            }

            .stat-label {
                font-size: 1rem !important;
                font-weight: 500 !important;
                margin-bottom: 12px !important;
                position: relative !important;
                z-index: 2 !important;
                color: white !important;
                text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
                line-height: 1.3 !important;
                font-family: 'Inter', sans-serif !important;
            }

            .stat-source {
                font-size: 0.85rem !important;
                font-style: italic !important;
                position: relative !important;
                z-index: 2 !important;
                color: rgba(255, 255, 255, 0.9) !important;
                text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
                font-family: 'Inter', sans-serif !important;
                font-weight: 400 !important;
            }

            .testimonial-slider {
                background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
                border-radius: 20px !important;
                padding: 30px !important;
                box-shadow: 0 15px 40px rgba(15, 25, 35, 0.10) !important;
                border: 2px solid rgba(56, 178, 73, 0.1) !important;
                position: relative !important;
                overflow: hidden !important;
                flex: 1 !important; /* Take available space, leaving room for button */
                display: flex !important;
                flex-direction: column !important;
            }

            .testimonial-slider::before {
                content: '' !important;
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                height: 5px !important;
                background: linear-gradient(90deg, var(--primary-color), var(--primary-dark)) !important;
                border-radius: 25px 25px 0 0 !important;
            }

            .testimonial-track {
                position: relative !important;
                overflow: hidden !important;
                min-height: 180px !important; /* Further reduced to prevent author card cutting */
                flex: 1 !important;
            }

            .testimonial-slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .testimonial-slide.active {
                opacity: 1;
                transform: translateY(0);
            }

            .quote-mark {
                font-size: 5rem;
                color: var(--primary-color);
                font-family: 'Georgia', serif;
                line-height: 1;
                margin-bottom: 25px;
                opacity: 0.2;
                position: absolute;
                top: -10px;
                left: -5px;
            }

            .testimonial-content {
                position: relative;
                z-index: 2;
                padding-top: 30px;
            }

            .testimonial-content p {
                font-size: var(--text-lg);
                line-height: 1.6;
                color: var(--secondary-color);
                margin-bottom: 25px;
                font-style: italic;
                font-weight: 500;
                position: relative;
            }

            .testimonial-author {
                display: flex !important;
                align-items: center !important;
                gap: 12px !important; /* Reduced gap */
                padding: 12px !important; /* Smaller, uniform padding */
                background: rgba(56, 178, 73, 0.05) !important;
                border-radius: 8px !important; /* Smaller border radius */
                border-left: 3px solid var(--primary-color) !important; /* Thinner border */
                margin-top: 10px !important; /* Less margin */
                min-height: 60px !important; /* Smaller minimum height */
            }

            .testimonial-author img {
                width: 45px !important; /* Smaller image */
                height: 45px !important;
                border-radius: 50% !important;
                object-fit: cover !important;
                border: 2px solid var(--primary-color) !important; /* Thinner border */
                box-shadow: 0 2px 8px rgba(56, 178, 73, 0.2) !important; /* Lighter shadow */
                flex-shrink: 0 !important; /* Prevent image from shrinking */
            }

            .author-info {
                flex: 1 !important;
                min-width: 0 !important; /* Allow text to wrap properly */
            }

            .author-info strong {
                display: block !important;
                font-size: var(--text-base) !important; /* Smaller font size */
                color: var(--secondary-color) !important;
                margin-bottom: 3px !important; /* Reduced margin */
                font-weight: 700 !important;
                line-height: 1.2 !important; /* Tighter line height */
            }

            .author-info span {
                display: block !important;
                font-size: var(--text-sm) !important; /* Smaller font size */
                color: var(--text-light) !important;
                margin-bottom: 2px !important; /* Reduced margin */
                font-weight: 500 !important;
                line-height: 1.2 !important; /* Tighter line height */
            }

            .practice-type {
                font-size: var(--text-xs) !important; /* Smaller font size */
                color: var(--primary-color) !important;
                font-weight: 600;
                background: rgba(56, 178, 73, 0.1);
                padding: 4px 12px;
                border-radius: 20px;
                display: inline-block;
            }

            .slider-controls {
                display: flex !important;
                justify-content: center !important;
                gap: 12px !important;
                margin-top: 20px !important;
                padding: 0 !important;
                background: none !important;
                border: none !important;
            }

            .slider-dot {
                width: 12px !important;
                height: 12px !important;
                border-radius: 50% !important;
                border: none !important;
                background: rgba(56, 178, 73, 0.3) !important;
                cursor: pointer !important;
                transition: all 0.3s ease !important;
                position: relative !important;
                padding: 0 !important;
                outline: none !important;
                box-shadow: none !important;
            }

            .slider-dot:hover {
                background: rgba(56, 178, 73, 0.6) !important;
                transform: scale(1.1) !important;
            }

            .slider-dot.active {
                background: var(--primary-color) !important;
                transform: scale(1.2) !important;
            }

            /* Remove the white dot inside active state */
            .slider-dot.active::after {
                display: none !important;
            }

            /* External CTA Button Container - Outside testimonial card */
            .testimonial-cta-container {
                margin-top: 25px !important;
                text-align: center !important;
                padding: 0 !important;
            }

            /* Testimonial CTA Button Styles */
            .testimonial-cta-button {
                display: inline-block !important;
                background: white !important;
                color: var(--primary-color) !important;
                padding: 15px 35px !important;
                border-radius: 50px !important; /* More rounded - pill shape */
                text-decoration: none !important;
                font-weight: 600 !important;
                font-size: var(--text-base) !important;
                transition: all 0.3s ease !important;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
                border: none !important;
            }

            .testimonial-cta-button:hover {
                background: rgba(255, 255, 255, 0.95);
                transform: translateY(-2px);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
            }

            /* Green button override for testimonial CTA */
            .testimonial-cta-button.green {
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
                color: white !important;
                border: none !important;
            }

            .testimonial-cta-button.green:hover {
                background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
                color: white !important;
                transform: translateY(-2px) !important;
                box-shadow: 0 12px 30px rgba(56, 178, 73, 0.4) !important;
            }

            /* Circular Process Methodology Styles */
            .circular-process {
                position: relative;
                max-width: 900px;
                margin: 60px auto;
                padding: 0px 60px; /* Increased padding to provide space for tooltips */
                overflow: visible; /* Allow overflow for desktop tooltips */
                width: 100%; /* Ensure it doesn't exceed container */
                box-sizing: border-box; /* Include padding in width calculation */
            }

            .circular-process::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 140px;
                height: 140px;
                border: 2px dashed rgba(56, 178, 73, 0.4);
                background: rgba(56, 178, 73, 0.05);
                border-radius: 50%;
                transform: translate(-50%, -50%);
                z-index: 1;
            }

            .process-circle {
                position: relative;
                width: 500px;
                height: 500px;
                margin: 0 auto;
                border-radius: 50%;
                background: radial-gradient(
                    circle at center,
                    rgba(56, 178, 73, 0.08) 0%,
                    rgba(56, 178, 73, 0.06) 20%,
                    rgba(56, 178, 73, 0.04) 40%,
                    rgba(56, 178, 73, 0.02) 60%,
                    rgba(56, 178, 73, 0.01) 80%,
                    transparent 100%
                );
                transition: all 0.4s ease;
            }

            .process-circle:hover {
                background: radial-gradient(
                    circle at center,
                    rgba(56, 178, 73, 0.15) 0%,
                    rgba(56, 178, 73, 0.12) 20%,
                    rgba(56, 178, 73, 0.08) 40%,
                    rgba(56, 178, 73, 0.05) 60%,
                    rgba(56, 178, 73, 0.03) 80%,
                    rgba(56, 178, 73, 0.01) 100%
                );
                transform: scale(1.02);
                box-shadow: 0 0 60px rgba(56, 178, 73, 0.2);
            }

            .process-circle::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 440px;
                height: 440px;
                border: 2px dashed rgba(56, 178, 73, 0.3);
                border-radius: 50%;
                transform: translate(-50%, -50%);
                background: radial-gradient(
                    circle at center,
                    transparent 85%,
                    rgba(56, 178, 73, 0.03) 90%,
                    rgba(56, 178, 73, 0.05) 95%,
                    rgba(56, 178, 73, 0.08) 100%
                );
                transition: all 0.4s ease;
            }

            .process-circle:hover::before {
                border-color: rgba(56, 178, 73, 0.5);
                background: radial-gradient(
                    circle at center,
                    transparent 80%,
                    rgba(56, 178, 73, 0.06) 85%,
                    rgba(56, 178, 73, 0.1) 90%,
                    rgba(56, 178, 73, 0.15) 100%
                );
            }

            .process-circle::after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 290px;
                height: 290px;
                border: 2px dashed rgba(56, 178, 73, 0.25);
                border-radius: 50%;
                transform: translate(-50%, -50%);
                transition: all 0.4s ease;
            }

            .process-circle:hover::after {
                border-color: rgba(56, 178, 73, 0.4);
                transform: translate(-50%, -50%) scale(1.05);
            }

            .process-center {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                text-align: center;
                background: linear-gradient(135deg, #ff6b35, #ff8c42, #ffa726);
                border-radius: 50%;
                width: 80px;
                height: 80px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                color: white;
                box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
                border: 3px solid rgba(255, 255, 255, 0.2);
            }

            .process-center-icon {
                font-size: 2.5rem;
                margin-bottom: 0;
                background: linear-gradient(135deg, #fff, #ffeaa7);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            }

            .process-center-text {
                display: none;
            }

            .process-step-circular {
                position: absolute;
                width: 200px;
                text-align: center;
                cursor: pointer;
                transition: all 0.3s ease;
                top: 50%;
                left: 50%;
            }

            .step-content-wrapper {
                position: relative;
            }

            .flex-col-top{
                display: flex;
                flex-direction: column;
            }

            .flex-row-right{
                display: flex;
                flex-direction: row;
                
            }

            .flex-row-right .step-duration,
            .flex-row-right .step-title-circular {
                text-align: left;
                padding-left: 20px;
            }

            .flex-row-left .step-duration,
            .flex-row-left .step-title-circular {
                text-align: right;
                padding-right: 20px;
            }

            .flex-row-left{
                display: flex;
                flex-direction: row;
            }
            

            .process-step-circular:nth-child(2) { /* Step 1 - Top (0°) */
                transform: translate(-50%, -50%) translate(0px, -240px);
            }

            .process-step-circular:nth-child(3) { /* Step 2 - Top Right (72°) */
                transform: translate(-50%, -50%) translate(278px, -68px);
            
            }

            .process-step-circular:nth-child(4) { /* Step 3 - Bottom Right (144°) */
                transform: translate(-50%, -50%) translate(220px, 178px);
            }

            .process-step-circular:nth-child(5) { /* Step 4 - Bottom Left (216°) */
                transform: translate(-50%, -50%) translate(-220px, 178px);
            }

            .process-step-circular:nth-child(6) { /* Step 5 - Top Left (288°) */
                transform: translate(-50%, -50%) translate(-278px, -68px);
            }

            .step-number-circular {
                width: 50px;
                height: 50px;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.2rem;
                font-weight: 800;
                margin: 0 auto 15px;
                box-shadow: 0 6px 20px rgba(56, 178, 73, 0.3);
                position: relative;
                z-index: 2;
                aspect-ratio: 1;
            }

            .step-duration {
                background: transparent;
                color: rgba(56, 178, 73, 0.7);
                padding: 0;
                border-radius: 0;
                font-size: 0.7rem;
                font-weight: 500;
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-bottom: 8px;
                display: block;
            }

            .step-title-circular {
                font-size: 1rem !important; /* Reduced by 50% from 1rem */
                font-weight: 400;
                color: var(--text-color);
                margin-bottom: 10px;
                line-height: 1.2;
            }

            .step-description-circular {
                font-size: 0.85rem;
                color: var(--text-light);
                line-height: 1.5;
                opacity: 0;
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%) translateY(10px);
                width: 280px;
                background: rgba(255, 255, 255, 0.98);
                padding: 20px;
                border-radius: 16px;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
                border: 1px solid rgba(56, 178, 73, 0.1);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000; /* Increased z-index to ensure tooltips appear above other elements */
                margin-top: 15px;
                pointer-events: none;
                backdrop-filter: blur(10px);
            }

            /* First point - tooltip appears above */
            .process-step-circular:nth-child(2) .step-description-circular {
                top: auto;
                bottom: 100%;
                transform: translateX(-50%) translateY(-10px);
                margin-top: 0;
                margin-bottom: 15px;
            }

            /* Second and third points (right side) - tooltip appears to the right */
            .process-step-circular:nth-child(3) .step-description-circular,
            .process-step-circular:nth-child(4) .step-description-circular {
                top: 50%;
                left: 100%;
                transform: translateY(-50%) translateX(10px);
                margin-top: 0;
                margin-left: 15px;
            }

            /* Fourth and fifth points (left side) - tooltip appears to the left */
            .process-step-circular:nth-child(5) .step-description-circular,
            .process-step-circular:nth-child(6) .step-description-circular {
                top: 50%;
                left: auto;
                right: 100%;
                transform: translateY(-50%) translateX(-10px);
                margin-top: 0;
                margin-right: 15px;
            }

            .step-description-circular::before {
                content: '';
                position: absolute;
                top: -8px;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 0;
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                border-bottom: 8px solid rgba(255, 255, 255, 0.98);
            }

            /* First point arrow - points down */
            .process-step-circular:nth-child(2) .step-description-circular::before {
                top: auto;
                bottom: -8px;
                border-bottom: none;
                border-top: 8px solid rgba(255, 255, 255, 0.98);
            }

            /* Right side points arrow - points left */
            .process-step-circular:nth-child(3) .step-description-circular::before,
            .process-step-circular:nth-child(4) .step-description-circular::before {
                top: 50%;
                left: -8px;
                transform: translateY(-50%);
                border-left: none;
                border-right: 8px solid rgba(255, 255, 255, 0.98);
                border-top: 8px solid transparent;
                border-bottom: 8px solid transparent;
            }

            /* Left side points arrow - points right */
            .process-step-circular:nth-child(5) .step-description-circular::before,
            .process-step-circular:nth-child(6) .step-description-circular::before {
                top: 50%;
                left: auto;
                right: -8px;
                transform: translateY(-50%);
                border-right: none;
                border-left: 8px solid rgba(255, 255, 255, 0.98);
                border-top: 8px solid transparent;
                border-bottom: 8px solid transparent;
            }

            /* Hover Effects */
            .process-step-circular:hover .step-description-circular {
                opacity: 1;
                pointer-events: auto;
                transform: translateX(-50%) translateY(0);
            }

            /* First point hover - appears above */
            .process-step-circular:nth-child(2):hover .step-description-circular {
                transform: translateX(-50%) translateY(0);
            }

            /* Right side points hover */
            .process-step-circular:nth-child(3):hover .step-description-circular,
            .process-step-circular:nth-child(4):hover .step-description-circular {
                transform: translateY(-50%) translateX(0);
            }

            /* Left side points hover */
            .process-step-circular:nth-child(5):hover .step-description-circular,
            .process-step-circular:nth-child(6):hover .step-description-circular {
                transform: translateY(-50%) translateX(0);
            }

            .process-step-circular:hover .step-number-circular {
                box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
                background: linear-gradient(135deg, #ff8c42, #ff6b35);
                transform: scale(1.1);
            }

            .process-step-circular:hover .step-title-circular {
                color: var(--primary-color);
            }

            .process-step-circular:hover .step-duration {
                color: var(--primary-color);
            }

            /* Mobile Responsive for Circular Process */
            @media (max-width: 768px) {
                .circular-process {
                    padding: 40px 15px !important;
                    margin: 40px auto !important;
                    max-width: 100% !important;
                    overflow: hidden !important; /* Keep overflow hidden on mobile to prevent horizontal scroll */
                }

                .circular-process::before {
                    width: 100px !important;
                    height: 100px !important;
                }

                /* Show descriptions by default on mobile */
                .step-description-circular {
                    opacity: 1 !important;
                    max-height: none !important;
                    margin-top: 8px !important;
                    font-size: 0.85rem !important;
                    line-height: 1.4 !important;
                }

                .process-circle {
                    width: 300px !important;
                    height: 300px !important;
                    max-width: calc(100vw - 40px) !important;
                    max-height: calc(100vw - 40px) !important;
                }

                .process-circle::before {
                    width: 260px !important;
                    height: 260px !important;
                    max-width: calc(100vw - 80px) !important;
                    max-height: calc(100vw - 80px) !important;
                }

                .process-circle::after {
                    width: 170px !important;
                    height: 170px !important;
                    max-width: calc(100vw - 160px) !important;
                    max-height: calc(100vw - 160px) !important;
                }

                .process-center {
                    width: 70px;
                    height: 70px;
                }

                .process-center-icon {
                    font-size: 2rem;
                    margin-bottom: 0;
                }

                .process-center-text {
                    font-size: 0.8rem;
                }

                .process-step-circular {
                    width: 160px;
                }

                .process-step-circular:nth-child(2) { /* Step 1 - Top */
                    transform: translate(-50%, -50%) translate(0px, -150px);
                }

                .process-step-circular:nth-child(3) { /* Step 2 - Top Right */
                    transform: translate(-50%, -50%) translate(143px, -46px);
                }

                .process-step-circular:nth-child(4) { /* Step 3 - Bottom Right */
                    transform: translate(-50%, -50%) translate(88px, 121px);
                }

                .process-step-circular:nth-child(5) { /* Step 4 - Bottom Left */
                    transform: translate(-50%, -50%) translate(-88px, 121px);
                }

                .process-step-circular:nth-child(6) { /* Step 5 - Top Left */
                    transform: translate(-50%, -50%) translate(-143px, -46px);
                }

                .step-number-circular {
                    width: 40px;
                    height: 40px;
                    font-size: 1rem;
                    margin-bottom: 12px;
                }

                .step-title-circular {
                    font-size: 0.475rem; /* 50% of 0.95rem */
                    margin-bottom: 6px;
                }

                .step-description-circular {
                    font-size: 0.8rem;
                }

                .step-duration {
                    font-size: 0.7rem;
                    padding: 3px 10px;
                    margin-bottom: 8px;
                }
            }

            @media (max-width: 480px) {
                .circular-process {
                    padding: 30px 10px !important;
                    margin: 30px auto !important;
                }

                .circular-process::before {
                    width: 80px !important;
                    height: 80px !important;
                }

                .process-circle {
                    width: 240px !important;
                    height: 240px !important;
                    max-width: calc(100vw - 30px) !important;
                    max-height: calc(100vw - 30px) !important;
                }

                .process-circle::before {
                    width: 200px !important;
                    height: 200px !important;
                    max-width: calc(100vw - 70px) !important;
                    max-height: calc(100vw - 70px) !important;
                }

                .process-circle::after {
                    width: 130px !important;
                    height: 130px !important;
                    max-width: calc(100vw - 140px) !important;
                    max-height: calc(100vw - 140px) !important;
                }

                .process-center {
                    width: 60px;
                    height: 60px;
                }

                .process-center-icon {
                    font-size: 1.8rem;
                    margin-bottom: 0;
                }

                .process-center-text {
                    font-size: 0.7rem;
                }

                .process-step-circular {
                    width: 140px;
                }

                .process-step-circular:nth-child(2) { /* Step 1 - Top */
                    transform: translate(-50%, -50%) translate(0px, -120px);
                }

                .process-step-circular:nth-child(3) { /* Step 2 - Top Right */
                    transform: translate(-50%, -50%) translate(114px, -37px);
                }

                .process-step-circular:nth-child(4) { /* Step 3 - Bottom Right */
                    transform: translate(-50%, -50%) translate(70px, 97px);
                }

                .process-step-circular:nth-child(5) { /* Step 4 - Bottom Left */
                    transform: translate(-50%, -50%) translate(-70px, 97px);
                }

                .process-step-circular:nth-child(6) { /* Step 5 - Top Left */
                    transform: translate(-50%, -50%) translate(-114px, -37px);
                }

                /* Ensure step content doesn't overflow on mobile */
                .process-step-circular {
                    max-width: 140px !important;
                    word-wrap: break-word !important;
                    overflow-wrap: break-word !important;
                }

                .step-content-wrapper {
                    padding: 8px !important;
                }

                .step-number-circular {
                    font-size: 1.2rem !important;
                    width: 28px !important;
                    height: 28px !important;
                    line-height: 28px !important;
                }

                .step-duration {
                    font-size: 0.7rem !important;
                    margin-bottom: 4px !important;
                }

                .step-title-circular {
                    font-size: 0.45rem !important; /* 50% of 0.9rem */
                    margin-bottom: 8px !important;
                }
            }

            /* Extra small screens */
            @media (max-width: 360px) {
                .process-circle {
                    width: 220px !important;
                    height: 220px !important;
                }

                .process-circle::before {
                    width: 180px !important;
                    height: 180px !important;
                }

                .process-circle::after {
                    width: 110px !important;
                    height: 110px !important;
                }

                .process-step-circular {
                    max-width: 120px !important;
                }

                .step-description-circular {
                    font-size: 0.8rem !important;
                }

                .step-title-circular {
                    font-size: 0.425rem !important; /* 50% of 0.85rem */
                }

                .step-duration {
                    font-size: 0.65rem !important;
                }
            }

            /* Mobile responsiveness for dashboard */
            @media (max-width: 1024px) {
                .results-dashboard {
                    grid-template-columns: 1fr !important;
                    gap: 30px !important;
                }

                .testimonial-section-container {
                    min-height: auto !important;
                }

                .dashboard-stats {
                    grid-template-columns: 1fr 1fr !important;
                    gap: 12px !important; /* Reduced from 20px */
                    max-width: 100% !important;
                }

                .big-stat {
                    padding: 25px 20px !important;
                    min-height: 160px !important;
                }

                .stat-number {
                    font-size: 2.8rem !important;
                }

                .stat-label {
                    font-size: 0.9rem !important;
                }

                .stat-source {
                    font-size: 0.8rem !important;
                }

                /* Hero Stats Mobile */
                .hero-stat-number {
                    font-size: 2rem;
                    font-weight: 700;
                }

                .hero-stat-label {
                    font-size: var(--text-xs);
                }

                /* Results Stats Mobile */
                .stat-number {
                    font-size: 3rem;
                    font-weight: 900;
                    color: white !important;
                    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
                }

                .testimonial-slider {
                    padding: 35px 25px;
                }

                .testimonial-content p {
                    font-size: var(--text-lg);
                }

                .testimonial-author {
                    gap: 15px;
                    padding: 15px;
                }

                .testimonial-author img {
                    width: 60px;
                    height: 60px;
                }
            }

            @media (max-width: 768px) {
                .dashboard-stats {
                    grid-template-columns: 1fr !important;
                    gap: 12px !important; /* Reduced from 20px */
                    max-width: 100% !important;
                }

                .big-stat {
                    padding: 25px 20px !important;
                    min-height: 140px !important;
                }

                .stat-number {
                    font-size: 2.5rem !important;
                }

                .stat-label {
                    font-size: 0.85rem !important;
                }

                .stat-source {
                    font-size: 0.75rem !important;
                }

                /* Hero Stats Mobile Small */
                .hero-stat-number {
                    font-size: 1.8rem;
                    font-weight: 700;
                }

                .hero-stat-label {
                    font-size: var(--text-xs);
                }

                /* Results Stats Mobile Small */
                .stat-number {
                    font-size: 2.8rem;
                    font-weight: 900;
                    color: white !important;
                    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
                    margin-bottom: 10px;
                }

                .stat-label {
                    font-size: var(--text-sm);
                    color: rgba(255, 255, 255, 0.95) !important;
                    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
                }

                .stat-source {
                    color: rgba(255, 255, 255, 0.8) !important;
                    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
                }

                .testimonial-slider {
                    padding: 30px 20px;
                    border-radius: 20px;
                }

                .testimonial-content {
                    padding-top: 25px;
                }

                .testimonial-content p {
                    font-size: var(--text-lg);
                    line-height: 1.6;
                    margin-bottom: 25px;
                }

                .quote-mark {
                    font-size: 4rem;
                    top: -5px;
                    left: -3px;
                }

                .testimonial-author {
                    gap: 10px !important;
                    padding: 10px !important;
                    flex-direction: column !important;
                    text-align: center !important;
                    min-height: 50px !important;
                }

                .testimonial-author img {
                    width: 40px !important;
                    height: 40px !important;
                    margin: 0 auto !important;
                }

                .author-info strong {
                    font-size: var(--text-sm) !important;
                    margin-bottom: 2px !important;
                }

                .author-info span {
                    font-size: var(--text-xs) !important;
                    margin-bottom: 1px !important;
                }

                .practice-type {
                    font-size: var(--text-xs);
                    margin-top: 5px;
                }

                .slider-controls {
                    margin-top: 25px;
                    gap: 10px;
                }

                .slider-dot {
                    width: 12px;
                    height: 12px;
                }

                /* Testimonial CTA Mobile */
                .testimonial-cta {
                    padding: 30px 20px;
                    margin-top: 30px;
                }

                .testimonial-cta h3 {
                    font-size: var(--text-lg);
                    margin-bottom: 12px;
                }

                .testimonial-cta p {
                    font-size: var(--text-sm);
                    margin-bottom: 20px;
                }

                .testimonial-cta-button {
                    padding: 12px 28px !important;
                    font-size: var(--text-sm) !important;
                }

                .testimonial-cta-container {
                    margin-top: 20px !important;
                }
            }



            /* Enhanced Horizontal Scrolling Case Studies */
            .case-studies-container {
                position: relative;
                margin-top: 40px;
                overflow: hidden;
            }

            .case-studies-scroll {
                display: flex;
                gap: 30px;
                overflow-x: auto;
                padding: 25px 0 35px 0;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
                scrollbar-color: var(--primary-color) rgba(56, 178, 73, 0.1);
            }

            .case-studies-scroll::-webkit-scrollbar {
                height: 6px;
            }

            .case-studies-scroll::-webkit-scrollbar-track {
                background: linear-gradient(90deg, rgba(56, 178, 73, 0.05), rgba(56, 178, 73, 0.1));
                border-radius: 10px;
                margin: 0 20px;
            }

            .case-studies-scroll::-webkit-scrollbar-thumb {
                background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
                border-radius: 10px;
                box-shadow: 0 2px 8px rgba(56, 178, 73, 0.3);
            }

            .case-studies-scroll::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(90deg, var(--primary-dark), #16a34a);
                box-shadow: 0 4px 12px rgba(56, 178, 73, 0.4);
            }

            .scroll-indicator {
                position: absolute;
                right: 0;
                top: 0;
                bottom: 0;
                width: 60px;
                background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 100%);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 2;
                pointer-events: none;
                opacity: 0.7;
            }

            .scroll-indicator::after {
                content: '→';
                color: var(--primary-color);
                font-size: 18px;
                font-weight: 300;
                animation: slideHint 3s ease-in-out infinite;
            }

            @keyframes slideHint {
                0%, 80%, 100% { transform: translateX(0); opacity: 0.5; }
                40% { transform: translateX(5px); opacity: 0.8; }
            }

            /* Enhanced Process Styles */
            .process-header {
                text-align: center;
                margin-bottom: 30px;
            }

            .process-subtitle {
                color: var(--text-light);
                font-size: var(--text-lg);
                margin-top: 8px;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
                line-height: 1.6;
            }

            /* Compact Process Grid */
            .compact-process-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 30px;
                margin-bottom: 60px;
            }

            .process-card {
                background: var(--bg-white);
                border-radius: 20px;
                padding: 30px;
                box-shadow: 0 10px 30px rgba(15, 25, 35, 0.08);
                border: 1px solid rgba(56, 178, 73, 0.1);
                transition: var(--transition);
                position: relative;
                overflow: hidden;
            }

            .process-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
            }

            .process-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 40px rgba(15, 25, 35, 0.12);
                border-color: var(--primary-color);
            }

            .process-card-header {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 20px;
            }

            .process-icon {
                width: 50px;
                height: 50px;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.2rem;
                flex-shrink: 0;
            }

            .process-card-header h3 {
                color: var(--text-color);
                font-size: 1.3rem;
                font-weight: 700;
                margin: 0;
                line-height: 1.2;
            }

            .process-card-content {
                margin-top: 20px;
            }

            .process-description {
                color: var(--text-light);
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 20px;
            }

            .process-deliverables {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .process-deliverables .deliverable {
                color: var(--text-color);
                font-size: 0.95rem;
                font-weight: 500;
                padding: 8px 0;
            }

            /* Process CTA Card */
            .process-cta-card {
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                color: white;
                border: none;
            }

            .process-cta-card::before {
                background: rgba(255, 255, 255, 0.2);
            }

            .process-cta-card .process-icon {
                background: rgba(255, 255, 255, 0.2);
                color: white;
            }

            .process-cta-card .process-card-header h3 {
                color: white;
            }

            .process-cta-card .process-description {
                color: rgba(255, 255, 255, 0.9);
            }

            .process-cta-actions {
                text-align: center;
                margin-top: 25px;
            }

            .process-card-button {
                display: inline-block;
                background: white;
                color: var(--primary-color);
                padding: 15px 30px;
                border-radius: 12px;
                text-decoration: none;
                font-weight: 600;
                font-size: 1rem;
                transition: var(--transition);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                margin-bottom: 15px;
            }

            .process-card-button:hover {
                background: rgba(255, 255, 255, 0.95);
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            }

            .process-cta-note {
                color: rgba(255, 255, 255, 0.8);
                font-size: 0.85rem;
                margin: 0;
                font-style: italic;
            }

            /* Process Timeline Styles - Compact 50% Size */
            .process-timeline {
                max-width: 700px;
                margin: 0 auto;
                position: relative;
            }

            .process-timeline::before {
                content: '';
                position: absolute;
                top: 0;
                bottom: 0;
                left: 20px;
                width: 2px;
                background: linear-gradient(to bottom, var(--primary-dark), var(--primary-color));
                border-radius: 1px;
                box-shadow: 0 3px 10px rgba(56, 178, 73, 0.1);
            }

            .process-timeline .process-step {
                position: relative;
                padding-left: 60px;
                margin-bottom: 30px;
                display: block;
                background: none !important;
                border: none;
                gap: 0;
            }

            .process-timeline .process-step:hover {
                background: none !important;
                border-color: transparent !important;
                transform: none !important;
            }

            .process-timeline .process-step:last-child {
                margin-bottom: 0;
            }

            .process-timeline .process-step:hover .step-number {
                transform: scale(1.1) rotate(10deg);
                box-shadow: 0 8px 20px rgba(56, 178, 73, 0.3);
            }

            .step-number {
                position: absolute;
                left: 0;
                top: 0;
                width: 40px;
                height: 40px;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                color: var(--bg-white);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.1rem;
                font-weight: 800;
                z-index: 2;
                transition: var(--transition);
                box-shadow: 0 5px 15px rgba(56, 178, 73, 0.2);
                border: 1px solid rgba(255, 255, 255, 0.1);
            }

            .process-timeline .step-content {
                background-color: var(--bg-white);
                padding: 20px 25px;
                border-radius: 12px;
                box-shadow: 0 8px 25px rgba(15, 25, 35, 0.08);
                transition: var(--transition);
                border-left: none;
                position: relative;
                overflow: hidden;
                z-index: 1;
                border: 1px solid rgba(56, 178, 73, 0.1);
                margin-top: 0;
            }

            .process-timeline .step-content::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 3px;
                height: 100%;
                background: linear-gradient(to bottom, var(--primary-dark), var(--primary-color));
                transition: var(--transition);
            }

            .process-timeline .process-step:hover .step-content {
                transform: translateY(-4px) translateX(3px);
                box-shadow: 0 15px 35px rgba(15, 25, 35, 0.12);
            }

            .process-timeline .process-step:hover .step-content::before {
                width: 5px;
            }

            .process-timeline .step-content h3 {
                margin-bottom: 8px;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                color: transparent;
                font-size: 1.1rem;
                font-weight: 700;
                display: inline-block;
            }

            .process-timeline .step-content p {
                font-size: 0.95rem;
                line-height: 1.6;
                color: var(--text-light);
                margin: 0;
            }

            .process-flow {
                display: flex;
                flex-direction: column;
                gap: 50px;
            }

            .process-phase {
                background-color: var(--bg-white);
                border-radius: 25px;
                padding: 40px;
                box-shadow: 0 15px 40px rgba(15, 25, 35, 0.08);
                border: 1px solid rgba(56, 178, 73, 0.1);
                transition: var(--transition);
                position: relative;
                overflow: hidden;
            }

            .process-phase::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
            }

            .process-phase:hover {
                transform: translateY(-8px);
                box-shadow: 0 25px 50px rgba(15, 25, 35, 0.12);
                border-color: var(--primary-color);
            }

            .phase-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 30px;
                flex-wrap: wrap;
                gap: 15px;
            }

            .phase-badge {
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                color: white;
                padding: 8px 20px;
                border-radius: 25px;
                font-size: var(--text-sm);
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .phase-header h3 {
                color: var(--secondary-color);
                font-size: var(--text-2xl);
                margin: 0;
                font-weight: 700;
                flex: 1;
                text-align: center;
            }

            .phase-duration {
                background-color: rgba(56, 178, 73, 0.1);
                color: var(--primary-color);
                padding: 8px 16px;
                border-radius: 20px;
                font-size: var(--text-sm);
                font-weight: 600;
            }

            .process-steps {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
                gap: 30px;
            }

            .process-step {
                display: flex;
                gap: 20px;
                padding: 25px;
                background-color: rgba(56, 178, 73, 0.02);
                border-radius: 20px;
                border: 1px solid rgba(56, 178, 73, 0.1);
                transition: var(--transition);
            }

            .process-step:hover {
                background-color: rgba(56, 178, 73, 0.05);
                border-color: var(--primary-color);
                transform: translateX(5px);
            }

            .step-icon {
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: var(--text-xl);
                flex-shrink: 0;
                box-shadow: 0 8px 25px rgba(56, 178, 73, 0.3);
            }

            .step-content h4 {
                color: var(--secondary-color);
                font-size: var(--text-lg);
                margin-bottom: 10px;
                font-weight: 600;
            }

            .step-content p {
                color: var(--text-light);
                line-height: 1.6;
                margin-bottom: 15px;
            }

            .step-deliverables {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
            }

            .deliverable {
                background-color: rgba(56, 178, 73, 0.1);
                color: var(--primary-color);
                padding: 4px 12px;
                border-radius: 15px;
                font-size: var(--text-xs);
                font-weight: 500;
            }

            .process-cta {
                margin-top: 60px;
                text-align: center;
                padding: 50px;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                border-radius: 25px;
                color: white;
            }

            .process-cta-content h3 {
                color: white;
                font-size: var(--text-2xl);
                margin-bottom: 15px;
                font-weight: 700;
            }

            .process-cta-content p {
                color: rgba(255, 255, 255, 0.9);
                font-size: var(--text-lg);
                margin-bottom: 30px;
                line-height: 1.6;
            }

            .process-cta-button {
                display: inline-block;
                background-color: white;
                color: var(--primary-color);
                padding: 18px 40px;
                border-radius: 15px;
                text-decoration: none;
                font-weight: 600;
                font-size: var(--text-lg);
                transition: var(--transition);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }

            .process-cta-button:hover {
                background-color: rgba(255, 255, 255, 0.95);
                transform: translateY(-3px);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            }

            /* Mobile Process Styles */
            @media (max-width: 768px) {
                .process-header {
                    margin-bottom: 25px;
                }

                .process-subtitle {
                    font-size: var(--text-base);
                }

                .compact-process-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                    margin-bottom: 40px;
                }

                .process-card {
                    padding: 25px 20px;
                }

                .process-card-header {
                    flex-direction: column;
                    text-align: center;
                    gap: 12px;
                }

                .process-icon {
                    width: 45px;
                    height: 45px;
                    font-size: 1.1rem;
                }

                .process-card-header h3 {
                    font-size: 1.2rem;
                }

                .process-description {
                    font-size: 0.95rem;
                    text-align: center;
                }

                .process-deliverables .deliverable {
                    font-size: 0.9rem;
                    justify-content: center;
                }

                .process-card-button {
                    padding: 12px 25px;
                    font-size: 0.95rem;
                }

                .process-cta-note {
                    font-size: 0.8rem;
                }

                .process-flow {
                    gap: 30px;
                }

                .process-phase {
                    padding: 25px 20px;
                }

                .phase-header {
                    flex-direction: column;
                    text-align: center;
                    gap: 10px;
                }

                .phase-header h3 {
                    font-size: var(--text-xl);
                    text-align: center;
                }

                .process-steps {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }

                .process-step {
                    flex-direction: column;
                    text-align: center;
                    padding: 20px;
                }

                .step-icon {
                    width: 50px;
                    height: 50px;
                    font-size: var(--text-lg);
                    margin: 0 auto 15px;
                }

                .step-content h4 {
                    font-size: var(--text-base);
                }

                .step-deliverables {
                    justify-content: center;
                }

                .process-cta {
                    padding: 30px 20px;
                    margin-top: 40px;
                }

                .process-cta-content h3 {
                    font-size: var(--text-xl);
                }

                .process-cta-content p {
                    font-size: var(--text-base);
                }

                .process-cta-button {
                    padding: 15px 30px;
                    font-size: var(--text-base);
                }

                /* Process Timeline Mobile - Compact */
                .process-timeline::before {
                    left: 15px;
                }

                .process-timeline .process-step {
                    padding-left: 45px;
                    margin-bottom: 25px;
                }

                .step-number {
                    width: 32px;
                    height: 32px;
                    font-size: 0.95rem;
                    border-radius: 8px;
                }

                .process-timeline .step-content {
                    padding: 15px 18px;
                    border-radius: 10px;
                }

                .process-timeline .step-content h3 {
                    font-size: 1rem;
                    margin-bottom: 6px;
                }

                .process-timeline .step-content p {
                    font-size: 0.9rem;
                    line-height: 1.5;
                }

                /* Tool Stack Mobile */
                .trust-logos {
                    margin: 30px auto 0;
                }

                .trust-logos-track {
                    gap: 30px;
                    animation-duration: 25s; /* Slightly faster on mobile */
                }

                .trust-logo img {
                    max-height: 50px !important;
                    max-width: 120px !important;
                }

                /* FAQs Mobile */
                .faq-grid {
                    grid-template-columns: 1fr !important; /* Single column on mobile */
                    gap: 20px !important; /* Tighter spacing */
                }

                .faq-question {
                    padding: 15px 18px !important; /* More compact on mobile */
                }

                .faq-question h3 {
                    font-size: var(--text-sm) !important; /* Smaller text on mobile */
                    padding-right: 12px !important;
                }

                .faq-item.active .faq-answer {
                    padding: 12px 18px 18px 18px !important; /* Compact mobile padding */
                }

                .faq-answer p {
                    font-size: var(--text-xs) !important; /* Smaller answer text on mobile */
                }

                /* Final CTA Mobile */
                .final-cta-content {
                    grid-template-columns: 1fr;
                    gap: 40px;
                    text-align: center;
                }

                .contact-form {
                    padding: 25px;
                }

                .cta-heading {
                    font-size: var(--text-2xl);
                }

                .person-image-placeholder {
                    width: 250px;
                    height: 320px;
                    margin: 0 auto;
                }
            }

            /* Tool Stack Styles */
            .tool-stack-header {
                text-align: center;
                margin-bottom: 20px;
            }

            .tool-stack-logo {
                margin-bottom: 15px;
            }

            .tool-logo {
                max-height: 50px;
                width: auto;
            }

            .tool-stack-subtitle {
                color: var(--text-light);
                font-size: var(--text-lg);
                margin-top: 8px;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
                line-height: 1.6;
            }

            /* Trust Logos Infinite Scroll - Matching Landing Page Design */
            .trust-logos {
                overflow: hidden;
                position: relative;
                width: 100%;
                margin: 40px auto 0;
                white-space: nowrap;
            }

            .trust-logos-track {
                display: flex;
                gap: 40px;
                align-items: center;
                width: max-content;
                animation: infiniteScroll 30s linear infinite;
            }

            /* Pause animation on hover */
            .trust-logos:hover .trust-logos-track {
                animation-play-state: paused;
            }

            /* The magic: animate from 0 to -50% to create seamless loop */
            @keyframes infiniteScroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(-50%);
                }
            }

            .trust-logo {
                flex-shrink: 0 !important;
                display: inline-block !important;
                white-space: nowrap !important;
                filter: none !important;
                opacity: 1 !important;
                transition: none !important;
                transform: none !important;
                -webkit-filter: none !important;
                -moz-filter: none !important;
                -ms-filter: none !important;
                -o-filter: none !important;
            }

            .trust-logo img {
                max-height: 60px !important;
                max-width: 150px !important;
                object-fit: contain !important;
                filter: none !important;
                opacity: 1 !important;
                transition: none !important;
                display: block !important;
                -webkit-filter: none !important;
                -moz-filter: none !important;
                -ms-filter: none !important;
                -o-filter: none !important;
                transform: none !important;
            }

            /* Remove ALL hover effects - logos stay colored and unchanged */
            .trust-logo:hover {
                filter: none !important;
                opacity: 1 !important;
                transform: none !important;
                -webkit-filter: none !important;
                -moz-filter: none !important;
                -ms-filter: none !important;
                -o-filter: none !important;
            }

            .trust-logo:hover img {
                filter: none !important;
                opacity: 1 !important;
                transform: none !important;
                -webkit-filter: none !important;
                -moz-filter: none !important;
                -ms-filter: none !important;
                -o-filter: none !important;
            }

            /* Infinite scroll animation removed - handled by JavaScript */

            /* FAQs Styles - 2 Column Layout */
            .faq-grid {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 25px !important;
                margin-top: 40px !important;
                align-items: start !important; /* Prevent height matching */
            }

            .faq-item {
                background-color: white !important;
                border-radius: 12px !important; /* Smaller border radius */
                box-shadow: 0 4px 15px rgba(15, 25, 35, 0.06) !important; /* Lighter shadow */
                border: 1px solid rgba(56, 178, 73, 0.1) !important; /* Light green border */
                transition: all 0.3s ease !important;
                overflow: hidden !important;
                margin-bottom: 0 !important; /* Remove extra margin */
                align-self: start !important; /* Prevent height matching in grid */
                height: auto !important; /* Ensure natural height */
            }

            .faq-item:hover {
                transform: translateY(-2px) !important; /* Subtle lift instead of slide */
                box-shadow: 0 8px 20px rgba(15, 25, 35, 0.1) !important;
            }

            .faq-question {
                display: flex !important;
                justify-content: space-between !important;
                align-items: center !important;
                padding: 18px 20px !important; /* More compact padding */
                cursor: pointer !important;
                transition: all 0.3s ease !important;
                background-color: white !important; /* White background when not expanded */
                border-bottom: 1px solid rgba(56, 178, 73, 0.1) !important;
            }

            .faq-question:hover {
                background-color: rgba(56, 178, 73, 0.08) !important; /* Slightly darker on hover */
            }

            .faq-question h3 {
                color: var(--secondary-color) !important;
                font-size: var(--text-base) !important; /* Smaller font for compact design */
                margin: 0 !important;
                font-weight: 600 !important;
                line-height: 1.3 !important; /* Tighter line height */
                flex: 1 !important;
                padding-right: 15px !important; /* Less padding */
            }

            .faq-question i {
                color: var(--primary-color) !important;
                font-size: var(--text-lg) !important; /* Smaller icon */
                font-weight: 700 !important;
                transition: all 0.3s ease !important;
                min-width: 20px !important; /* Smaller width */
                text-align: center !important;
            }

            .faq-item.active .faq-question i {
                /* No rotation needed for plus/minus icons */
            }

            .faq-answer {
                max-height: 0 !important;
                overflow: hidden !important;
                transition: max-height 0.3s ease-out, padding 0.3s ease-out !important;
                background-color: white !important; /* White background for answers */
            }

            .faq-item.active .faq-answer {
                max-height: 300px !important; /* Increased for longer content */
                padding: 15px 20px 20px 20px !important; /* Compact padding */
            }

            .faq-answer p {
                color: var(--text-light) !important;
                line-height: 1.5 !important; /* Tighter line height */
                margin: 0 !important;
                font-size: var(--text-sm) !important; /* Smaller text for compact design */
            }

            /* Tabbed Journey Styles - Matching Your Design */
            .tabbed-journey {
                padding: 0 !important;
                overflow: hidden !important;
            }

            .tabbed-journey-grid {
                display: grid !important;
                grid-template-columns: 280px 1fr !important; /* Slightly wider sidebar */
                min-height: 600px !important; /* Ensure good height */
            }

            .tab-list {
                background: #f8f9fa !important; /* Light grey background for navigation */
                display: flex !important;
                flex-direction: column !important;
                gap: 0 !important; /* No gap between tabs */
                padding: 30px 0 !important;
                border-right: 1px solid #e9ecef !important;
                min-width: 280px !important;
                align-items: stretch !important;
            }

            .tab {
                display: flex !important;
                align-items: center !important;
                gap: 12px !important;
                background: none !important;
                border: none !important;
                outline: none !important;
                font-family: inherit !important;
                font-size: 0.95rem !important; /* Slightly smaller text */
                font-weight: 500 !important;
                color: #6c757d !important; /* Muted text color */
                padding: 16px 24px !important; /* More compact padding */
                border-radius: 12px !important; /* Rounded corners */
                cursor: pointer !important;
                transition: all 0.3s ease !important;
                position: relative !important;
                text-align: left !important;
                margin: 4px 16px !important; /* Spacing between tabs */
                border: 1px solid transparent !important;
            }

            .tab i {
                font-size: 1.1rem !important;
                color: var(--primary-color) !important;
                min-width: 20px !important;
                text-align: center !important;
                flex-shrink: 0 !important;
            }

            .tab:hover {
                background: rgba(56, 178, 73, 0.05) !important;
                color: var(--primary-color) !important;
            }

            .tab.active,
            .tab[aria-selected="true"] {
                background: white !important;
                color: var(--primary-color) !important;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
                font-weight: 600 !important;
                border: 1px solid rgba(56, 178, 73, 0.2) !important;
            }

            .tab.active::before,
            .tab[aria-selected="true"]::before {
                content: '';
                position: absolute;
                left: 0;
                top: 12px;
                bottom: 12px;
                width: 5px;
                border-radius: 4px;
                background: var(--primary-color);
            }

            .tab:focus {
                outline: 2px solid var(--primary-color);
                z-index: 2;
            }

            .tab:hover:not(.active):not([aria-selected="true"]) {
                background: rgba(56,178,73,0.07);
                color: var(--primary-dark);
            }

            .tab-panel {
                padding: 0 !important; /* Remove padding, handled by content layout */
                max-width: none !important; /* Full width */
                margin: 0 !important;
                min-height: 500px !important;
                background: var(--bg-white) !important;
                box-shadow: none !important; /* Remove shadow */
                border-radius: 0 !important; /* Remove border radius */
            }

            /* Tab Content Layout - Matching Your Design */
            .tab-content-layout {
                display: flex !important;
                gap: 40px !important;
                align-items: flex-start !important; /* Align to top instead of center */
                height: 100% !important;
            }

            .tab-content-text {
                flex: 1 !important;
                max-width: 55% !important; /* Slightly less width for text */
                padding-right: 20px !important;
            }

            .tab-content-image {
                flex: 0 0 45% !important; /* Slightly more width for image */
                max-width: 45% !important;
            }

            .tab-content-image img {
                width: 100% !important;
                height: 300px !important;
                object-fit: cover !important;
                border-radius: 15px !important;
                box-shadow: 0 10px 30px rgba(15, 25, 35, 0.1) !important;
            }

            /* Tab Features Styles - 4 Bullet Points */
            .tab-features {
                margin-top: 25px !important;
                display: flex !important;
                flex-direction: column !important;
                gap: 12px !important;
            }

            .tab-features .feature-item {
                display: flex !important;
                align-items: center !important;
                gap: 12px !important;
                padding: 8px 6px !important;
                border: 0px 0px 0px 2px solid #38b249 !important;
                background: none !important;
                box-shadow: none !important;
                min-height: auto !important;
                border-radius: 8px !important;
            }

            .tab-features .feature-item i {
                color: var(--primary-color) !important;
                font-size: 1.1rem !important;
                flex-shrink: 0 !important;
                width: 20px !important;
                text-align: center !important;
            }

            .tab-features .feature-item span {
                color: var(--text-color) !important;
                font-weight: 500 !important;
                line-height: 1.4 !important;
                font-size: 0.95rem !important;
            }

            /* Proven Results Stats Section - Matching Your Design */
            .proven-results-container {
                background: rgba(255, 255, 255, 0.8) !important; /* Translucent white */
                padding: 60px 40px !important;
                margin: 60px auto !important;
                border-radius: 20px !important;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05) !important;
                max-width: 1000px !important;
                border-top: 3px solid var(--primary-color) !important; /* Green border on top */
            }

            .proven-results-section {
                text-align: center !important;
            }

            .proven-results-title {
                font-size: 1.2rem !important; /* Increased from 0.9rem */
                font-weight: 700 !important; /* Increased from 600 */
                color: #4b5563 !important; /* Slightly darker */
                letter-spacing: 1.5px !important; /* Increased spacing */
                margin-bottom: 40px !important;
                text-transform: uppercase !important;
            }

            .stats-grid {
                display: grid !important;
                grid-template-columns: repeat(4, 1fr) !important;
                gap: 30px !important;
                max-width: 900px !important;
                margin: 0 auto !important;
            }

            .proven-results-container .stat-card {
                background: white !important;
                padding: 30px 20px !important;
                border-radius: 16px !important;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
                text-align: center !important;
                border: 1px solid #f0f0f0 !important;
            }

            .proven-results-container .stat-number {
                font-size: 2.5rem !important;
                font-weight: 700 !important;
                color: var(--primary-color) !important;
                display: block !important;
                margin-bottom: 8px !important;
                line-height: 1 !important;
                text-shadow: none !important; /* Remove any shadows */
            }

            .proven-results-container .stat-label {
                font-size: 0.9rem !important;
                color: #6b7280 !important;
                font-weight: 500 !important;
                line-height: 1.3 !important;
            }

            /* Mobile Responsive for Stats */
            @media (max-width: 768px) {
                .proven-results-container {
                    margin: 40px 20px !important;
                    padding: 40px 20px !important;
                }

                .stats-grid {
                    grid-template-columns: repeat(2, 1fr) !important;
                    gap: 20px !important;
                }

                .proven-results-container .stat-card {
                    padding: 20px 10px !important;
                }

                .proven-results-container .stat-number {
                    font-size: 2rem !important;
                }
            }

            @media (max-width: 480px) {
                .proven-results-container {
                    margin: 30px 15px !important;
                    padding: 30px 15px !important;
                }

                .stats-grid {
                    grid-template-columns: 1fr !important;
                    gap: 15px !important;
                }
            }

            /* Partner Stories and Performance Wins Section */
            #success-proof {
                padding: 0px 0 !important;
                background: #f8fafc !important;
            }

            .case-studies-container {
                position: relative !important;
                margin-top: 50px !important;
            }

            .scroll-indicator {
                position: absolute !important;
                top: -30px !important;
                right: 0 !important;
                font-size: 0.9rem !important;
                color: #6b7280 !important;
                display: flex !important;
                align-items: center !important;
                gap: 8px !important;
            }

            .scroll-indicator::before {
                content: "Scroll to see more" !important;
            }

            .scroll-indicator::after {
                content: "→" !important;
                font-weight: bold !important;
            }

            .case-studies-scroll {
                display: flex !important;
                gap: 30px !important;
                overflow-x: auto !important;
                padding: 20px 0 40px 0 !important;
                scroll-behavior: smooth !important;
                -webkit-overflow-scrolling: touch !important;
            }

            .case-studies-scroll::-webkit-scrollbar {
                height: 8px !important;
            }

            .case-studies-scroll::-webkit-scrollbar-track {
                background: #f1f5f9 !important;
                border-radius: 4px !important;
            }

            .case-studies-scroll::-webkit-scrollbar-thumb {
                background: var(--primary-color) !important;
                border-radius: 4px !important;
            }

            .case-studies-scroll::-webkit-scrollbar-thumb:hover {
                background: var(--primary-dark) !important;
            }

            .case-study-card {
                flex: 0 0 400px !important; /* Fixed width for horizontal scroll */
                background: white !important;
                border-radius: 20px !important;
                padding: 30px !important;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
                border: 1px solid #e2e8f0 !important;
                transition: transform 0.3s ease, box-shadow 0.3s ease !important;
            }

            .case-study-card:hover {
                transform: translateY(-5px) !important;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
            }

            .case-study-header {
                display: flex !important;
                justify-content: space-between !important;
                align-items: flex-start !important;
                margin-bottom: 25px !important;
            }

            .client-info {
                display: flex !important;
                gap: 15px !important;
                align-items: flex-start !important;
            }

            .client-logo {
                width: 60px !important;
                height: 60px !important;
                border-radius: 50% !important;
                object-fit: cover !important;
                border: 3px solid #f1f5f9 !important;
            }

            .client-details h4 {
                font-size: 1.1rem !important;
                font-weight: 700 !important;
                color: #1e293b !important;
                margin: 0 0 5px 0 !important;
            }

            .client-details p {
                font-size: 0.9rem !important;
                color: #64748b !important;
                margin: 0 0 8px 0 !important;
            }

            .location {
                display: flex !important;
                align-items: center !important;
                gap: 5px !important;
                font-size: 0.85rem !important;
                color: #94a3b8 !important;
            }

            .case-study-rating {
                text-align: right !important;
            }

            .stars {
                color: #fbbf24 !important;
                margin-bottom: 5px !important;
            }

            .rating-text {
                font-size: 0.9rem !important;
                font-weight: 600 !important;
                color: #1e293b !important;
            }

            .case-study-content blockquote {
                font-size: 1rem !important;
                line-height: 1.6 !important;
                color: #374151 !important;
                font-style: italic !important;
                margin: 0 0 25px 0 !important;
                padding: 0 !important;
                border: none !important;
                position: relative !important;
            }

            .case-study-content blockquote::before {
                content: '"' !important;
                font-size: 3rem !important;
                color: var(--primary-color) !important;
                position: absolute !important;
                top: -10px !important;
                left: -10px !important;
                line-height: 1 !important;
            }

            .case-study-metrics {
              display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 15px 0; margin-bottom: 0px; padding: 15px 0; padding-bottom: 0px; border-top: 1px solid #f0f0f0; border-bottom: 0px;
            }

            .metric {
                text-align: center !important;
                flex: 1 !important;
            }

            .metric-number {
                display: block !important;
                font-size: 1.8rem !important;
                font-weight: 700 !important;
                color: var(--primary-color) !important;
                margin-bottom: 5px !important;
            }

            .metric-label {
                font-size: 0.85rem !important;
                color: #64748b !important;
                font-weight: 500 !important;
            }

            .case-study-footer {
                display: flex !important;
                justify-content: space-between !important;
                align-items: center !important;
            }

            .client-signature strong {
                display: block !important;
                font-size: 0.95rem !important;
                font-weight: 600 !important;
                color: #1e293b !important;
            }

            .client-signature span {
                font-size: 0.85rem !important;
                color: #64748b !important;
            }

            .case-study-duration {
                display: flex !important;
                align-items: center !important;
                gap: 5px !important;
                font-size: 0.85rem !important;
                color: #64748b !important;
                background: #f1f5f9 !important;
                padding: 5px 10px !important;
                border-radius: 12px !important;
            }

            /* Mobile Responsive for Case Studies */
            @media (max-width: 768px) {
                #success-proof {
                    padding: 60px 0 !important;
                }

                .case-studies-container {
                    margin-top: 30px !important;
                }

                .case-studies-scroll {
                    gap: 20px !important;
                    padding: 15px 0 30px 0 !important;
                }

                .case-study-card {
                    flex: 0 0 320px !important; /* Smaller width for mobile */
                    padding: 25px !important;
                }

                .client-logo {
                    width: 50px !important;
                    height: 50px !important;
                }

                .client-details h4 {
                    font-size: 1rem !important;
                }

                .case-study-content blockquote {
                    font-size: 0.95rem !important;
                }

                .case-study-metrics {
                    gap: 15px !important;
                    padding: 15px 0 !important;
                }

                .metric-number {
                    font-size: 1.5rem !important;
                }

                .case-study-footer {
                    flex-direction: column !important;
                    gap: 10px !important;
                    align-items: flex-start !important;
                }
            }

            @media (max-width: 480px) {
                .case-study-card {
                    flex: 0 0 280px !important; /* Even smaller for very small screens */
                    padding: 20px !important;
                }

                .case-study-header {
                    flex-direction: column !important;
                    gap: 15px !important;
                }

                .case-study-rating {
                    text-align: left !important;
                }

                .case-study-metrics {
                    gap: 10px !important;
                }

                .metric-number {
                    font-size: 1.3rem !important;
                }

                .metric-label {
                    font-size: 0.8rem !important;
                }
            }

            /* Hero Section Proven Results - Specific Classes to Avoid Override */
            .hero-proven-results-container {
                background: rgba(255, 255, 255, 0.8) !important; /* Translucent white background */
                padding: 20px 20px !important;
                margin: 60px auto auto !important;
                border-radius: 20px !important;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05) !important;
                /* max-width: 1000px !important; */
                border-top: 3px solid var(--primary-color) !important; /* Green border on top */
            }

            .hero-proven-results-section {
                text-align: center !important;
            }

            .hero-proven-results-title {
                font-size: 1.2rem !important;
                font-weight: 600 !important;
                color: #6b7280 !important;
                margin: 0 0 10px 0 !important;
                letter-spacing: 1px !important;
                text-transform: uppercase !important;
            }

            .hero-stats-grid {
                display: grid !important;
                grid-template-columns: repeat(4, 1fr) !important;
                gap: 30px !important;
                /* max-width: 900px !important; */
                margin: 0 auto !important;
            }

            .hero-stat-card {
                background: white !important; /* Individual cards have solid white background */
                padding: 30px 20px !important;
                border-radius: 16px !important;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
                text-align: center !important;
                border: 1px solid #f0f0f0 !important;
            }

            .hero-stat-number {
                font-size: 2.5rem !important;
                font-weight: 700 !important;
                color: var(--primary-color) !important; /* Green text for numbers */
                display: block !important;
                margin-bottom: 8px !important;
                line-height: 1 !important;
                text-shadow: none !important;
            }

            .hero-stat-label {
                font-size: 0.9rem !important;
                color: #6b7280 !important;
                font-weight: 500 !important;
                line-height: 1.3 !important;
            }

            /* Hero Stats Mobile Responsive */
            @media (max-width: 768px) {
                .hero-proven-results-container {
                    margin: 40px 20px !important;
                    padding: 40px 20px !important;
                }

                .hero-stats-grid {
                    grid-template-columns: repeat(2, 1fr) !important;
                    gap: 20px !important;
                }

                .hero-stat-card {
                    padding: 20px 10px !important;
                }

                .hero-stat-number {
                    font-size: 2rem !important;
                }
            }

            @media (max-width: 480px) {
                .hero-proven-results-container {
                    margin: 30px 15px !important;
                    padding: 30px 15px !important;
                }

                .hero-stats-grid {
                    grid-template-columns: 1fr !important;
                    gap: 15px !important;
                }
            }

            /* Contact Section Styles */
            #contact {
                padding: 80px 0 !important;
                background: #f8fafc !important;
            }

            .contact-section-grid {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 40px !important; /* Reduced from 60px to 40px */
                align-items: center !important;
                max-width: 1200px !important;
                margin: 30px auto 0 auto !important; /* Reduced from 50px to 30px */
            }

            .contact-image-container {
                position: relative !important;
                border-radius: 20px !important;
                overflow: hidden !important;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
            }

            .contact-image {
                width: 100% !important;
                height: 420px !important; /* Reduced from 500px to 420px */
                object-fit: cover !important;
                display: block !important;
            }

            .contact-image-overlay {
                position: absolute !important;
                bottom: 0 !important;
                left: 0 !important;
                right: 0 !important;
                background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)) !important;
                padding: 25px 25px 20px 25px !important; /* Reduced padding */
                color: white !important;
            }

            .contact-overlay-content h3 {
                font-size: 1.5rem !important;
                font-weight: 700 !important;
                margin: 0 0 10px 0 !important;
                color: white !important;
            }

            .contact-overlay-content p {
                font-size: 1rem !important;
                margin: 0 !important;
                opacity: 0.9 !important;
                line-height: 1.5 !important;
            }



            .contact-form .form-group {
                position: relative !important;
                margin-bottom: 18px !important; /* Reduced from 25px to 18px */
            }

            /* Two-column layout for form fields to save vertical space */
            .contact-form .form-row {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 15px !important;
                margin-bottom: 18px !important;
            }

            .contact-form .form-row .form-group {
                margin-bottom: 0 !important; /* Remove bottom margin for row items */
            }

            .contact-form input,
            .contact-form textarea {
                width: 100% !important;
                padding: 12px 14px !important; /* Reduced from 15px 16px to 12px 14px */
                border: 2px solid #e5e7eb !important;
                border-radius: 12px !important;
                font-size: 0.95rem !important; /* Slightly smaller font */
                background: #ffffff !important;
                color: #1a202c !important;
                transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
                box-sizing: border-box !important;
            }

            .contact-form input:focus,
            .contact-form textarea:focus {
                outline: none !important;
                border-color: var(--primary-color) !important;
                box-shadow: 0 0 0 3px rgba(103, 194, 88, 0.1) !important;
            }

            .contact-form label {
                position: absolute !important;
                left: 14px !important; /* Adjusted for smaller padding */
                top: 12px !important; /* Adjusted for smaller padding */
                color: #6b7280 !important;
                font-size: 0.95rem !important; /* Slightly smaller */
                transition: all 0.3s ease !important;
                pointer-events: none !important;
                background: white !important;
                padding: 0 4px !important;
            }

            .contact-form input:focus + label,
            .contact-form textarea:focus + label,
            .contact-form input:not(:placeholder-shown) + label,
            .contact-form textarea:not(:placeholder-shown) + label {
                top: -8px !important;
                left: 12px !important;
                font-size: 0.85rem !important;
                color: var(--primary-color) !important;
                font-weight: 500 !important;
            }

            .contact-form .submit-button {
                width: 100% !important;
                padding: 14px 20px !important; /* Reduced from 16px 24px */
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
                color: white !important;
                border: none !important;
                border-radius: 50px !important; /* Rounded button */
                font-size: 0.95rem !important; /* Slightly smaller */
                font-weight: 600 !important;
                cursor: pointer !important;
                transition: all 0.3s ease !important;
                text-transform: uppercase !important;
                letter-spacing: 0.5px !important;
                margin-top: 8px !important; /* Add small top margin */
            }

            .contact-form .submit-button:hover {
                background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
                transform: translateY(-2px) !important;
                box-shadow: 0 8px 25px rgba(56, 178, 73, 0.3) !important;
            }

            .form-message {
                padding: 15px 20px !important;
                border-radius: 12px !important;
                margin-bottom: 25px !important;
                font-weight: 500 !important;
            }

            .form-message.success {
                background: #d1fae5 !important;
                color: #065f46 !important;
                border: 1px solid #a7f3d0 !important;
            }

            .form-message.error {
                background: #fee2e2 !important;
                color: #991b1b !important;
                border: 1px solid #fca5a5 !important;
            }

            /* Contact Section Mobile Responsive */
            @media (max-width: 768px) {
                #contact {
                    padding: 60px 0 !important;
                }

                .contact-section-grid {
                    grid-template-columns: 1fr !important;
                    gap: 25px !important; /* Reduced from 40px to 25px */
                    margin: 20px auto 0 auto !important; /* Reduced from 30px to 20px */
                }

                .contact-image {
                    height: 250px !important; /* Reduced from 300px to 250px */
                }

                .contact-image-overlay {
                    padding: 30px 20px 20px 20px !important;
                }

                .contact-overlay-content h3 {
                    font-size: 1.3rem !important;
                }

                .contact-overlay-content p {
                    font-size: 0.9rem !important;
                }



                .contact-form input,
                .contact-form textarea {
                    padding: 12px 14px !important; /* Reduced padding */
                    font-size: 16px !important; /* Prevents zoom on iOS */
                }

                .contact-form .submit-button {
                    padding: 12px 18px !important; /* Reduced padding */
                    font-size: 0.9rem !important; /* Slightly smaller */
                }

                /* Stack form fields vertically on mobile */
                .contact-form .form-row {
                    grid-template-columns: 1fr !important;
                    gap: 0 !important;
                }

                .contact-form .form-row .form-group {
                    margin-bottom: 15px !important;
                }
            }

            @media (max-width: 480px) {
                .contact-form .form-group {
                    margin-bottom: 15px !important; /* Reduced from 20px to 15px */
                }

                .contact-overlay-content h3 {
                    font-size: 1.2rem !important;
                }

                .contact-overlay-content p {
                    font-size: 0.85rem !important;
                }
            }

            /* Global Button Rounding - Force All Buttons to be Rounded */
            button,
            .btn,
            .cta-button,
            .cta-button-small,
            input[type="submit"],
            input[type="button"],
            .wp-block-button__link,
            .elementor-button,
            .button {
                border-radius: 50px !important;
            }

            /* Specific button overrides for different sizes */
            .tab {
                border-radius: 12px !important; /* Tabs stay moderately rounded */
            }

            .stat-card {
                background: white !important; /* Ensure white background for all stat cards */
                border-radius: 16px !important; /* Cards stay moderately rounded */
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
                border: 1px solid #f0f0f0 !important;
            }

            /* Feature List Styles */
            .feature-list {
                margin: 25px 0;
            }

            .feature-list .feature-item {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 15px;
                padding: 12px 0;
            }

            .feature-list .feature-item i {
                color: var(--primary-color);
                font-size: var(--text-lg);
                flex-shrink: 0;
            }

            .feature-list .feature-item span {
                color: var(--text-color);
                font-weight: 500;
                line-height: 1.5;
            }

            .platform-note {
                background: rgba(56, 178, 73, 0.05);
                padding: 15px;
                border-radius: 10px;
                border-left: 4px solid var(--primary-color);
                margin-top: 20px;
                font-style: italic;
                color: var(--text-light);
                font-size: var(--text-sm);
            }

            .tab-panel .section-title {
                font-size: 1.4rem;
                margin-bottom: 5px;
                text-align: left;
                padding-bottom: 0;
            }

            .tab-panel .section-title::before,
            .tab-panel .section-title::after {
                display: none;
            }

            .tab-panel .section-subtitle {
                margin: 5px auto 15px auto;
                font-size: 1.0rem;
                color: #6b7280;
                text-align: left;
            }

            .website-features-container {
                gap: 32px !important;
                align-items: center !important;
            }

            .feature-item {
                min-height: 120px;
                padding: 18px 20px;
                box-shadow: 0 4px 16px rgba(56,178,73,0.06);
                border-radius: 16px;
            }

            .website-mockup, .content-image, .custom-strategy-image, .ads-image {
                border-radius: 16px !important;
                box-shadow: 0 4px 16px rgba(56,178,73,0.06) !important;
            }

            .website-image-with-stats {
                position: relative;
                width: 100%;
                max-width: 500px;
                margin: 0 auto 0 0;
                border-radius: 18px;
                overflow: hidden;
                box-shadow: 0 4px 24px rgba(56,178,73,0.08);
                background: var(--bg-white);
            }

            .website-main-image {
                display: block;
                width: 100%;
                height: auto;
                border-radius: 18px 18px 0 0;
            }

            .website-stats-overlay {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                display: flex;
                justify-content: space-between;
                gap: 8px;
                padding: 0 12px 12px 12px;
                z-index: 2;
            }

            .website-stats-overlay .stat-item {
                background: #fff;
                border-radius: 12px;
                box-shadow: 0 2px 8px rgba(56,178,73,0.08);
                padding: 10px 12px;
                min-width: 90px;
                flex: 1 1 0;
                display: flex;
                align-items: center;
                gap: 8px;
                margin: 0;
            }

            .website-stats-overlay .stat-icon {
                width: 28px;
                height: 28px;
                border-radius: 8px;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
                color: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.1rem;
                flex-shrink: 0;
            }

            .website-stats-overlay .stat-text h4 {
                font-size: 1.05rem;
                margin: 0 0 2px 0;
                font-weight: 700;
                color: var(--primary-color);
            }

            .website-stats-overlay .stat-text p {
                font-size: 0.85rem;
                color: var(--text-light);
                margin: 0;
                font-weight: 500;
            }

            .tab-panel .website-features {
                gap: 12px !important;
            }

            .tab-panel .feature-item {
                min-height: 60px;
                padding: 10px 12px;
                border-radius: 10px;
                box-shadow: 0 1px 4px rgba(56,178,73,0.04);
            }

            .tab-panel .feature-icon {
                width: 26px;
                height: 26px;
                font-size: 1rem;
                border-radius: 6px;
                margin-right: 8px;
            }

            .tab-panel .feature-content h3 {
                font-size: 0.98rem;
                margin-bottom: 2px;
                font-weight: 700;
                line-height: 1.2;
            }

            .tab-panel .feature-content p {
                font-size: 0.89rem;
                line-height: 1.5;
                margin-bottom: 0;
            }

            .tab-panel .cta-center {
                text-align: center;
                margin-top: 20px;
                position: relative;
            }

            .tab-panel .cta-center::before {
                display: none !important;
                content: none !important;
            }

            @keyframes fadeInTab {
                from { opacity: 0; transform: translateY(20px); }
                to { opacity: 1; transform: translateY(0); }
            }

            .tab-panel[hidden] {
                display: none;
            }

            /* Responsive Tabbed Journey Styles */
            @media (max-width: 1024px) {
                .tab-panel {
                    padding: 16px 0 16px 0;
                }
                .website-features-container {
                    gap: 18px !important;
                    flex-direction: column !important;
                }
                .tabbed-journey-grid {
                    grid-template-columns: 1fr;
                }
                .tab-list {
                    flex-direction: row;
                    border-right: none;
                    border-bottom: 1px solid #f0f0f0;
                    padding: 0 0 0 0;
                    gap: 0;
                    overflow-x: auto;
                    min-width: 0;
                    background: var(--bg-light);
                }
                .tab {
                    border-radius: 0 0 0 0;
                    padding: 16px 18px;
                    font-size: 1rem;
                    min-width: 120px;
                    justify-content: center;
                    border-bottom: 2px solid transparent;
                }
                .tab.active,
                .tab[aria-selected="true"] {
                    border-bottom: 2.5px solid var(--primary-color);
                    border-radius: 0;
                    background: var(--bg-white);
                    color: var(--primary-color);
                    box-shadow: none;
                }
                .tab.active::before,
                .tab[aria-selected="true"]::before {
                    display: none;
                }
                .tab-panel {
                    padding: 32px 10px 32px 10px;
                    min-height: 400px;
                }

                /* Mobile Tab Content Layout */
                .tab-content-layout {
                    flex-direction: column;
                    gap: 25px;
                }

                .tab-content-text {
                    max-width: 100%;
                }

                .tab-content-image {
                    flex: none;
                    max-width: 100%;
                }

                .tab-content-image img {
                    height: 200px;
                }
            }

            @media (max-width: 600px) {
                .tabbed-journey {
                    border-radius: 0;
                    box-shadow: none;
                    margin: 0 0 40px 0;
                }
                .tab-panel {
                    padding: 18px 2px 18px 2px;
                }
                .website-image-with-stats {
                    max-width: 100%;
                    border-radius: 12px;
                }
                .website-main-image {
                    border-radius: 12px 12px 0 0;
                }
                .website-stats-overlay {
                    flex-direction: column;
                    gap: 6px;
                    padding: 0 6px 6px 6px;
                    position: static;
                    background: none;
                }
                .website-stats-overlay .stat-item {
                    min-width: 0;
                    padding: 8px 8px;
                    font-size: 0.95rem;
                }
            }

            /* SEO Strategy Visual Styles */
            .seo-strategy-visual {
                background: var(--bg-light);
                border-radius: 12px;
                padding: 20px;
                box-shadow: 0 4px 16px rgba(56,178,73,0.06);
            }

            .serp-preview {
                background: white;
                border-radius: 8px;
                padding: 16px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            }

            .serp-header {
                margin-bottom: 12px;
            }

            .serp-url {
                display: flex;
                align-items: center;
                gap: 8px;
                color: var(--text-light);
                font-size: 0.9rem;
            }

            .serp-title {
                font-size: 1.1rem;
                font-weight: 600;
                color: var(--primary-color);
                margin-bottom: 8px;
            }

            .serp-description {
                color: var(--text-light);
                font-size: 0.9rem;
                line-height: 1.4;
                margin-bottom: 12px;
            }

            .serp-features {
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
            }

            .serp-feature {
                background: rgba(56,178,73,0.1);
                color: var(--primary-color);
                padding: 4px 8px;
                border-radius: 4px;
                font-size: 0.8rem;
                font-weight: 500;
            }

            /* AI Visual Styles */
            .ai-visual {
                background: var(--bg-light);
                border-radius: 12px;
                padding: 20px;
                box-shadow: 0 4px 16px rgba(56,178,73,0.06);
                min-height: 300px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .ai-devices {
                display: flex;
                gap: 20px;
                align-items: center;
                justify-content: center;
                flex-wrap: wrap;
            }

            .ai-device {
                position: relative;
            }

            .smart-speaker {
                width: 60px;
                height: 80px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .speaker-top {
                width: 50px;
                height: 15px;
                background: #333;
                border-radius: 25px 25px 0 0;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .speaker-light {
                width: 8px;
                height: 8px;
                background: var(--primary-color);
                border-radius: 50%;
                animation: pulse 2s infinite;
            }

            .speaker-body {
                width: 50px;
                height: 50px;
                background: #444;
                border-radius: 0 0 25px 25px;
            }

            .speaker-base {
                width: 60px;
                height: 8px;
                background: #222;
                border-radius: 4px;
                margin-top: 2px;
            }

            .voice-waves {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                display: flex;
                gap: 2px;
            }

            .voice-waves span {
                width: 2px;
                height: 10px;
                background: var(--primary-color);
                border-radius: 1px;
                animation: wave 1.5s infinite ease-in-out;
            }

            .voice-waves span:nth-child(2) {
                animation-delay: 0.1s;
            }

            .voice-waves span:nth-child(3) {
                animation-delay: 0.2s;
            }

            .voice-waves span:nth-child(4) {
                animation-delay: 0.3s;
            }

            @keyframes wave {
                0%, 40%, 100% {
                    transform: scaleY(0.4);
                }
                20% {
                    transform: scaleY(1);
                }
            }

            .smartphone {
                width: 40px;
                height: 70px;
                background: #333;
                border-radius: 8px;
                position: relative;
                display: flex;
                flex-direction: column;
            }

            .phone-screen {
                flex: 1;
                background: #000;
                margin: 4px;
                border-radius: 4px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
            }

            .voice-assistant {
                color: var(--primary-color);
                text-align: center;
            }

            .assistant-wave {
                width: 20px;
                height: 20px;
                border: 2px solid var(--primary-color);
                border-radius: 50%;
                margin-bottom: 4px;
                animation: pulse 2s infinite;
            }

            .assistant-text {
                font-size: 6px;
                color: white;
                text-align: center;
                line-height: 1.2;
            }

            .phone-button {
                width: 12px;
                height: 12px;
                background: #666;
                border-radius: 50%;
                margin: 0 auto 4px;
            }

            .laptop {
                width: 80px;
                height: 50px;
                position: relative;
            }

            .laptop-screen {
                width: 80px;
                height: 45px;
                background: #333;
                border-radius: 4px 4px 0 0;
                padding: 4px;
            }

            .laptop-base {
                width: 90px;
                height: 8px;
                background: #444;
                border-radius: 0 0 8px 8px;
                margin: 0 auto;
            }

            .ai-search {
                background: white;
                border-radius: 2px;
                padding: 4px;
                height: 100%;
                font-size: 6px;
            }

            .ai-search-bar {
                display: flex;
                align-items: center;
                gap: 2px;
                padding: 2px;
                background: #f5f5f5;
                border-radius: 2px;
                margin-bottom: 4px;
            }

            .ai-search-bar i {
                font-size: 4px;
                color: var(--primary-color);
            }

            .ai-search-bar span {
                font-size: 4px;
                color: #666;
            }

            .ai-result {
                background: #f9f9f9;
                border-radius: 2px;
                padding: 2px;
            }

            .ai-result-header {
                display: flex;
                align-items: center;
                gap: 2px;
                margin-bottom: 2px;
            }

            .ai-result-header i {
                font-size: 4px;
                color: var(--primary-color);
            }

            .ai-result-header span {
                font-size: 4px;
                font-weight: 600;
                color: var(--primary-color);
            }

            .ai-result-content {
                font-size: 3px;
                color: #666;
                line-height: 1.2;
            }

            /* Content Image Styles */
            .content-image {
                position: relative;
                border-radius: 12px;
                overflow: hidden;
                height: 300px;
                box-shadow: 0 4px 16px rgba(56,178,73,0.06);
            }

            .content-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .content-image-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
                padding: 20px;
                color: white;
            }

            .overlay-text h3 {
                font-size: 1.2rem;
                margin: 0 0 8px 0;
                font-weight: 600;
            }

            .overlay-text p {
                font-size: 0.9rem;
                margin: 0;
                opacity: 0.9;
            }

            /* Custom Strategy Image Styles */
            .custom-strategy-image {
                position: relative;
                border-radius: 12px;
                overflow: hidden;
                height: 300px;
                box-shadow: 0 4px 16px rgba(56,178,73,0.06);
            }

            .custom-strategy-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .custom-image-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
                padding: 20px;
                color: white;
            }

            /* Ads Image Styles */
            .ads-image {
                position: relative;
                border-radius: 12px;
                overflow: hidden;
                height: 300px;
                box-shadow: 0 4px 16px rgba(56,178,73,0.06);
            }

            .ads-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .ads-image-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
                padding: 20px;
                color: white;
            }

            @keyframes pulse {
                0% {
                    opacity: 1;
                    transform: scale(1);
                }
                50% {
                    opacity: 0.5;
                    transform: scale(1.1);
                }
                100% {
                    opacity: 1;
                    transform: scale(1);
                }
            }

            /* Enhanced Case Study Card Styles */
            .case-study-card {
                background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
                border-radius: 20px;
                padding: 25px;
                box-shadow:
                    0 10px 30px rgba(56,178,73,0.08),
                    0 4px 15px rgba(15, 25, 35, 0.05),
                    inset 0 1px 0 rgba(255, 255, 255, 0.8);
                border: 1px solid rgba(56,178,73,0.12);
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                min-width: 340px;
                max-width: 340px;
                flex-shrink: 0;
                display: flex;
                flex-direction: column;
                position: relative;
                overflow: hidden;
            }

            .case-study-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg,
                    var(--primary-color) 0%,
                    #22c55e 50%,
                    var(--primary-dark) 100%);
                opacity: 0;
                transition: opacity 0.4s ease;
            }

            .case-study-card:hover {
                transform: translateY(-8px) scale(1.02);
                box-shadow:
                    0 20px 50px rgba(56,178,73,0.15),
                    0 8px 25px rgba(15, 25, 35, 0.08),
                    inset 0 1px 0 rgba(255, 255, 255, 0.9);
                border-color: rgba(56,178,73,0.2);
            }

            .case-study-card:hover::before {
                opacity: 1;
            }

            .case-study-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 15px;
                padding-bottom: 15px;
                border-bottom: 1px solid #f0f0f0;
            }

            .client-info {
                display: flex;
                gap: 12px;
                align-items: center;
            }

            .client-logo {
                width: 45px;
                height: 45px;
                border-radius: 10px;
                object-fit: cover;
                border: 2px solid rgba(56,178,73,0.1);
            }

            .client-details h4 {
                font-size: 1.1rem;
                font-weight: 700;
                color: var(--text-dark);
                margin: 0 0 4px 0;
            }

            .client-details p {
                font-size: 0.9rem;
                color: var(--text-light);
                margin: 0 0 8px 0;
            }

            .location {
                display: flex;
                align-items: center;
                gap: 6px;
                font-size: 0.85rem;
                color: var(--text-light);
            }

            .location i {
                color: var(--primary-color);
            }

            .case-study-rating {
                text-align: right;
            }

            .stars {
                display: flex;
                gap: 2px;
                margin-bottom: 4px;
                justify-content: flex-end;
            }

            .stars i {
                color: #ffd700;
                font-size: 0.9rem;
            }

            .rating-text {
                font-size: 0.85rem;
                color: var(--text-light);
                font-weight: 600;
            }

            .case-study-content {
                flex: 1;
                display: flex;
                flex-direction: column;
            }

            .case-study-content blockquote {
                font-size: 0.95rem;
                line-height: 1.5;
                color: var(--text-dark);
                font-style: italic;
                margin: 0 0 15px 0;
                padding: 0;
                border: none;
                position: relative;
                flex: 1;
            }

            .case-study-content blockquote::before {
                content: '"';
                font-size: 2rem;
                color: var(--primary-color);
                position: absolute;
                top: -8px;
                left: -8px;
                font-family: Georgia, serif;
                opacity: 0.3;
            }

            .case-study-metrics {
                display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 15px 0; margin-bottom: 0px; padding: 15px 0; padding-bottom: 0px; border-top: 1px solid #f0f0f0; border-bottom: 0px;
				
				
            }

            .metric {
                text-align: center;
            }

            .metric-number {
                display: block;
                font-size: 1.8rem;
                font-weight: 800;
                color: var(--primary-color);
                margin-bottom: 4px;
            }

            .metric-label {
                font-size: 0.85rem;
                color: var(--text-light);
                font-weight: 500;
            }

            .case-study-footer {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: auto;
                padding-top: 16px;
            }

            .client-signature strong {
                display: block;
                font-size: 0.95rem;
                color: var(--text-dark);
                margin-bottom: 2px;
            }

            .client-signature span {
                font-size: 0.85rem;
                color: var(--text-light);
            }

            .case-study-duration {
                display: flex;
                align-items: center;
                gap: 6px;
                font-size: 0.85rem;
                color: var(--text-light);
                background: rgba(56,178,73,0.1);
                padding: 6px 12px;
                border-radius: 20px;
            }

            .case-study-duration i {
                color: var(--primary-color);
            }

            /* Responsive Case Study Styles */
            @media (max-width: 768px) {
                .case-studies-container {
                    margin-top: 30px;
                }

                .case-studies-scroll {
                    gap: 20px;
                    padding: 20px 0 25px 0;
                }

                .case-study-card {
                    min-width: 300px;
                    max-width: 300px;
                    padding: 20px;
                }

                .scroll-indicator {
                    width: 50px;
                    opacity: 0.6;
                }

                .scroll-indicator::after {
                    font-size: 16px;
                }

                .case-study-header {
                    flex-direction: column;
                    gap: 16px;
                    align-items: flex-start;
                }

                .client-info {
                    width: 100%;
                }

                .case-study-rating {
                    text-align: left;
                }

                .stars {
                    justify-content: flex-start;
                }

                .case-study-metrics {
                    grid-template-columns: 1fr;
                    gap: 12px;
                    text-align: left;
                }

                .metric {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 8px 0;
                }

                .metric-number {
                    font-size: 1.4rem;
                    margin-bottom: 0;
                }

                .case-study-footer {
                    flex-direction: column;
                    gap: 12px;
                    align-items: flex-start;
                }

                .case-study-content blockquote {
                    font-size: 1rem;
                    padding-left: 20px;
                }
            }

            /* Final CTA Styles */
            .final-cta-content {
                display: grid;
                grid-template-columns: 1fr 300px;
                gap: 60px;
                align-items: center;
                max-width: 1000px;
                margin: 0 auto;
            }

            .cta-text-section {
                color: white;
            }

            .cta-heading {
                color: white;
                font-size: var(--text-3xl);
                margin-bottom: 20px;
                font-weight: 700;
                line-height: 1.3;
            }

            .cta-subheading {
                color: rgba(255, 255, 255, 0.9);
                font-size: var(--text-lg);
                margin-bottom: 40px;
                line-height: 1.5;
            }

            /* Contact Form Styles - Matching index.html */
            .contact-form {
                background-color: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                padding: 40px;
                border-radius: 20px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                position: relative;
                z-index: 1;
                overflow: hidden;
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .contact-form::before {
                content: '';
                position: absolute;
                top: -50px;
                right: -50px;
                width: 250px;
                height: 250px;
                background: radial-gradient(circle, rgba(56, 178, 73, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
                z-index: -1;
                border-radius: 50%;
            }

            .contact-form::after {
                content: '';
                position: absolute;
                bottom: -50px;
                left: -50px;
                width: 250px;
                height: 250px;
                background: radial-gradient(circle, rgba(56, 178, 73, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
                z-index: -1;
                border-radius: 50%;
            }

            .form-group {
                position: relative;
                margin-bottom: 30px;
            }

            .form-group label {
                position: absolute;
                top: 15px;
                left: 20px;
                color: var(--text-light);
                transition: all 0.3s ease;
                pointer-events: none;
                font-size: 16px;
                background: transparent;
                padding: 0 5px;
                z-index: 1;
            }

            .form-group input,
            .form-group textarea {
                width: 100%;
                padding: 12px 14px;
                border: 1px solid rgba(56, 178, 73, 0.2);
                border-radius: 16px;
                transition: var(--transition);
                color: var(--text-color);
                font-size: 16px;
                background-color: rgba(255, 255, 255, 0.9);
                box-shadow: 0 5px 15px rgba(15, 25, 35, 0.03);
            }

            .form-group input:focus,
            .form-group textarea:focus,
            .form-group input:not(:placeholder-shown),
            .form-group textarea:not(:placeholder-shown) {
                outline: none;
                border-color: var(--primary-color);
                box-shadow: 0 0 0 4px rgba(56, 178, 73, 0.1);
                background-color: white;
                padding-top: 24px;
                padding-bottom: 12px;
            }

            .form-group input:focus ~ label,
            .form-group textarea:focus ~ label,
            .form-group input:not(:placeholder-shown) ~ label,
            .form-group textarea:not(:placeholder-shown) ~ label {
                top: -12px;
                left: 18px;
                font-size: 12px;
                background: white;
                padding: 0 8px;
                color: var(--primary-color);
                font-weight: 600;
                letter-spacing: 0.5px;
                box-shadow: 0 0 10px white;
            }

            .submit-button {
                position: relative;
                overflow: hidden;
                background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
                color: #fff;
                border: none;
                padding: 18px 40px;
                border-radius: 16px;
                font-size: var(--text-lg);
                font-weight: 600;
                cursor: pointer;
                transition: var(--transition);
                width: 100%;
                box-shadow: 0 8px 24px rgba(56,178,73,0.10);
            }

            .submit-button:hover {
                background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
                color: #fff;
                box-shadow: 0 12px 32px rgba(56,178,73,0.18);
                transform: translateY(-2px);
            }

            .trust-text {
                color: rgba(255, 255, 255, 0.8);
                font-size: var(--text-sm);
                text-align: center;
                margin-top: 20px;
                font-style: italic;
            }

            .cta-image-section {
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .person-image-placeholder {
                width: 300px;
                height: 400px;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            }

            .person-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
    /* Base Styles */
    :root {
        /* Colors */
        --primary-color: #38B249;
        --primary-dark: #2A8C3A;
        --primary-light: #8FD9A0;
        --secondary-color: #0F1923;
        --accent-color: #4A6572;
        --accent-light: #718792;
        --text-color: #0F1923;
        --text-light: #4A5568;
        --bg-light: #F9FAFB;
        --bg-white: #FFFFFF;
        --premium-blue: #344955;
        --premium-blue-light: #4A6572;

        /* Shadows & Effects */
        --shadow: 0 10px 30px rgba(15, 25, 35, 0.06);
        --border-radius: 12px;
        --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        --container-shadow: 0 20px 50px rgba(15, 25, 35, 0.08);
        --premium-shadow: 0 25px 60px rgba(15, 25, 35, 0.12);
        --card-hover-transform: translateY(-12px);
        --glass-bg: rgba(255, 255, 255, 0.95);
        --glass-border: 1px solid rgba(255, 255, 255, 0.2);
        --glass-shadow: 0 8px 32px rgba(15, 25, 35, 0.08);
        --premium-gradient: linear-gradient(135deg, var(--premium-blue), var(--premium-blue-light));

        /* Typography Scale */
        --text-xs: 0.75rem;    /* 12px */
        --text-sm: 0.875rem;   /* 14px */
        --text-base: 1rem;     /* 16px */
        --text-lg: 1.125rem;   /* 18px */
        --text-xl: 1.25rem;    /* 20px */
        --text-2xl: 1.5rem;    /* 24px */
        --text-3xl: 1.875rem;  /* 30px */
        --text-4xl: 2.25rem;   /* 36px */
        --text-5xl: 3rem;      /* 48px */
        --text-6xl: 3.75rem;   /* 60px */
        --text-7xl: 4.5rem;    /* 72px */
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.7;
        color: var(--text-color);
        overflow-x: hidden;
        background-color: var(--bg-light);
        font-size: var(--text-base);
        letter-spacing: 0.01em;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: var(--secondary-color);
        letter-spacing: -0.02em;
    }

    p {
        margin-bottom: 1rem;
    }

    a {
        color: var(--primary-color);
        text-decoration: none;
        transition: var(--transition);
    }

    a:hover {
        color: var(--primary-dark);
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }

    @media (min-width: 1440px) {
        .container {
            max-width: 1320px;
            padding: 0 60px;
        }
    }

    .scroll-section {
        padding: 40px 0;
    }

    #hero {
        padding: 200px 0 120px;
    }

    #why-us {
        padding: 40px 0;
    }

    #services {
        padding: 40px 0;
    }

    #results {
        padding: 40px 0;
    }

    .bg-light {
        background-color: var(--bg-light);
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234caf50' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .section-title {
        text-align: center;
        margin-bottom: 80px;
        font-size: var(--text-3xl);
        position: relative;
        padding-bottom: 20px;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    #contact .section-title {
        margin-bottom: 40px;
    }

    .section-title::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background-color: rgba(76, 175, 80, 0.2);
        border-radius: 2px;
    }

    .section-subtitle {
        text-align: center;
        margin: 0px auto 60px;
        color: var(--text-light);
        font-size: var(--text-xl);
        font-weight: 300;
        line-height: 1.6;
    }

    /* Header & Navigation */
    #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--glass-bg);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: var(--glass-border);
        box-shadow: var(--glass-shadow);
        transition: var(--transition);
    }

    #header.sticky {
        box-shadow: var(--premium-shadow);
        background-color: rgba(255, 255, 255, 0.98);
    }

    #navbar {
        padding: 20px 0;
    }

    #navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo h1 {
        font-size: 1.8rem;
        margin-bottom: 0;
        font-weight: 800;
        letter-spacing: -0.5px;
        position: relative;
        display: inline-block;
    }

    .logo span {
        background: var(--premium-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
    }

    .logo::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 30px;
        height: 3px;
        background: var(--premium-gradient);
        border-radius: 2px;
    }

    .nav-links {
        display: flex;
        align-items: center;
    }

    .nav-links li {
        margin-left: 30px;
    }

    .nav-links a {
        color: var(--secondary-color);
        font-weight: 500;
        position: relative;
        padding: 8px 0;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
        transition: var(--transition);
    }

    .nav-links a:not(.cta-button-small)::before {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: 0;
        left: 0;
        background-color: var(--premium-blue);
        transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-links a:not(.cta-button-small)::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        top: 0;
        right: 0;
        background-color: var(--premium-blue);
        transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-links a:not(.cta-button-small):hover::before,
    .nav-links a:not(.cta-button-small):hover::after {
        width: 100%;
    }

    .nav-links a:hover {
        color: var(--primary-color);
    }

    .cta-button-small {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: var(--bg-white) !important;
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: 600;
        box-shadow: 0 6px 20px rgba(56, 178, 73, 0.2);
        transition: var(--transition);
        border: 1px solid rgba(56, 178, 73, 0.1);
    }

    .cta-button-small:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(56, 178, 73, 0.3);
    }

    .hamburger {
        display: none;
        cursor: pointer;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--secondary-color);
    }

    /* Hero Section */
    #hero {
        padding-top: 120px;
        padding-bottom: 60px;
        position: relative;
        overflow: hidden;
        background-color: var(--bg-white);
        background-image: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8)),
                        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    #hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 100%;
        background: linear-gradient(135deg, rgba(56, 178, 73, 0.05), rgba(52, 73, 85, 0.05));
        border-radius: 30px 30px 30px 200px;
        z-index: -1;
    }

    #hero::after {
        content: '';
        position: absolute;
        top: 80px;
        right: 8%;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(52, 73, 85, 0.08), transparent 70%);
        border-radius: 50%;
        z-index: -1;
    }

    #hero .container {
        position: relative;
    }

    #hero .container::before {
        content: '';
        position: absolute;
        top: -100px;
        left: -50px;
        width: 200px;
        height: 200px;
        border: 1px solid rgba(56, 178, 73, 0.1);
        border-radius: 50%;
        z-index: -1;
    }

    #hero .container::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: 10%;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(56, 178, 73, 0.05), transparent 70%);
        border-radius: 50%;
        z-index: -1;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 80px;
        align-items: center;
    }

    .hero-text {
        flex: 1;
    }

    .hero-text h1 {
        font-size: var(--text-4xl);
        line-height: 1.1;
        margin-bottom: 40px;
        color: var(--secondary-color);
        font-weight: 700;
        letter-spacing: -1.5px;
        position: relative;
        text-shadow: 0 2px 10px rgba(15, 25, 35, 0.05);
        animation: fadeIn 1s ease-out forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-text h1 span {
        display: block;
        font-weight: 500;
        font-size: 0.6em;
        margin-bottom: 0.5em;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .hero-text h1::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border-radius: 2px;
    }

    .stats-list {
        margin-bottom: 30px;
        padding-left: 5px;
    }

    .stats-list {
        margin-top: 30px;
    }

    .stats-list li {
        margin-bottom: 18px;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        padding: 12px 18px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(15, 25, 35, 0.05);
        border-left: 3px solid var(--primary-color);
        transition: var(--transition);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        animation: fadeInRight 0.8s ease-out forwards;
        opacity: 0;
    }

    .stats-list li:nth-child(1) {
        animation-delay: 0.2s;
    }

    .stats-list li:nth-child(2) {
        animation-delay: 0.4s;
    }

    .stats-list li:nth-child(3) {
        animation-delay: 0.6s;
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .stats-list li:hover {
        transform: translateX(5px);
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 6px 20px rgba(15, 25, 35, 0.05);
    }

    .stats-list li::before {
        content: '';
        min-width: 8px;
        height: 8px;
        background-color: var(--primary-color);
        border-radius: 50%;
        margin-right: 15px;
    }

    .highlight {
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        padding: 0 2px;
    }

    .hero-image {
        flex: 1;
        position: relative;
        border-radius: 16px 16px 16px 16px;
        box-shadow: 0 30px 70px rgba(15, 25, 35, 0.15);
        transform: perspective(1000px) rotateY(-5deg);
        animation: floatIn 1.2s ease-out forwards;
    }

    @keyframes floatIn {
        from {
            opacity: 0;
            transform: perspective(1000px) rotateY(-15deg) translateX(50px);
        }
        to {
            opacity: 1;
            transform: perspective(1000px) rotateY(-5deg) translateX(0);
        }
    }

    .hero-image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(56, 178, 73, 0.1), rgba(52, 73, 85, 0.1));
        z-index: 1;
        opacity: 0;
        transition: var(--transition);
    }

    .hero-image:hover::before {
        opacity: 1;
    }

    .hero-image img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 18px 18px 18px 18px !important;
        transition: none;
    }

    .hero-image:hover img {
        transform: none;
    }

    .credentials {
        background-color: var(--primary-dark);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 18px 25px;
        border-radius: 18px 18px 18px 18px;
        box-shadow: var(--premium-shadow);
        position: absolute;
        margin-top: 0;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        color: var(--bg-white);
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        bottom: -25px;
        right: -15px;
        z-index: 2;
        border-left: 4px solid var(--primary-color);
        color: var(--bg-white);
        max-width: 280px;
        width: calc(100% - 30px);
    }

    .credentials-stars {
        display: flex;
        align-items: center;
        margin-bottom: 4px;
        gap: 4px;
    }

    .credentials-stars .star {
        color: #FFD700;
        font-size: 1.2rem;
        margin-right: 2px;
    }

    .credentials-stars .star-rating-label {
        color: #fff;
        font-size: 1rem;
        font-weight: 500;
        margin-left: 10px;
        opacity: 0.85;
    }

    .credentials p {
        margin-bottom: 10px;
        font-weight: 600;
        display: flex;
        align-items: center;
        color: var(--bg-white);
        font-size: 0.95rem;
        line-height: 1.4;
        white-space: normal;
        word-break: normal;
    }

    .credentials p::before {
        content: '';
        min-width: 18px;
        height: 18px;
        background-color: var(--primary-color);
        margin-right: 12px;
        border-radius: 50%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 10px;
    }

    .cta-button {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        padding: 16px 36px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.05rem;
        letter-spacing: 0.5px;
        transition: var(--transition);
        box-shadow: 0 10px 25px rgba(56, 178, 73, 0.3);
        position: relative;
        overflow: hidden;
        z-index: 1;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        z-index: -1;
        opacity: 0;
        transition: var(--transition);
    }

    .cta-button::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
        opacity: 0;
        transform: scale(0.5);
        transition: transform 0.5s ease, opacity 0.5s ease;
        z-index: -1;
    }

    .cta-button:hover {
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(56, 178, 73, 0.4);
    }

    .cta-button:hover::before {
        opacity: 1;
    }

    .cta-button:hover::after {
        opacity: 0.5;
        transform: scale(1);
    }

    .trust-bar {
        margin-top: 40px;
        text-align: center;
        padding: 20px 0;
        position: relative;
        background-color: rgba(249, 250, 251, 0.7);
        border-radius: 20px;
        box-shadow: var(--glass-shadow);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: var(--glass-border);
    }

    .trust-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    }

    .trust-bar::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(56, 178, 73, 0.3), transparent);
    }

    .trust-bar h3 {
        margin-bottom: 40px;
        color: var(--secondary-color);
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: inline-block;
        padding: 0 15px;
        position: relative;
    }

    .trust-bar h3::before,
    .trust-bar h3::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 30px;
        height: 1px;
        background: var(--primary-color);
    }

    .trust-bar h3::before {
        left: -20px;
    }

    .trust-bar h3::after {
        right: -20px;
    }

    .trust-bar .trust-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 60px;
    }

    .trust-logo {
        transition: var(--transition);
        filter: grayscale(100%) opacity(0.7);
        position: relative;
        padding: 10px;
    }

    .trust-logo::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(56, 178, 73, 0.05), rgba(52, 73, 85, 0.05));
        opacity: 0;
        transition: var(--transition);
    }

    .trust-logo:hover {
        filter: grayscale(0%) opacity(1);
        transform: translateY(-5px);
    }

    .trust-logo:hover::before {
        opacity: 1;
    }

    .trust-logo img {
        max-height: 60px;
        max-width: 180px;
        object-fit: contain;
        position: relative;
        z-index: 1;
    }

    /* Problem/Solution Section */
    .problem-solution-container {
        margin: 60px 0;
        position: relative;
        padding: 40px 0;
        background-image:
            radial-gradient(circle at 10% 20%, rgba(56, 178, 73, 0.05) 0%, transparent 20%),
            radial-gradient(circle at 90% 80%, rgba(56, 178, 73, 0.03) 0%, transparent 20%);
        border-radius: 30px;
    }

    .problem-solution-container::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(56, 178, 73, 0.1), transparent);
        z-index: 0;
    }

    .problem-solution-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        position: relative;
        z-index: 1;
    }

    .problem-card, .solution-card {
        background-color: var(--bg-white);
        border-radius: 20px;
        box-shadow: var(--premium-shadow);
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .problem-card {
        border-top: 5px solid #e74c3c;
        transform: perspective(1000px) rotateY(5deg);
        animation: fadeInLeft 0.8s ease-out forwards;
        opacity: 0;
    }

    .solution-card {
        border-top: 5px solid var(--primary-color);
        transform: perspective(1000px) rotateY(-5deg);
        animation: fadeInRight 0.8s ease-out forwards;
        animation-delay: 0.2s;
        opacity: 0;
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: perspective(1000px) rotateY(5deg) translateX(-30px);
        }
        to {
            opacity: 1;
            transform: perspective(1000px) rotateY(5deg) translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: perspective(1000px) rotateY(-5deg) translateX(30px);
        }
        to {
            opacity: 1;
            transform: perspective(1000px) rotateY(-5deg) translateX(0);
        }
    }

    .problem-card:hover, .solution-card:hover {
        transform: perspective(1000px) rotateY(0) translateY(-10px);
        box-shadow: 0 30px 60px rgba(15, 25, 35, 0.1);
    }

    .card-header {
        /* padding: 25px 30px; */
        padding: 0px;
        display: flex;
        align-items: center;
        gap: 15px;
        border-bottom: 1px solid rgba(15, 25, 35, 0.05);
        /* background-color: rgba(249, 250, 251, 0.5); */
    }

    .card-header h3 {
        margin: 0;
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    .problem-card .card-header h3 {
        color: #e74c3c;
    }

    .solution-card .card-header h3 {
        color: var(--primary-color);
    }

    .card-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

    .problem-icon {
        background-color: rgba(231, 76, 60, 0.1);
        color: #e74c3c;
    }

    .solution-icon {
        background-color: rgba(56, 178, 73, 0.1);
        color: var(--primary-color);
    }

    .card-content {
        padding: 30px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Problem Items */
    .problem-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        border-radius: 12px;
        background-color: rgba(249, 250, 251, 0.7);
        transition: all 0.3s ease;
        border-left: 3px solid #e74c3c;
        animation: fadeIn 0.5s ease-out forwards;
        opacity: 0;
    }

    .problem-item:nth-child(1) {
        animation-delay: 0.4s;
    }

    .problem-item:nth-child(2) {
        animation-delay: 0.5s;
    }

    .problem-item:nth-child(3) {
        animation-delay: 0.6s;
    }

    .problem-item:nth-child(4) {
        animation-delay: 0.7s;
    }

    .problem-item:nth-child(5) {
        animation-delay: 0.8s;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .problem-item:hover {
        transform: translateX(5px);
        background-color: rgba(249, 250, 251, 0.9);
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.1);
    }

    .problem-icon-small {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background-color: rgba(231, 76, 60, 0.1);
        color: #e74c3c;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .problem-item p {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--secondary-color);
        font-style: italic;
    }

    /* Solution Items */
    .solution-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        border-radius: 12px;
        background-color: rgba(249, 250, 251, 0.7);
        transition: all 0.3s ease;
        border-left: 3px solid var(--primary-color);
        animation: fadeIn 0.5s ease-out forwards;
        opacity: 0;
    }

    .solution-item:nth-child(1) {
        animation-delay: 0.6s;
    }

    .solution-item:nth-child(2) {
        animation-delay: 0.7s;
    }

    .solution-item:nth-child(3) {
        animation-delay: 0.8s;
    }

    .solution-item:nth-child(4) {
        animation-delay: 0.9s;
    }

    .solution-item:nth-child(5) {
        animation-delay: 1s;
    }

    .solution-item:hover {
        transform: translateX(5px);
        background-color: rgba(249, 250, 251, 0.9);
        box-shadow: 0 5px 15px rgba(56, 178, 73, 0.1);
    }

    .solution-icon-small {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background-color: rgba(56, 178, 73, 0.1);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .solution-text {
        flex: 1;
    }

    .solution-text h4 {
        margin: 0 0 5px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    .solution-text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.5;
    }

    /* Enhanced CTA Button */
    .cta-center {
        text-align: center;
        margin-top: 60px;
        position: relative;
    }

    .cta-center::before {
        content: '';
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    }

    .cta-button.cta-pulse {
        padding: 18px 40px;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        position: relative;
        overflow: visible;
    }

    .cta-button.cta-pulse::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 53px;
        background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
        opacity: 0;
        z-index: -2;
        transition: opacity 0.4s ease;
    }

    .cta-button.cta-pulse {
        animation: ctaFadeIn 0.8s ease-out forwards 1.2s;
        opacity: 0;
    }

    .cta-button.cta-pulse:hover::before {
        opacity: 0.5;
        animation: pulse 1.5s infinite;
    }

    @keyframes ctaFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }
        70% {
            transform: scale(1.05);
            opacity: 0;
        }
        100% {
            transform: scale(1);
            opacity: 0;
        }
    }

    .cta-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        font-size: 0.9rem;
    }

    /* Responsive styles for Problem/Solution section */
    @media (max-width: 992px) {
        .problem-solution-cards {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .problem-card, .solution-card {
            transform: perspective(1000px) rotateY(0);
        }

        .problem-solution-container::before {
            display: none;
        }

        .card-header {
            padding: 20px 25px;
        }

        .card-content {
            padding: 25px;
        }

        .problem-item, .solution-item {
            padding: 12px;
        }

        .solution-text h4 {
            font-size: 1rem;
        }

        .solution-text p {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .cta-button.cta-pulse {
            padding: 15px 25px;
            font-size: 1rem;
        }

        .card-header h3 {
            font-size: 1.5rem;
        }

        .problem-item p {
            font-size: 1rem;
        }
    }

    /* Why Choose Us Section */
    .why-us-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .why-us-header .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 20px;
        /* Removed duplicate underline - only one should exist from global styles */
    }

    .why-us-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin: 00px 0;
        align-items: center; /* Center align both image and cards vertically */
    }

    .why-us-image-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 350px; /* Slightly taller to match cards better */
    }

    .why-us-image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3) 60%, transparent);
        padding: 20px;
    }

    .overlay-content h3 {
        color: white !important;
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        margin: 0 0 8px 0 !important;
        line-height: 1.2 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    }

    .overlay-content p {
        color: white !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    }

    .why-us-values {
        display: flex;
        flex-direction: column;
        gap: 15px; /* Increased gap to prevent text overlap */
        justify-content: center; /* Center the cards vertically */
    }

    .value-prop-item {
        background: white !important;
        border-radius: 8px !important;
        padding: 16px !important; /* Increased padding to prevent text overlap */
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        border-left: 4px solid #5CAF4F !important; /* 10% darker green */
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
        min-height: 70px !important; /* Minimum height to prevent overlap */
    }

    .value-prop-item:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    }

    .value-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
        color: white !important;
        width: 36px !important; /* Slightly larger for better proportion */
        height: 36px !important;
        border-radius: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }

    .value-icon i {
        font-size: 16px !important; /* Slightly larger icon */
    }

    .value-content h4 {
        color: #1a202c !important; /* Dark text color */
        font-size: 0.9rem !important; /* Slightly larger to prevent cramping */
        font-weight: 700 !important; /* Made bold as requested */
        margin: 0 0 6px 0 !important; /* More space between heading and description */
        line-height: 1.3 !important;
    }

    .value-content p {
        color: #666 !important;
        font-size: 0.85rem !important;
        line-height: 1.5 !important; /* Better line height for readability */
        margin: 0 !important;
    }

    /* Services Section */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-card {
        background-color: var(--bg-white);
        border-radius: 20px;
        box-shadow: var(--premium-shadow);
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        z-index: 1;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .service-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        /* background: linear-gradient(to right, var(--primary-color), var(--primary-dark)); */
        transition: var(--transition);
        z-index: 1;
    }

    .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle at bottom right, rgba(52, 73, 85, 0.05), transparent 70%);
        border-radius: 0 0 20px 0;
        opacity: 0;
        transition: var(--transition);
        z-index: 0;
    }

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--premium-shadow);
        background-color: rgba(255, 255, 255, 0.95);
    }

    .service-card:hover::before {
        height: 8px;
    }

    .service-card:hover::after {
        opacity: 1;
    }

    .service-icon {
        font-size: 2rem;
        color: var(--primary-color);
        background: linear-gradient(135deg, rgba(56, 178, 73, 0.1), rgba(42, 140, 58, 0.1));
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        position: relative;
        z-index: 2;
        box-shadow: 0 10px 30px rgba(56, 178, 73, 0.1);
    }

    .service-icon::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
    }

    .service-icon::after {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 23px;
        background: linear-gradient(135deg, rgba(56, 178, 73, 0.2), rgba(52, 73, 85, 0.2));
        opacity: 0;
        z-index: -2;
        transition: var(--transition);
    }

    .service-card:hover .service-icon {
        color: white;
        transform: scale(1.1) rotate(10deg);
        box-shadow: 0 15px 35px rgba(56, 178, 73, 0.2);
    }

    .service-card:hover .service-icon::before {
        opacity: 1;
    }

    .service-card:hover .service-icon::after {
        opacity: 1;
    }

    .service-content {
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .service-content h3 {
        margin-bottom: 15px;
        font-size: var(--text-2xl);
        font-weight: 700;
        transition: var(--transition);
        position: relative;
        display: inline-block;
        background: linear-gradient(135deg, var(--secondary-color), var(--text-light));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        background-size: 200% 100%;
        background-position: 100% 0;
    }

    .service-content h3::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(to right, var(--primary-color), var(--premium-blue));
        transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .service-card:hover .service-content h3 {
        background-position: 0 0;
    }

    .service-card:hover .service-content h3::after {
        width: 100%;
    }

    .service-content p {
        margin-bottom: 0;
        color: var(--text-light);
        font-size: var(--text-lg);
        line-height: 1.8;
        position: relative;
        padding-left: 0;
        transition: var(--transition);
    }

    .service-card:hover .service-content p {
        padding-left: 10px;
    }

    /* Website Conversion Engine Section */
    .website-intro {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
        position: relative;
    }

    .website-intro::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    }

    .website-intro-text p {
        font-size: 1.3rem;
        font-weight: 500;
        color: var(--secondary-color);
        line-height: 1.6;
    }

    .website-features-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin: 20px 0;
        align-items: center;
    }

    .website-mockup {
        position: relative;
        perspective: 1000px;
    }

    .website-mockup-browser {
        background-color: var(--bg-white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        transform: perspective(1000px) rotateY(5deg);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 1px solid rgba(15, 25, 35, 0.05);
    }

    .website-mockup-browser:hover {
        transform: perspective(1000px) rotateY(0) translateY(-10px);
        box-shadow: 0 30px 60px rgba(15, 25, 35, 0.1);
    }

    .browser-dots {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 12px 15px;
        background-color: #f1f3f5;
        border-bottom: 1px solid rgba(15, 25, 35, 0.05);
    }

    .browser-dots span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #e9ecef;
    }

    .browser-dots span:nth-child(1) {
        background-color: #ff5f57;
    }

    .browser-dots span:nth-child(2) {
        background-color: #ffbd2e;
    }

    .browser-dots span:nth-child(3) {
        background-color: #28c940;
    }

    .browser-address {
        background-color: #fff;
        padding: 8px 15px;
        border-bottom: 1px solid rgba(15, 25, 35, 0.05);
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .browser-address i {
        color: var(--primary-color);
        font-size: 0.8rem;
    }

    .browser-content {
        position: relative;
        overflow: hidden;
    }

    .browser-content img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .website-mockup-browser:hover .browser-content img {
        transform: scale(1.05);
    }

    .browser-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(56, 178, 73, 0.05), rgba(42, 140, 58, 0.05));
        opacity: 0;
        transition: opacity 0.5s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .website-mockup-browser:hover .browser-overlay {
        opacity: 1;
    }

    .conversion-points {
        position: absolute;
        inset: 0;
    }

    .conversion-point {
        position: absolute;
        transform: translate(-50%, -50%);
    }

    .point-pulse {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: var(--primary-color);
        position: relative;
        animation: pulse 2s infinite;
    }

    .point-pulse::after {
        content: '';
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        border: 2px solid var(--primary-color);
        opacity: 0.5;
        animation: pulse-ring 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(0.8);
            opacity: 0.8;
        }
        70% {
            transform: scale(1);
            opacity: 1;
        }
        100% {
            transform: scale(0.8);
            opacity: 0.8;
        }
    }

    @keyframes pulse-ring {
        0% {
            transform: scale(0.8);
            opacity: 0.5;
        }
        70% {
            transform: scale(1.2);
            opacity: 0;
        }
        100% {
            transform: scale(0.8);
            opacity: 0.5;
        }
    }

    .point-label {
        position: absolute;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--primary-dark);
        color: white;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform-origin: top center;
        transform: translateX(-50%) translateY(5px);
    }

    .conversion-point:hover .point-label {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .website-stats {
        display: flex;
        justify-content: space-between;
        margin-top: 25px;
        gap: 15px;
    }

    .stat-item {
        background-color: var(--bg-white);
        border-radius: 10px;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        box-shadow: 0 10px 25px rgba(15, 25, 35, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-bottom: 3px solid var(--primary-color);
    }

    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(15, 25, 35, 0.08);
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background-color: rgba(56, 178, 73, 0.1);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .stat-text h4 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--secondary-color);
    }

    .stat-text p {
        margin: 5px 0 0;
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .website-features {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .feature-item {
        background-color: var(--bg-white);
        border-radius: 15px;
        padding: 25px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(15, 25, 35, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 4px solid var(--primary-color);
        position: relative;
        overflow: hidden;
    }

    .feature-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(56, 178, 73, 0.05), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
    }

    .feature-item:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 40px rgba(15, 25, 35, 0.08);
    }

    .feature-item:hover::before {
        opacity: 1;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
        box-shadow: 0 8px 20px rgba(56, 178, 73, 0.2);
    }

    .feature-content {
        position: relative;
        z-index: 1;
    }

    .feature-content h3 {
        margin: 0 0 10px;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--secondary-color);
    }

    .feature-content p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.6;
    }

    /* SEO Engine Section */
    .seo-engine-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin: 60px 0;
        align-items: flex-start;
    }

    .seo-visual {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .seo-map-visual {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        background-color: var(--bg-white);
    }

    .map-container {
        position: relative;
        height: 400px;
        overflow: hidden;
    }

    .map-background {
        position: absolute;
        inset: 0;
        background-image: url('https://images.unsplash.com/photo-1569336415962-a4bd9f69c07b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80');
        background-size: cover;
        background-position: center;
        filter: grayscale(80%) brightness(1.1) contrast(0.9);
        opacity: 0.7;
        transition: all 0.5s ease;
    }

    .seo-map-visual:hover .map-background {
        filter: grayscale(50%) brightness(1.2) contrast(1);
        transform: scale(1.05);
    }

    .map-pins {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .map-pin {
        position: absolute;
        transform: translate(-50%, -50%);
    }

    .pin-main {
        top: 50%;
        left: 50%;
    }

    .pin-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 5px 15px rgba(56, 178, 73, 0.3);
        position: relative;
        z-index: 2;
        transition: transform 0.3s ease;
    }

    .pin-competitor-icon {
        width: 30px;
        height: 30px;
        background: rgba(52, 73, 85, 0.7);
        font-size: 0.9rem;
        box-shadow: 0 3px 10px rgba(52, 73, 85, 0.2);
    }

    .pin-pulse {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: rgba(56, 178, 73, 0.2);
        z-index: 1;
        animation: map-pulse 2s infinite;
    }

    @keyframes map-pulse {
        0% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 0.8;
        }
        70% {
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 0;
        }
        100% {
            transform: translate(-50%, -50%) scale(0.8);
            opacity: 0.8;
        }
    }

    .pin-label {
        position: absolute;
        top: 45px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--primary-dark);
        color: white;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .search-radius {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 2px dashed rgba(56, 178, 73, 0.5);
        z-index: 1;
        animation: radius-pulse 4s infinite;
    }

    @keyframes radius-pulse {
        0% {
            width: 150px;
            height: 150px;
            opacity: 0.7;
        }
        50% {
            width: 250px;
            height: 250px;
            opacity: 0.3;
        }
        100% {
            width: 150px;
            height: 150px;
            opacity: 0.7;
        }
    }

    .map-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
        z-index: 2;
    }

    .search-query {
        background-color: white;
        border-radius: 30px;
        padding: 10px 20px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .search-query i {
        color: var(--primary-color);
    }

    .search-query span {
        font-weight: 600;
        color: var(--secondary-color);
    }

    .seo-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .seo-stat-item {
        background-color: var(--bg-white);
        border-radius: 15px;
        padding: 25px;
        text-align: center;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-bottom: 4px solid var(--primary-color);
    }

    .seo-stat-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(15, 25, 35, 0.1);
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 800;
        color: var(--primary-color);
        line-height: 1;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stat-number span {
        font-size: 1.5rem;
        margin-left: 5px;
    }

    .seo-stat-item p {
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
    }

    .seo-strategies {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .strategy-card {
        background-color: var(--bg-white);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .strategy-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(15, 25, 35, 0.1);
    }

    .strategy-header {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        padding: 20px 25px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .strategy-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background-color: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
    }

    .strategy-header h3 {
        margin: 0;
        color: white;
        font-size: 1.3rem;
        font-weight: 600;
    }

    .strategy-content {
        padding: 25px;
    }

    .strategy-content p {
        margin: 0 0 20px;
        color: var(--text-light);
        line-height: 1.6;
    }

    .strategy-elements {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .strategy-element {
        background-color: rgba(56, 178, 73, 0.05);
        border-radius: 10px;
        padding: 12px 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .strategy-element:hover {
        background-color: rgba(56, 178, 73, 0.1);
        transform: translateX(5px);
    }

    .strategy-element i {
        color: var(--primary-color);
        font-size: 1rem;
    }

    .strategy-element span {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--secondary-color);
    }

    .gbp-preview {
        background-color: rgba(56, 178, 73, 0.05);
        border-radius: 12px;
        padding: 20px;
        border: 1px solid rgba(56, 178, 73, 0.1);
    }

    .gbp-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(15, 25, 35, 0.05);
    }

    .gbp-name {
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--secondary-color);
    }

    .gbp-rating {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .gbp-rating i {
        color: #FFCA28;
        font-size: 0.9rem;
    }

    .gbp-rating span {
        font-weight: 600;
        color: var(--secondary-color);
        margin-left: 5px;
    }

    .gbp-details {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .gbp-detail {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        padding: 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .gbp-detail:hover {
        background-color: rgba(56, 178, 73, 0.1);
        transform: translateY(-5px);
    }

    .gbp-detail i {
        color: var(--primary-color);
        font-size: 1.2rem;
    }

    .gbp-detail span {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-light);
    }

    .reviews-preview {
        background-color: rgba(56, 178, 73, 0.05);
        border-radius: 12px;
        padding: 20px;
        border: 1px solid rgba(56, 178, 73, 0.1);
    }

    .review-platforms {
        display: flex;
        justify-content: space-around;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(15, 25, 35, 0.05);
    }

    .review-platform {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .review-platform i {
        font-size: 1.5rem;
        color: var(--secondary-color);
    }

    .review-platform span {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--text-light);
    }

    .review-benefits {
        display: flex;
        justify-content: space-around;
    }

    .review-benefit {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .review-benefit i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(56, 178, 73, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 1rem;
    }

    .review-benefit span {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-light);
    }

    /* SEO Engine Section */
    .seo-intro {
        margin: 40px 0;
    }

    .seo-stats-container {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin: 0 auto;
        max-width: 900px;
    }

    .seo-stat {
        background-color: var(--bg-white);
        border-radius: 16px;
        padding: 30px;
        display: flex;
        align-items: center;
        gap: 25px;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        flex: 1;
        max-width: 450px;
        position: relative;
        overflow: hidden;
    }

    .seo-stat::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
        border-radius: 3px 0 0 3px;
    }

    .seo-stat:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(15, 25, 35, 0.1);
    }

    .seo-stat-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        flex-shrink: 0;
        box-shadow: 0 10px 20px rgba(56, 178, 73, 0.2);
    }

    .seo-stat-content {
        flex: 1;
    }

    .seo-stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--secondary-color);
        line-height: 1;
        margin-bottom: 10px;
        display: flex;
        align-items: baseline;
    }

    .seo-stat-number span {
        font-size: 1.5rem;
        margin-left: 5px;
        color: var(--primary-color);
    }

    .seo-stat-content p {
        margin: 0;
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.5;
    }

    .seo-strategies-container {
        margin: 80px 0;
        display: flex;
        flex-direction: column;
        gap: 80px;
    }

    .seo-strategy {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .seo-strategy.reverse {
        direction: rtl;
    }

    .seo-strategy.reverse .seo-strategy-content,
    .seo-strategy.reverse .seo-strategy-visual {
        direction: ltr;
    }

    .seo-strategy-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .strategy-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        box-shadow: 0 10px 20px rgba(56, 178, 73, 0.2);
    }

    .seo-strategy-content h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin: 0;
    }

    .seo-strategy-content p {
        margin: 0;
        color: var(--text-light);
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .strategy-features {
        list-style: none;
        padding: 0;
        margin: 10px 0 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .strategy-features li {
        background-color: rgba(56, 178, 73, 0.05);
        border-radius: 12px;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
    }

    .strategy-features li:hover {
        background-color: rgba(56, 178, 73, 0.1);
        transform: translateX(5px);
    }

    .strategy-features li i {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background-color: rgba(56, 178, 73, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .strategy-features li span {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--secondary-color);
    }

    .seo-strategy-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* SERP Preview Styles */
    .serp-preview {
        width: 100%;
        max-width: 500px;
        background-color: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(15, 25, 35, 0.05);
    }

    .serp-preview:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(15, 25, 35, 0.1);
    }

    .serp-header {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(15, 25, 35, 0.05);
        background-color: #f8f9fa;
    }

    .serp-url {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #0b7742;
        font-size: 0.9rem;
    }

    .serp-url i {
        font-size: 0.8rem;
    }

    .serp-title {
        padding: 15px 20px 10px;
        font-size: 1.2rem;
        font-weight: 600;
        color: #1a0dab;
        line-height: 1.4;
    }

    .serp-description {
        padding: 0 20px 15px;
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.5;
    }

    .serp-features {
        display: flex;
        gap: 15px;
        padding: 0 20px 20px;
    }

    .serp-feature {
        background-color: #f1f3f5;
        border-radius: 20px;
        padding: 6px 12px;
        font-size: 0.8rem;
        color: var(--secondary-color);
    }

    /* Map Preview Styles */
    .map-preview {
        width: 100%;
        max-width: 500px;
        background-color: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(15, 25, 35, 0.05);
    }

    .map-preview:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(15, 25, 35, 0.1);
    }

    .map-preview-header {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(15, 25, 35, 0.05);
        background-color: #f8f9fa;
    }

    .map-search {
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: white;
        border-radius: 24px;
        padding: 8px 15px;
        box-shadow: 0 2px 5px rgba(15, 25, 35, 0.05);
    }

    .map-search i {
        color: var(--primary-color);
        font-size: 0.9rem;
    }

    .map-search span {
        font-size: 0.9rem;
        color: var(--secondary-color);
        font-weight: 500;
    }

    .map-results {
        padding: 15px;
    }

    .map-result {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        border-radius: 12px;
        transition: all 0.3s ease;
        margin-bottom: 10px;
    }

    .map-result.active {
        background-color: rgba(56, 178, 73, 0.05);
    }

    .map-result:hover {
        background-color: rgba(56, 178, 73, 0.08);
    }

    .map-result-letter {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: var(--secondary-color);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .map-result.active .map-result-letter {
        background-color: var(--primary-color);
    }

    .map-result-content {
        flex: 1;
    }

    .map-result-name {
        font-weight: 600;
        color: var(--secondary-color);
        margin-bottom: 5px;
    }

    .map-result-rating {
        display: flex;
        align-items: center;
        gap: 3px;
        margin-bottom: 5px;
    }

    .map-result-rating i {
        color: #FFCA28;
        font-size: 0.8rem;
    }

    .map-result-rating span {
        font-size: 0.8rem;
        color: var(--text-light);
        margin-left: 5px;
    }

    .map-result-address {
        font-size: 0.8rem;
        color: var(--text-light);
    }

    /* Reviews Preview Styles */
    .reviews-preview {
        width: 100%;
        max-width: 500px;
        background-color: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(15, 25, 35, 0.05);
    }

    .reviews-preview:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(15, 25, 35, 0.1);
    }

    .review-platforms {
        display: flex;
        justify-content: space-around;
        padding: 15px;
        border-bottom: 1px solid rgba(15, 25, 35, 0.05);
        background-color: #f8f9fa;
    }

    .review-platform {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--text-light);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .review-platform.active {
        background-color: var(--primary-color);
        color: white;
        box-shadow: 0 5px 15px rgba(56, 178, 73, 0.2);
    }

    .review-platform:hover:not(.active) {
        background-color: rgba(15, 25, 35, 0.05);
        transform: translateY(-3px);
    }

    .review-card {
        padding: 20px;
    }

    .review-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--primary-dark);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .reviewer-info {
        flex: 1;
    }

    .reviewer-name {
        font-weight: 600;
        color: var(--secondary-color);
        font-size: 0.95rem;
    }

    .review-date {
        font-size: 0.8rem;
        color: var(--text-light);
    }

    .review-stars {
        display: flex;
        gap: 2px;
    }

    .review-stars i {
        color: #FFCA28;
        font-size: 0.9rem;
    }

    .review-content {
        background-color: rgba(15, 25, 35, 0.02);
        border-radius: 12px;
        padding: 15px;
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 15px;
        font-style: italic;
    }

    .review-response {
        background-color: rgba(56, 178, 73, 0.05);
        border-radius: 12px;
        padding: 15px;
        margin-left: 20px;
    }

    .response-header {
        font-weight: 600;
        color: var(--primary-color);
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .response-content {
        font-size: 0.85rem;
        color: var(--text-light);
        line-height: 1.5;
    }

    /* Social Presence Section */
    .social-intro {
        text-align: center;
        margin: 40px 0;
    }

    .social-tagline {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--secondary-color);
        margin: 0;
    }

    .social-strategies-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin: 60px 0;
    }

    .social-strategy-card {
        background-color: var(--bg-white);
        border-radius: 16px;
        padding: 35px;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .social-strategy-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
        border-radius: 3px 0 0 3px;
    }

    .social-strategy-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(15, 25, 35, 0.1);
    }

    .strategy-card-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        box-shadow: 0 10px 20px rgba(56, 178, 73, 0.2);
    }

    .social-strategy-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin: 0;
    }

    .social-strategy-card p {
        margin: 0;
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.6;
    }

    .platform-icons {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }

    .platform-icon {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: rgba(56, 178, 73, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .platform-icon:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-5px);
    }

    .content-preview, .audit-checklist, .seo-reinforcement {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }

    .content-item, .audit-item, .reinforcement-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 15px;
        background-color: rgba(56, 178, 73, 0.05);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .content-item:hover, .audit-item:hover, .reinforcement-item:hover {
        background-color: rgba(56, 178, 73, 0.1);
        transform: translateX(5px);
    }

    .content-icon, .reinforcement-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background-color: rgba(56, 178, 73, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 1rem;
    }

    .content-item span, .audit-item span, .reinforcement-item span {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--secondary-color);
    }

    .audit-item i {
        color: var(--primary-color);
        font-size: 1.2rem;
    }

    .social-footer {
        margin: 60px 0 20px;
    }

    .social-quote {
        max-width: 800px;
        margin: 0 auto 60px;
        text-align: center;
        position: relative;
        padding: 0 40px;
    }

    .social-quote i {
        color: var(--primary-color);
        font-size: 1.5rem;
        opacity: 0.3;
        position: absolute;
    }

    .social-quote i.fa-quote-left {
        top: 0;
        left: 0;
    }

    .social-quote i.fa-quote-right {
        bottom: 0;
        right: 0;
    }

    .social-quote p {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--secondary-color);
        line-height: 1.6;
        margin: 0;
    }

    /* AI Future-Proof Section */
    .ai-future-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin: 60px 0;
        align-items: flex-start;
    }

    .ai-visual {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .ai-devices {
        position: relative;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ai-device {
        position: absolute;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .smart-speaker {
        left: 10%;
        bottom: 20%;
        z-index: 1;
    }

    .smartphone {
        right: 10%;
        bottom: 10%;
        z-index: 2;
    }

    .laptop {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .ai-devices:hover .smart-speaker {
        transform: translateX(-20px) translateY(-10px);
    }

    .ai-devices:hover .smartphone {
        transform: translateX(20px) translateY(-10px);
    }

    .ai-devices:hover .laptop {
        transform: translateX(-50%) translateY(-10px);
    }

    /* Smart Speaker Styles */
    .smart-speaker {
        width: 100px;
        height: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .speaker-top {
        width: 80px;
        height: 10px;
        background-color: #333;
        border-radius: 5px 5px 0 0;
        position: relative;
    }

    .speaker-light {
        position: absolute;
        top: 3px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: var(--primary-color);
        box-shadow: 0 0 10px var(--primary-color);
        animation: pulse-light 2s infinite;
    }

    @keyframes pulse-light {
        0%, 100% {
            opacity: 0.5;
        }
        50% {
            opacity: 1;
        }
    }

    .speaker-body {
        width: 80px;
        height: 120px;
        background: linear-gradient(135deg, #444, #222);
        border-radius: 10px;
    }

    .speaker-base {
        width: 90px;
        height: 5px;
        background-color: #333;
        border-radius: 0 0 5px 5px;
        margin-top: 5px;
    }

    .voice-waves {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .voice-waves span {
        width: 3px;
        height: 15px;
        background-color: var(--primary-color);
        border-radius: 3px;
        animation: voice-wave 1.5s infinite;
    }

    .voice-waves span:nth-child(1) {
        animation-delay: 0s;
        height: 10px;
    }

    .voice-waves span:nth-child(2) {
        animation-delay: 0.2s;
        height: 15px;
    }

    .voice-waves span:nth-child(3) {
        animation-delay: 0.4s;
        height: 20px;
    }

    .voice-waves span:nth-child(4) {
        animation-delay: 0.6s;
        height: 12px;
    }

    @keyframes voice-wave {
        0%, 100% {
            height: 5px;
        }
        50% {
            height: 20px;
        }
    }

    /* Smartphone Styles */
    .smartphone {
        width: 70px;
        height: 140px;
        background: linear-gradient(135deg, #444, #222);
        border-radius: 12px;
        padding: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .phone-screen {
        width: 100%;
        height: 110px;
        background-color: #fff;
        border-radius: 6px;
        overflow: hidden;
        position: relative;
    }

    .voice-assistant {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .assistant-wave {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--primary-color);
        opacity: 0.2;
        animation: assistant-pulse 2s infinite;
    }

    @keyframes assistant-pulse {
        0%, 100% {
            transform: scale(0.8);
            opacity: 0.2;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.4;
        }
    }

    .assistant-text {
        margin-top: 10px;
        font-size: 0.6rem;
        text-align: center;
        color: var(--secondary-color);
        font-weight: 600;
    }

    .phone-button {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #333;
        margin: 5px auto 0;
    }

    /* Laptop Styles */
    .laptop {
        width: 200px;
        height: 140px;
        perspective: 1000px;
    }

    .laptop-screen {
        width: 200px;
        height: 120px;
        background-color: #333;
        border-radius: 8px 8px 0 0;
        padding: 8px;
        transform: perspective(1000px) rotateX(10deg);
        transform-origin: bottom;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .ai-search {
        width: 100%;
        height: 100%;
        background-color: white;
        border-radius: 4px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding: 5px;
    }

    .ai-search-bar {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 5px;
        background-color: #f5f5f5;
        border-radius: 4px;
        margin-bottom: 5px;
    }

    .ai-search-bar i {
        font-size: 0.6rem;
        color: var(--text-light);
    }

    .ai-search-bar span {
        font-size: 0.6rem;
        color: var(--secondary-color);
    }

    .ai-result {
        background-color: #f9f9f9;
        border-radius: 4px;
        padding: 5px;
        flex: 1;
    }

    .ai-result-header {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 5px;
    }

    .ai-result-header i {
        font-size: 0.6rem;
        color: var(--primary-color);
    }

    .ai-result-header span {
        font-size: 0.6rem;
        font-weight: 600;
        color: var(--secondary-color);
    }

    .ai-result-content {
        font-size: 0.6rem;
        color: var(--text-light);
        line-height: 1.4;
    }

    .laptop-base {
        width: 220px;
        height: 10px;
        background: linear-gradient(to bottom, #555, #333);
        border-radius: 0 0 8px 8px;
        margin: 0 -10px;
    }

    /* AI Stats */
    .ai-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .ai-stat {
        background-color: var(--bg-white);
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .ai-stat::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    }

    .ai-stat:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(15, 25, 35, 0.1);
    }

    .ai-stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--secondary-color);
        line-height: 1;
        margin-bottom: 10px;
        display: flex;
        align-items: baseline;
        justify-content: center;
    }

    .ai-stat-number span {
        font-size: 1.2rem;
        margin-left: 2px;
        color: var(--primary-color);
    }

    .ai-stat p {
        margin: 0;
        color: var(--text-light);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Future Proof Strategies */
    .future-proof-strategies {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .strategies-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin: 0 0 10px;
    }

    .future-strategy {
        background-color: var(--bg-white);
        border-radius: 16px;
        padding: 25px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .future-strategy::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
        border-radius: 2px 0 0 2px;
    }

    .future-strategy:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 30px rgba(15, 25, 35, 0.1);
    }

    .future-strategy-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.3rem;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(56, 178, 73, 0.2);
    }

    .future-strategy-content {
        flex: 1;
    }

    .future-strategy-content h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin: 0 0 10px;
    }

    .future-strategy-content p {
        margin: 0;
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Paid Ads Section */
    .paid-ads-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin: 60px 0;
        align-items: flex-start;
    }

    .paid-ads-visual {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .ads-image {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 400px;
    }

    .ads-image:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(15, 25, 35, 0.1);
    }

    .ads-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .ads-image:hover img {
        transform: scale(1.05);
    }

    .ads-image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(15, 25, 35, 0.9), transparent);
        padding: 30px;
        color: white;
    }

    .ads-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .ads-stat {
        background-color: var(--bg-white);
        border-radius: 15px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .ads-stat:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(15, 25, 35, 0.1);
    }

    .paid-ads-strategies {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .ads-strategy {
        background-color: var(--bg-white);
        border-radius: 16px;
        padding: 25px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .ads-strategy::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
        border-radius: 2px 0 0 2px;
    }

    .ads-strategy:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 30px rgba(15, 25, 35, 0.1);
    }

    .ads-strategy-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.3rem;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(56, 178, 73, 0.2);
    }

    .ads-strategy-content {
        flex: 1;
    }

    .ads-strategy-content h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin: 0 0 10px;
    }

    .ads-strategy-content p {
        margin: 0;
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Customisation Section */
    .customisation-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin: 60px 0;
        align-items: center;
    }

    .customisation-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .custom-strategy-image {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 400px;
    }

    .custom-strategy-image:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(15, 25, 35, 0.1);
    }

    .custom-strategy-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .custom-strategy-image:hover img {
        transform: scale(1.05);
    }

    .custom-image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(15, 25, 35, 0.9), transparent);
        padding: 30px;
        color: white;
    }

    .customisation-strategies {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .custom-strategy {
        background-color: var(--bg-white);
        border-radius: 16px;
        padding: 25px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .custom-strategy::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
        border-radius: 2px 0 0 2px;
    }

    .custom-strategy:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 30px rgba(15, 25, 35, 0.1);
    }

    .custom-strategy-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.3rem;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(56, 178, 73, 0.2);
    }

    .custom-strategy-content {
        flex: 1;
    }

    .custom-strategy-content h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin: 0 0 10px;
    }

    .custom-strategy-content p {
        margin: 0;
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Content Authority Section */
    .content-authority-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin: 60px 0;
        align-items: flex-start;
    }

    .content-visual {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .content-image {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 400px;
    }

    .content-image:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(15, 25, 35, 0.1);
    }

    .content-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .content-image:hover img {
        transform: scale(1.05);
    }

    .content-image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(15, 25, 35, 0.9), transparent);
        padding: 30px;
        color: white;
    }

    .overlay-text h3 {
        font-size: 1.6rem;
        font-weight: 700;
        margin: 0 0 10px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .overlay-text p {
        font-size: 1rem;
        margin: 0;
        opacity: 0.9;
        max-width: 80%;
    }

    .content-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .content-stat {
        background-color: var(--bg-white);
        border-radius: 15px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .content-stat:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(15, 25, 35, 0.1);
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .stat-text {
        flex: 1;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--secondary-color);
        line-height: 1;
        margin-bottom: 5px;
        display: flex;
        align-items: baseline;
    }

    .stat-number span {
        font-size: 1.2rem;
        margin-left: 2px;
        color: var(--primary-color);
    }

    .stat-text p {
        margin: 0;
        color: var(--text-light);
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .content-strategies {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .content-strategy {
        background-color: var(--bg-white);
        border-radius: 16px;
        padding: 25px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        box-shadow: var(--premium-shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .content-strategy::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
        border-radius: 2px 0 0 2px;
    }

    .content-strategy:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 30px rgba(15, 25, 35, 0.1);
    }

    .content-strategy-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.3rem;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(56, 178, 73, 0.2);
    }

    .content-strategy-text {
        flex: 1;
    }

    .content-strategy-text h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin: 0 0 10px;
    }

    .content-strategy-text p {
        margin: 0;
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Process Section */
    .process-timeline {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
    }

    .process-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 20px;
        width: 3px;
        background: linear-gradient(to bottom, var(--primary-dark), var(--primary-color));
        border-radius: 1.5px;
        box-shadow: 0 5px 20px rgba(56, 178, 73, 0.1);
    }

    .process-step {
        position: relative;
        padding-left: 100px;
        margin-bottom: 80px;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

    .process-step:hover .step-number {
        transform: scale(1.15) rotate(15deg);
        box-shadow: 0 15px 35px rgba(56, 178, 73, 0.3);
    }

    .step-number {
        position: absolute;
        left: 0;
        top: 0;
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: var(--bg-white);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 800;
        z-index: 2;
        transition: var(--transition);
        box-shadow: 0 10px 25px rgba(56, 178, 73, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .step-content {
        background-color: var(--bg-white);
        padding: 40px;
        border-radius: 20px;
        box-shadow: var(--premium-shadow);
        transition: var(--transition);
        border-left: none;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .step-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-dark), var(--primary-color));
        transition: var(--transition);
    }

    .process-step:hover .step-content {
        transform: translateY(-8px) translateX(5px);
        box-shadow: var(--premium-shadow);
    }

    .process-step:hover .step-content::before {
        width: 8px;
    }

    .step-content h3 {
        margin-bottom: 15px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        font-size: 1.6rem;
        font-weight: 700;
        display: inline-block;
    }

    .step-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--text-light);
    }

    /* Compact Process Timeline Styles */
    .process-timeline {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
    }

    .process-step {
        padding-left: 70px;
        margin-bottom: 36px;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .step-content {
        padding: 18px 22px;
        border-radius: 14px;
    }

    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 0.98rem;
        margin-bottom: 0;
    }

    @media (max-width: 768px) {
        .process-step {
            padding-left: 48px;
            margin-bottom: 24px;
        }
        .step-number {
            width: 32px;
            height: 32px;
            font-size: 0.95rem;
            border-radius: 8px;
        }
        .step-content {
            padding: 12px 12px;
            border-radius: 10px;
        }
        .step-content h3 {
            font-size: 1rem;
        }
        .step-content p {
            font-size: 0.92rem;
        }
    }

    /* Testimonials Section */
    .testimonials-container {
        margin: 60px auto 40px;
        max-width: 1200px;
    }

    .testimonials-title {
        text-align: center;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 40px;
        position: relative;
    }

    .testimonials-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
        border-radius: 2px;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .testimonial-card {
        background-color: var(--bg-white);
        border-radius: 16px;
        box-shadow: var(--premium-shadow);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(15, 25, 35, 0.1);
    }

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    }

    .testimonial-content {
        padding: 30px;
    }

    .testimonial-content i {
        font-size: 1.8rem;
        color: var(--primary-color);
        opacity: 0.3;
        margin-bottom: 20px;
        display: block;
    }

    .testimonial-content p {
        font-size: 1.1rem;
        color: var(--secondary-color);
        line-height: 1.6;
        font-style: italic;
        margin-bottom: 25px;
        min-height: 80px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        border-top: 1px solid rgba(15, 25, 35, 0.05);
        padding-top: 20px;
    }

    .author-info {
        flex: 1;
    }

    .author-info h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin: 0 0 5px;
    }

    .author-info p {
        font-size: 0.9rem;
        color: var(--text-light);
        margin: 0;
        font-style: normal;
        min-height: auto;
    }

    /* Results Section */
    .results-container {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 60px;
        margin: 80px 0;
    }

    .results-laptop {
        position: relative;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        transform: perspective(1500px) rotateX(5deg);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1;
    }

    .results-laptop:hover {
        transform: perspective(1500px) rotateX(0deg);
    }

    .results-laptop img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .results-laptop:hover img {
        transform: scale(1.05);
    }

    .results-laptop-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(56, 178, 73, 0.1), rgba(42, 140, 58, 0.1));
        z-index: 2;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .results-laptop:hover .results-laptop-overlay {
        opacity: 1;
    }

    .results-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-top: -30px;
        position: relative;
        z-index: 2;
    }

    .result-card {
        background-color: var(--bg-white);
        border-radius: 16px;
        box-shadow: var(--premium-shadow);
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        z-index: 1;
        height: 100%;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .result-card[data-color="green"] {
        border-top: 5px solid #4CAF50;
    }

    .result-card[data-color="blue"] {
        border-top: 5px solid #2196F3;
    }

    .result-card[data-color="purple"] {
        border-top: 5px solid #9C27B0;
    }

    .result-card[data-color="orange"] {
        border-top: 5px solid #FF9800;
    }

    .result-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    }

    .result-card-inner {
        padding: 30px 25px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .result-number {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 5px;
        display: flex;
        align-items: baseline;
    }

    .result-number span {
        font-size: 2rem;
        margin-left: 2px;
        font-weight: 600;
    }

    .result-card[data-color="green"] .result-number {
        color: #4CAF50;
    }

    .result-card[data-color="blue"] .result-number {
        color: #2196F3;
    }

    .result-card[data-color="purple"] .result-number {
        color: #9C27B0;
    }

    .result-card[data-color="orange"] .result-number {
        color: #FF9800;
    }

    .result-divider {
        width: 40px;
        height: 3px;
        margin: 15px 0;
        border-radius: 2px;
    }

    .result-card[data-color="green"] .result-divider {
        background-color: #4CAF50;
    }

    .result-card[data-color="blue"] .result-divider {
        background-color: #2196F3;
    }

    .result-card[data-color="purple"] .result-divider {
        background-color: #9C27B0;
    }

    .result-card[data-color="orange"] .result-divider {
        background-color: #FF9800;
    }

    .result-card p {
        font-size: 1.1rem;
        line-height: 1.5;
        color: var(--text-light);
        margin-bottom: 0;
        flex-grow: 1;
    }

    .testimonial {
        max-width: 800px;
        margin: 50px auto 40px;
        text-align: center;
        padding: 40px;
        background-color: var(--bg-white);
        border-radius: 16px;
        box-shadow: var(--container-shadow);
        position: relative;
    }

    .testimonial::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(76, 175, 80, 0) 100%);
        border-radius: 16px;
        z-index: -1;
    }

    .testimonial i {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 20px;
        opacity: 0.5;
    }

    .testimonial p {
        font-size: 1.3rem;
        font-style: italic;
        margin-bottom: 0;
        line-height: 1.6;
        color: var(--secondary-color);
        font-weight: 500;
    }

    /* FAQ Section */
    .faq-container {
        max-width: 850px;
        margin: 0 auto 50px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    @media (max-width: 768px) {
        .faq-container {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    /* Override duplicate FAQ styles to match our new design */
    .faq-item {
        margin-bottom: 0 !important; /* Remove margin for grid layout */
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 15px rgba(15, 25, 35, 0.06) !important;
        transition: all 0.3s ease !important;
        border: 1px solid rgba(56, 178, 73, 0.1) !important;
        background-color: white !important;
    }

    .faq-item:hover {
        box-shadow: 0 8px 20px rgba(15, 25, 35, 0.1) !important;
        transform: translateY(-2px) !important;
    }

    .faq-question {
        background-color: white !important; /* White background when not expanded */
        padding: 18px 20px !important;
        cursor: pointer !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        transition: all 0.3s ease !important;
        border-bottom: 1px solid rgba(56, 178, 73, 0.1) !important;
    }

    .faq-item.active .faq-question {
        background-color: #F3FDF2 !important; /* Light green background when expanded */
        border-bottom: 1px solid rgba(56, 178, 73, 0.15) !important;
    }

    .faq-question h3 {
        margin-bottom: 0 !important;
        font-size: var(--text-base) !important; /* Compact size */
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        color: var(--secondary-color) !important;
        line-height: 1.3 !important;
        flex: 1 !important;
        padding-right: 15px !important;
    }

    .faq-item.active .faq-question h3 {
        color: var(--primary-color) !important;
    }

    .faq-question i {
        color: var(--primary-color) !important;
        font-size: var(--text-lg) !important;
        font-weight: 700 !important;
        transition: all 0.3s ease !important;
        min-width: 20px !important;
        text-align: center !important;
    }

    .faq-item.active .faq-question i {
        transform: rotate(45deg) !important;
    }

    .faq-answer {
        background-color: white !important; /* White background for answers */
        padding: 0 20px !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
    }

    .faq-item.active .faq-answer {
        padding: 15px 20px 20px 20px !important; /* Compact padding */
        max-height: 300px !important;
    }

    .faq-answer p {
        font-size: var(--text-sm) !important; /* Smaller text */
        line-height: 1.5 !important; /* Tighter line height */
        color: var(--text-light) !important;
        margin: 0 !important;
    }

    .faq-item.active .fa-plus {
        transform: rotate(45deg);
    }

    /* Contact Section */
    .contact-wrapper {
        display: flex;
        gap: 40px;
        align-items: stretch;
        margin-bottom: 40px;
    }

    .contact-image {
        flex: 1;
        position: relative;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .contact-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .contact-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.7) 60%, transparent);
        padding: 30px;
        color: white;
    }

    .contact-overlay h3 {
        color: white;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

    .contact-container {
        flex: 1;
    }

    .contact-form {
        background-color: var(--glass-bg);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 50px;
        border-radius: 20px;
        box-shadow: var(--premium-shadow);
        position: relative;
        z-index: 1;
        overflow: hidden;
        border: var(--glass-border);
    }

    .contact-form::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(56, 178, 73, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
        z-index: -1;
        border-radius: 50%;
    }

    .contact-form::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(56, 178, 73, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
        z-index: -1;
        border-radius: 50%;
    }

    .form-group {
        position: relative;
        margin-bottom: 30px;
    }

    .form-group label {
        position: absolute;
        top: 15px;
        left: 20px;
        color: var(--text-light);
        transition: all 0.3s ease;
        pointer-events: none;
        font-size: 16px;
        background: transparent;
        padding: 0 5px;
        z-index: 1;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        border-radius: 16px;
        transition: var(--transition);
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        background-color: rgba(255, 255, 255, 0.7);
        box-shadow: 0 5px 15px rgba(15, 25, 35, 0.03);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group input:not(:placeholder-shown),
    .form-group textarea:not(:placeholder-shown) {
        outline: none;
        border-color: var(--gold);
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
        background-color: white;
        padding-top: 24px;
        padding-bottom: 12px;
    }

    .form-group input:focus ~ label,
    .form-group textarea:focus ~ label,
    .form-group input:not(:placeholder-shown) ~ label,
    .form-group textarea:not(:placeholder-shown) ~ label {
        top: -12px;
        left: 18px;
        font-size: 12px;
        background: white;
        padding: 0 8px;
        color: var(--gold);
        font-weight: 600;
        letter-spacing: 0.5px;
        box-shadow: 0 0 10px white;
    }

    .form-group.error input,
    .form-group.error textarea {
        border-color: #f44336;
        box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.1);
    }

    .form-group.error label {
        color: #f44336;
    }

    .form-group.valid input,
    .form-group.valid textarea {
        border-color: var(--gold);
    }

    .form-group.valid label {
        color: var(--gold);
    }

    .submit-button {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: #fff;
        border: none;
        padding: 18px 36px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 1.05rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: pointer;
        transition: var(--transition);
        width: 100%;
        box-shadow: 0 8px 24px rgba(56,178,73,0.10);
    }

    .submit-button:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        color: #fff;
        box-shadow: 0 12px 32px rgba(56,178,73,0.18);
    }

    .submit-button:active {
        transform: translateY(1px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    /* Footer */
    #footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 100px 0 40px;
        position: relative;
        overflow: hidden;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    #footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--primary-color), var(--gold), var(--primary-color));
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 50px;
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
    }

    .footer-logo h2 {
        color: white;
        margin-bottom: 20px;
        font-size: 2rem;
        font-weight: 700;
    }

    .footer-logo span {
        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        position: relative;
    }

    .footer-logo span::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, var(--primary-light), var(--gold-light));
        opacity: 0.7;
    }

    .footer-logo p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .footer-links h3,
    .footer-contact h3 {
        color: white;
        margin-bottom: 25px;
        font-size: 1.3rem;
        font-weight: 600;
        position: relative;
        padding-bottom: 15px;
    }

    .footer-links h3::after,
    .footer-contact h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 1.5px;
    }

    .footer-links ul li {
        margin-bottom: 12px;
    }

    .footer-links ul li a {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
        display: inline-block;
        position: relative;
        padding-left: 15px;
    }

    .footer-links ul li a::before {
        content: '→';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-light);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .footer-links ul li a:hover {
        color: white;
        padding-left: 20px;
    }

    .footer-links ul li a:hover::before {
        opacity: 1;
    }

    .footer-contact p {
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: center;
    }

    .footer-contact i {
        margin-right: 15px;
        color: var(--primary-light);
        font-size: 1.1rem;
    }

    .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 25px;
    }

    .social-icons a {
        color: white;
        font-size: 1.2rem;
        background-color: rgba(255, 255, 255, 0.05);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-icons a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--gold));
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
    }

    .social-icons a:hover {
        color: white;
        transform: translateY(-8px) rotate(360deg);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .social-icons a:hover::before {
        opacity: 1;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .hero-text h1 {
            font-size: var(--text-5xl);
        }

        .section-title {
            font-size: var(--text-4xl);
        }

        .results-cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 992px) {
        .hero-content {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .hero-text h1 {
            font-size: var(--text-4xl);
        }

        .hero-image {
            position: relative;
            margin: 0 auto;
            max-width: 90%;
        }


        .credentials {
        background-color: var(--primary-dark);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 18px 25px;
        border-radius: 12px;
        box-shadow: var(--premium-shadow);
        position: absolute;
        bottom: -25px;
        right: -15px;
        z-index: 2;
        border-left: 4px solid var(--primary-color);
        color: var(--bg-white);
        max-width: 280px;
        width: calc(100% - 30px);
    }



    img {
        color: #fff;
        border: none;
        padding: 18px 36px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.05rem;
        letter-spacing: 1px;

    }
        .website-features-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .website-mockup {
            order: -1;
            max-width: 90%;
            margin: 0 auto;
        }

        .website-stats {
            flex-wrap: wrap;
        }

        .stat-item {
            min-width: 150px;
        }

        .seo-stats-container {
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .seo-stat {
            width: 100%;
            max-width: 100%;
        }

        .seo-strategy {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .seo-strategy.reverse {
            direction: ltr;
        }

        .strategy-features {
            grid-template-columns: 1fr;
        }

        .social-strategies-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .ai-future-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .ai-stats {
            grid-template-columns: repeat(3, 1fr);
        }

        .content-authority-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .customisation-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .paid-ads-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .why-us-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .section-title {
            font-size: var(--text-3xl);
            margin-bottom: 60px;
        }

        .contact-wrapper {
            flex-direction: column;
        }

        .contact-image {
            margin-bottom: 40px;
            max-height: 300px;
        }

        .scroll-section {
            padding: 40px 0 !important; /* Consistent spacing on tablet */
        }

        #hero {
            padding: 80px 0 40px !important; /* Consistent hero spacing on tablet */
        }

        .service-card {
            padding: 30px;
        }
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 25px;
        }

        .website-intro-text p {
            font-size: 1.1rem;
        }

        .website-mockup {
            max-width: 100%;
        }

        .feature-item {
            padding: 20px;
        }

        .feature-icon {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .feature-content h3 {
            font-size: 1.1rem;
        }

        .feature-content p {
            font-size: 0.9rem;
        }

        .seo-stat {
            padding: 20px;
        }

        .seo-stat-icon {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }

        .seo-stat-number {
            font-size: 2.2rem;
        }

        .seo-strategy-content h3 {
            font-size: 1.5rem;
        }

        .seo-strategy-content p {
            font-size: 1rem;
        }

        .strategy-icon {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }

        .strategy-features li {
            padding: 12px;
        }

        .strategy-features li i {
            width: 32px;
            height: 32px;
            font-size: 0.9rem;
        }

        .strategy-features li span {
            font-size: 0.9rem;
        }

        .ai-devices {
            height: 380px;
        }

        .ai-stats {
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .ai-stat {
            padding: 15px;
        }

        .ai-stat-number {
            font-size: 1.8rem;
        }

        .ai-stat p {
            font-size: 0.85rem;
        }

        .future-strategy {
            padding: 20px;
            gap: 15px;
        }

        .future-strategy-icon {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .future-strategy-content h4 {
            font-size: 1.1rem;
        }

        .future-strategy-content p {
            font-size: 0.9rem;
        }

        .content-image {
            height: 350px;
        }

        .overlay-text h3 {
            font-size: 1.4rem;
        }

        .content-stat {
            padding: 15px;
        }

        .content-strategy {
            padding: 20px;
            gap: 15px;
        }

        .content-strategy-icon {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .content-strategy-text h4 {
            font-size: 1.1rem;
        }

        .content-strategy-text p {
            font-size: 0.9rem;
        }

        .content-stat {
            padding: 15px;
        }

        .stat-icon {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }

        .stat-number {
            font-size: 1.8rem;
        }

        .content-strategy {
            padding: 20px;
            gap: 15px;
        }

        .content-strategy-icon {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .content-strategy-text h4 {
            font-size: 1.1rem;
        }

        .content-strategy-text p {
            font-size: 0.9rem;
        }

        .custom-strategy-image {
            height: 350px;
        }

        .custom-strategy {
            padding: 20px;
            gap: 15px;
        }

        .custom-strategy-icon {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .custom-strategy-content h4 {
            font-size: 1.1rem;
        }

        .custom-strategy-content p {
            font-size: 0.9rem;
        }

        .ads-image {
            height: 350px;
        }

        .ads-stat {
            padding: 15px;
        }

        .ads-strategy {
            padding: 20px;
            gap: 15px;
        }

        .ads-strategy-icon {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .ads-strategy-content h4 {
            font-size: 1.1rem;
        }

        .ads-strategy-content p {
            font-size: 0.9rem;
        }

        .why-us-container {
            align-items: flex-start; /* Reset alignment on mobile */
        }

        .why-us-values {
            height: auto; /* Remove fixed height on mobile */
        }

        .why-us-image-card {
            height: 280px;
        }

        .overlay-content h3 {
            font-size: 1.4rem !important;
        }

        .overlay-content p {
            font-size: 0.9rem !important;
        }

        .value-prop-item {
            padding: 12px !important;
            gap: 8px !important;
            min-height: 60px !important;
        }

        .value-icon {
            width: 28px !important;
            height: 28px !important;
            height: 45px;
            font-size: 1.2rem;
        }

        .value-content h4 {
            font-size: 1.1rem;
        }

        .value-content p {
            font-size: 0.9rem;
        }

        .testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .testimonial-content p {
            font-size: 1rem;
            min-height: 100px;
        }

        .testimonial-content i {
            font-size: 1.6rem;
        }

        .nav-links {
            position: fixed;
            left: -100%;
            top: 70px;
            flex-direction: column;
            background-color: var(--bg-white);
            width: 100%;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
            padding: 20px 0;
            z-index: 1000;
        }

        .nav-links.active {
            left: 0;
        }

        .nav-links li {
            margin: 15px 0;
        }

        .hamburger {
            display: block;
        }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .two-column {
            flex-direction: column;
            gap: 30px;
        }

        .scroll-section {
            padding: 40px 0 !important; /* Consistent spacing on mobile */
        }

        #hero {
            padding: 80px 0 40px !important; /* Consistent hero spacing on mobile */
            padding-bottom: 80px;
        }

        .hero-text h1 {
            font-size: var(--text-3xl);
        }

        .section-title {
            font-size: var(--text-2xl);
            margin-bottom: 40px;
        }

        .section-subtitle {
            font-size: var(--text-lg);
        }

        .results-container {
            gap: 40px;
            margin: 40px 0;
        }

        .results-laptop {
            transform: none;
        }

        .results-cards {
            margin-top: 0;
        }

        .services-grid {
            gap: 25px;
        }

        .service-card {
            padding: 25px;
        }

        .process-step {
            padding-left: 70px;
            margin-bottom: 50px;
        }

        .step-number {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }

        .contact-form {
            padding: 25px;
        }

        .footer-content {
            gap: 30px;
        }
    }

    @media (max-width: 480px) {
        .hero-text h1 {
            font-size: var(--text-2xl);
        }

        .website-stats {
            flex-direction: column;
        }

        .stat-item {
            width: 100%;
        }

        .feature-item {
            padding: 15px;
            gap: 15px;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }

        .browser-dots {
            padding: 8px 12px;
        }

        .browser-address {
            padding: 6px 12px;
            font-size: 0.8rem;
        }

        .conversion-point .point-label {
            display: none;
        }

        .seo-stat {
            padding: 15px;
            gap: 15px;
        }

        .seo-stat-icon {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }

        .seo-stat-number {
            font-size: 1.8rem;
        }

        .seo-stat-content p {
            font-size: 0.9rem;
        }

        .seo-strategies-container {
            gap: 50px;
        }

        .seo-strategy {
            gap: 30px;
        }

        .strategy-icon {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .seo-strategy-content h3 {
            font-size: 1.3rem;
        }

        .seo-strategy-content p {
            font-size: 0.9rem;
        }

        .strategy-features li {
            padding: 10px;
            gap: 10px;
        }

        .strategy-features li i {
            width: 28px;
            height: 28px;
            font-size: 0.8rem;
        }

        .strategy-features li span {
            font-size: 0.85rem;
        }

        .serp-title, .map-result-name, .reviewer-name {
            font-size: 0.9rem;
        }

        .serp-description, .review-content, .response-content {
            font-size: 0.8rem;
        }

        .hero-text h1 span {
            font-size: 0.8em;
        }

        .hero-image {
            max-width: 100%;
        }

        .credentials {
            padding: 15px 20px;
            bottom: -15px;
            right: 0;
            max-width: 240px;
            width: 90%;
        }

        .credentials p {
            font-size: 0.85rem;
            margin-bottom: 8px;
        }

        .credentials p::before {
            width: 16px;
            height: 16px;
            margin-right: 10px;
            background-size: 8px;
        }

        .cta-button {
            width: 100%;
            text-align: center;
        }

        .results-cards {
            grid-template-columns: 1fr;
        }

        .result-card {
            max-width: 320px;
            margin: 0 auto;
        }

        .service-icon {
            width: 60px;
            height: 60px;
        }

        .process-timeline::before {
            left: 25px;
        }

        .process-step {
            padding-left: 60px;
        }

        .step-number {
            width: 50px;
            height: 50px;
            font-size: 1.4rem;
        }

        .step-content {
            padding: 20px;
        }

        .social-tagline {
            font-size: 1rem;
        }

        .social-strategy-card {
            padding: 20px;
            gap: 15px;
        }

        .strategy-card-icon {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }

        .social-strategy-card h3 {
            font-size: 1.2rem;
        }

        .social-strategy-card p {
            font-size: 0.9rem;
        }

        .platform-icons {
            flex-wrap: wrap;
        }

        .platform-icon {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }

        .content-item, .audit-item, .reinforcement-item {
            padding: 8px 10px;
            gap: 10px;
        }

        .content-icon, .reinforcement-icon {
            width: 28px;
            height: 28px;
            font-size: 0.8rem;
        }

        .content-item span, .audit-item span, .reinforcement-item span {
            font-size: 0.85rem;
        }

        .social-quote {
            padding: 0 20px;
        }

        .social-quote p {
            font-size: 1.1rem;
        }

        .social-quote i {
            font-size: 1.2rem;
        }

        .ai-stats {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .ai-devices {
            height: 350px;
        }

        .strategies-title {
            font-size: 1.3rem;
        }

        .future-strategy {
            padding: 20px;
        }

        .future-strategy-icon {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .future-strategy-content h4 {
            font-size: 1.1rem;
        }

        .future-strategy-content p {
            font-size: 0.9rem;
        }

        .content-image {
            height: 280px;
        }

        .overlay-text h3 {
            font-size: 1.2rem;
        }

        .overlay-text p {
            font-size: 0.9rem;
            max-width: 100%;
        }

        .content-stats {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .content-strategy {
            padding: 15px;
            gap: 12px;
        }

        .content-strategy-icon {
            width: 40px;
            height: 40px;
            font-size: 1.1rem;
        }

        .content-strategy-text h4 {
            font-size: 1.1rem;
        }

        .content-strategy-text p {
            font-size: 0.85rem;
        }

        .custom-strategy-image {
            height: 280px;
        }

        .overlay-text h3 {
            font-size: 1.2rem;
        }

        .overlay-text p {
            font-size: 0.9rem;
            max-width: 100%;
        }

        .custom-strategy {
            padding: 15px;
            gap: 12px;
        }

        .custom-strategy-icon {
            width: 40px;
            height: 40px;
            font-size: 1.1rem;
        }

        .custom-strategy-content h4 {
            font-size: 1.1rem;
        }

        .custom-strategy-content p {
            font-size: 0.85rem;
        }

        .ads-image {
            height: 280px;
        }

        .overlay-text h3 {
            font-size: 1.2rem;
        }

        .overlay-text p {
            font-size: 0.9rem;
            max-width: 100%;
        }

        .ads-stats {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .ads-strategy {
            padding: 15px;
            gap: 12px;
        }

        .ads-strategy-icon {
            width: 40px;
            height: 40px;
            font-size: 1.1rem;
        }

        .ads-strategy-content h4 {
            font-size: 1.1rem;
        }

        .ads-strategy-content p {
            font-size: 0.85rem;
        }

        .why-us-image-card {
            height: 220px;
        }

        .overlay-content h3 {
            font-size: 1.1rem;
        }

        .overlay-content p {
            font-size: 0.8rem;
            max-width: 100%;
        }

        .value-prop-item {
            padding: 10px;
            gap: 6px;
        }

        .value-icon {
            width: 24px;
            height: 24px;
        }

        .value-icon i {
            font-size: 12px;
        }

        .value-content h4 {
            font-size: 0.75rem; /* 20% smaller and bold */
            font-weight: 700;
        }

        .value-content p {
            font-size: 0.8rem;
            gap: 12px;
        }

        .value-icon {
            width: 40px;
            height: 40px;
            font-size: 1.1rem;
        }

        .value-content h4 {
            font-size: 1.1rem;
        }

        .value-content p {
            font-size: 0.85rem;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .testimonial-content p {
            font-size: 0.95rem;
            min-height: auto;
        }

        .testimonial-content i {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .testimonials-title {
            font-size: 1.5rem;
        }
    }

    .trust-bar-title {
        color: var(--primary-color) !important;
    }

    /* Custom Growth Stack Interactive Styles */
    .services-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 24px;
    }

    .service-card.selectable {

    cursor: pointer;
    position: relative;
    border: 1px solid #eee !important;
    transition: box-shadow 0.2s, border-color 0.2s;
    outline: none;
    user-select: none;
    padding: 8px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    border-radius: 8px;
    }

    .service-card.selectable .service-icon {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    flex-shrink: 0;
    font-size: 0;
    margin-right: 8px;
    order: -1; /* Force icon to the start */
    }

    .service-card.selectable input[type="checkbox"]:checked + .service-icon {
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    }

    .service-card.selectable:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(56, 178, 73, 0.1);
    }

    .service-card.selectable input[type="checkbox"]:checked ~ .service-content,
    .service-card.selectable.selected {
    border-color: var(--primary-color);
    background: rgba(56, 178, 73, 0.04);
    }

    .service-content {
    flex: 1;
    min-width: 0;
    }

    .service-content h3 {
    font-size: 0.875rem;
    margin: 0 0 2px 0;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }

    .service-content p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }

    .service-checkmark {
    display: none;
    }

    .custom-stack-summary {
    background: rgba(56, 178, 73, 0.05);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(56, 178, 73, 0.04);
    min-height: 40px;
    }

    .custom-stack-summary h4 {
    margin: 0 0 8px 0;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    }

    #selected-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    }

    #selected-services-list li {
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    }

    @media (max-width: 768px) {
    .services-select-grid {
        grid-template-columns: 1fr;
    }
    }

    /* Tabbed Journey Styles */
    .tabbed-journey {
    width: 100%;
    }

    .tabbed-journey-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    /* min-height: 700px; */
    }

    .tab-list {
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 40px 0 40px 0;
    border-right: 1px solid #f0f0f0;
    min-width: 220px;
    align-items: stretch;
    }

    .tab {
    display: flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 18px 32px 18px 36px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    position: relative;
    text-align: left;
    }

    .tab i {
    font-size: 1.2rem;
    color: var(--primary-color);
    min-width: 22px;
    text-align: center;
    }

    .tab.active,
    .tab[aria-selected="true"] {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: 2px 0 12px rgba(56,178,73,0.04);
    font-weight: 700;
    }

    .tab.active::before,
    .tab[aria-selected="true"]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 5px;
    border-radius: 4px;
    background: var(--primary-color);
    }

    .tab:focus {
    outline: 2px solid var(--primary-color);
    z-index: 2;
    }

    .tab:hover:not(.active):not([aria-selected="true"]) {
    background: rgba(56,178,73,0.07);
    color: var(--primary-dark);
    }

    .tab-panel {
    padding: 28px;
    max-width: 950px;
    margin: 0 auto;
    min-height: unset;
    background: var(--bg-white);
    box-shadow: 0 4px 24px rgba(56,178,73,0.04);
    border-radius: 24px;
    }

    .tab-panel .section-title {
    font-size: 1.4rem;
    margin-bottom: 18px;
    text-align: left;
    padding-bottom: 0;
    }

    .tab-panel .section-title::before,
    .tab-panel .section-title::after {
    display: none;
    }

    .tab-panel .section-subtitle {
        margin: 0 auto 0px auto;
    font-size: 1.0rem;
    color: #6b7280;
    text-align: left;
    }

    .website-features-container {
    gap: 32px !important;
    align-items: center !important;
    }

    .feature-item {
    min-height: 120px;
    padding: 18px 20px;
    box-shadow: 0 4px 16px rgba(56,178,73,0.06);
    border-radius: 16px;
    }

    .website-mockup, .content-image, .custom-strategy-image, .ads-image {
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(56,178,73,0.06) !important;
    }

    @media (max-width: 1024px) {
    .tab-panel {
        padding: 16px 0 16px 0;
    }
    .website-features-container {
        gap: 18px !important;
        flex-direction: column !important;
    }
    }

    @keyframes fadeInTab {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
    }

    .tab-panel[hidden] {
    display: none;
    }

    @media (max-width: 1024px) {
    .tabbed-journey-grid {
        grid-template-columns: 1fr;
    }
    .tab-list {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 0 0 0 0;
        gap: 0;
        overflow-x: auto;
        min-width: 0;
        background: var(--bg-light);
    }
    .tab {
        border-radius: 0 0 0 0;
        padding: 16px 18px;
        font-size: 1rem;
        min-width: 120px;
        justify-content: center;
        border-bottom: 2px solid transparent;
    }
    .tab.active,
    .tab[aria-selected="true"] {
        border-bottom: 2.5px solid var(--primary-color);
        border-radius: 0;
        background: var(--bg-white);
        color: var(--primary-color);
        box-shadow: none;
    }
    .tab.active::before,
    .tab[aria-selected="true"]::before {
        display: none;
    }
    .tab-panel {
        padding: 32px 10px 32px 10px;
        min-height: 400px;
    }
    }

    @media (max-width: 600px) {
        .tabbed-journey-grid{
        grid-template-columns: 1fr !important;
        }
        .tab-list {
        display: none !important;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 0 0 0 0;
        gap: 0;
        overflow-x: auto;
        min-width: 0;
        background: var(--bg-light);
    }
    .tabbed-journey {
        border-radius: 0;
        box-shadow: none;
        margin: 0 0 40px 0;
    }
    .tab-panel {
        padding: 18px 2px 18px 2px;
    }
    }

    .website-image-with-stats {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 0 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(56,178,73,0.08);
    background: var(--bg-white);
    }

    .website-main-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px 18px 0 0;
    }

    .website-stats-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 0 12px 12px 12px;
    z-index: 2;
    }

    .website-stats-overlay .stat-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(56,178,73,0.08);
    padding: 10px 12px;
    min-width: 90px;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    }

    .website-stats-overlay .stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    }

    .website-stats-overlay .stat-text h4 {
    font-size: 1.05rem;
    margin: 0 0 2px 0;
    font-weight: 700;
    color: var(--primary-color);
    }

    .website-stats-overlay .stat-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    }

    @media (max-width: 600px) {
    .website-image-with-stats {
        max-width: 100%;
        border-radius: 12px;
    }
    .website-main-image {
        border-radius: 12px 12px 0 0;
    }
    .website-stats-overlay {
        flex-direction: column;
        gap: 6px;
        padding: 0 6px 6px 6px;
        position: static;
        background: none;
    }
    .website-stats-overlay .stat-item {
        min-width: 0;
        padding: 8px 8px;
        font-size: 0.95rem;
    }
    }

    .tab-panel .website-features {
    gap: 12px !important;
    }

    .tab-panel .feature-item {
    min-height: 60px;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(56,178,73,0.04);
    }

    .tab-panel .feature-icon {
    width: 26px;
    height: 26px;
    font-size: 1rem;
    border-radius: 6px;
    margin-right: 8px;
    }

    .tab-panel .feature-content h3 {
    font-size: 0.98rem;
    margin-bottom: 2px;
    font-weight: 700;
    line-height: 1.2;
    }

    .tab-panel .feature-content p {
    font-size: 0.89rem;
    line-height: 1.5;
    margin-bottom: 0;
    }

    .tab-panel .cta-center {
        text-align: center;
        margin-top: 20px;
        position: relative;
    }

    .tab-panel .cta-center::before {
        display: none !important;
        content: none !important;
    }

    .contact-form input,
    .contact-form textarea {
    border: 1.5px solid var(--primary-color);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 2px rgba(56,178,73,0.10);
    background: #fff;
    }
    .contact-form .form-group {
    margin-bottom: 16px;
    }

    /* SPACING REDUCTION FIXES - Reduce gaps between specific sections */

    /* 1. Between PROVEN RESULTS and Why Choose Us */
    #why-us {
        padding-top: 0px !important; /* Reduced from default */
        margin-top: -64px !important; /* Further reduce space */
    }

    /* 2. Between Why Choose Us and Trusted by Leading Brands */
    #trusted-brands {
        padding-top: 20px !important; /* Further reduced from 40px */
        margin-top: -10px !important; /* Additional space reduction */
    }

    /* 3. Between Trusted by Leading Brands and Who Is This Service Best Suited For */
    #suited-for {
        padding-top: 20px !important; /* Further reduced from 40px */
        margin-top: -10px !important; /* Additional space reduction */
    }

    /* 4. In "Who Is This Service Best Suited For" - Between heading and subheading */
    #suited-for .section-header .section-subtitle {
        margin-top: 5px !important; /* Reduced from 8px */
    }

    /* 5. In "Partner Stories and Performance Wins" - Between heading and subheading */
    #success-proof .section-header .section-subtitle {
        margin-top: 5px !important; /* Reduced from 8px */
    }

    /* 6. Between Partner Stories and GROW Framework */
    #grow-framework {
        padding-top: 40px !important; /* Reduced from default */
    }

    /* 7. In "GROW Framework" - Between heading and subheading */
    #grow-framework .section-header .section-subtitle {
        margin-top: 5px !important; /* Reduced from 8px */
    }

    /* 8. Between Ecommerce SEO Services and Discover Our Growth Methodology */
    #process {
        padding-top: 40px !important; /* Reduced from default */
    }

    /* 9. In "Discover Our Growth Methodology" - Between heading and subheading */
    #process .section-header .section-subtitle {
        margin-top: 5px !important; /* Reduced from 8px */
    }

    /* 10. Between Discover Our Growth Methodology and Tool Stack */
    #tools {
        padding-top: 40px !important; /* Reduced from default */
    }

    /* 11. In "Tool Stack" - Between heading and subheading */
    #tools .section-header .section-subtitle {
        margin-top: 5px !important; /* Reduced from 8px */
    }

    /* STANDARDIZED SECTION SPACING - Apply uniform 40px spacing across all sections */
    .scroll-section {
        padding: 40px 0 !important; /* Standardized spacing for all sections */
    }

    /* Hero section gets more top padding for visual hierarchy */
    #hero {
        padding: 80px 0 40px !important; /* More top padding for hero, standard bottom */
    }

    /* Additional spacing reductions for better flow */
    .section-header {
        margin-bottom: 15px !important; /* Consistent header spacing */
    }

    /* Reduce section title bottom margin globally */
    .section-title {
        margin-bottom: 15px !important; /* Consistent title spacing */
    }

    /* Reduce section subtitle margin */
    .section-subtitle {
        margin: 0px auto 25px !important; /* Consistent subtitle spacing */
    }

    /* STICKY NAVIGATION STYLES */
    .sticky-navigation {
        position: sticky;
        top: 80px; /* Below the main navbar */
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(56, 178, 73, 0.1);
        box-shadow: 0 2px 20px rgba(15, 25, 35, 0.08);
        z-index: 100;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .sticky-nav-content {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 0;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .sticky-nav-content::-webkit-scrollbar {
        display: none;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 16px 20px;
        text-decoration: none;
        color: var(--text-color);
        font-size: 13px;
        font-weight: 500;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        min-width: 90px;
        white-space: nowrap;
    }

    .nav-item i {
        font-size: 18px;
        margin-bottom: 4px;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .nav-item:hover {
        color: var(--primary-color);
        background: rgba(56, 178, 73, 0.05);
        border-bottom-color: var(--primary-color);
    }

    .nav-item:hover i {
        transform: translateY(-2px);
        color: var(--primary-color);
    }

    .nav-item.active {
        color: var(--primary-color);
        background: rgba(56, 178, 73, 0.08);
        border-bottom-color: var(--primary-color);
    }

    .nav-item.active i {
        color: var(--primary-color);
    }

    .nav-item.cta-nav {
        background: linear-gradient(135deg, var(--primary-color), #47A048);
        color: white;
        border-radius: 8px;
        margin-left: 10px;
        border-bottom: 3px solid transparent;
    }

    .nav-item.cta-nav i {
        color: white;
    }

    .nav-item.cta-nav:hover {
        background: linear-gradient(135deg, #47A048, var(--primary-color));
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(56, 178, 73, 0.3);
    }

    /* Mobile responsiveness for sticky navigation */
    @media (max-width: 768px) {
        .sticky-navigation {
            top: 70px;
        }

        .sticky-nav-content {
            justify-content: flex-start;
            padding: 0 10px;
        }

        .nav-item {
            min-width: 100px;
            padding: 12px 16px;
            font-size: 12px;
        }

        .nav-item i {
            font-size: 16px;
        }

        .nav-item.cta-nav {
            margin-left: 5px;
        }
    }

    @media (max-width: 480px) {
        .nav-item {
            min-width: 80px;
            padding: 10px 12px;
            font-size: 11px;
        }

        .nav-item i {
            font-size: 14px;
            margin-bottom: 2px;
        }
    }

.floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 2000;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff !important;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.08rem;
    box-shadow: 0 8px 32px rgba(56, 178, 73, 0.18);
    display: flex !important;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0.95;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    max-width: none;
    width: auto;
}

.floating-cta:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(56,178,73,0.22);
}

.floating-cta .cta-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
}

@media (max-width: 600px) {
  .floating-cta {
    right: 12px;
    left: 12px;
    bottom: 16px;
    width: auto;
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: 30px;
    justify-content: center;
  }
}

    /* Make selectable service cards bigger and use left border instead of top border */
    .service-card.selectable {
    padding: 24px 20px;
    min-height: 110px;
    border-top: none !important;
    border-left: 5px solid var(--primary-color) !important;
    }
    .service-card.selectable:hover {
    border-left: 8px solid var(--primary-dark) !important;
    }

    @media (max-width: 600px) {
    .service-card.selectable {
        padding: 18px 10px;
        min-height: 90px;
    }
    }

    .service-card.selectable .service-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    }
    .service-card.selectable .service-content p {
    font-size: 1rem;
    }

    /* Mobile Tabbed Journey Fixes */
@media (max-width: 768px) {
    .tabbed-journey-grid {
        grid-template-columns: 1fr !important;
    }
    .tab-list {
        display: none !important;
    }
}

/* CTA Bar Section - REMOVED - Now using floating CTA instead */
.cta-bar-section {
    background: transparent;
    padding: 60px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.cta-bar-section::before {
    display: none;
}

.cta-bar-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-bar-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cta-bar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(255,255,255,0.15) 0%, transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 40%);
    z-index: 1;
}

.cta-bar-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.cta-text-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-bar-text {
    color: white !important;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-bar-subtext {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
}

.cta-button-wrapper {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.cta-bar-button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color) !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.12),
        0 3px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-bar-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-bar-button:hover::before {
    left: 100%;
}

.cta-bar-button:hover {
    background: white !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.2),
        0 6px 15px rgba(0, 0, 0, 0.15);
    color: var(--primary-color) !important;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-bar-button:active {
    transform: translateY(-1px) scale(1.01);
    transition-duration: 0.1s;
}

.cta-bar-button i {
    font-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: inherit !important;
}

.cta-bar-button:hover i {
    transform: translateX(6px);
}

/* Mobile responsiveness for CTA bar */
@media (max-width: 968px) {
    .cta-bar-card {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        padding: 40px 32px;
    }
    
    .cta-bar-text {
        font-size: 1.8rem;
    }
    
    .cta-button-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-bar-section {
        padding: 40px 0;
    }
    
    .cta-bar-card {
        margin: 0 16px;
        padding: 36px 24px;
        border-radius: 20px;
        gap: 28px;
    }
    
    .cta-bar-text {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .cta-bar-subtext {
        font-size: 1rem;
    }
    
    .cta-bar-button {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .cta-bar-section {
        padding: 32px 0;
    }
    
    .cta-bar-card {
        margin: 0 12px;
        padding: 32px 20px;
        border-radius: 16px;
        gap: 24px;
    }
    
    .cta-bar-text {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .cta-bar-subtext {
        font-size: 0.95rem;
    }
    
    .cta-bar-button {
        font-size: 0.85rem;
        padding: 10px 20px;
        max-width: 200px;
    }
}

    /* Sticky CTA Styles */
    .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        padding: 15px 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        border-top: 3px solid rgba(255, 255, 255, 0.2);
    }

    .sticky-cta.visible {
        transform: translateY(0);
    }

    .sticky-cta-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        gap: 20px;
    }

    .sticky-cta-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .sticky-cta-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
    }

    .sticky-cta-subtitle {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 400;
    }

    .sticky-cta-button {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.15);
        color: white;
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .sticky-cta-button:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        color: white;
        text-decoration: none;
    }

    .sticky-cta-button i {
        font-size: 1rem;
    }

    .sticky-cta-close {
        position: absolute;
        top: 8px;
        right: 15px;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.2rem;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        transition: all 0.3s ease;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sticky-cta-close:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    }

    /* Mobile responsive for sticky CTA */
    @media (max-width: 768px) {
        .sticky-cta {
            padding: 12px 15px;
        }

        .sticky-cta-content {
            flex-direction: column;
            gap: 12px;
            text-align: center;
        }

        .sticky-cta-text {
            align-items: center;
        }

        .sticky-cta-title {
            font-size: 1rem;
        }

        .sticky-cta-subtitle {
            font-size: 0.85rem;
        }

        .sticky-cta-button {
            padding: 10px 20px;
            font-size: 0.9rem;
            width: 100%;
            justify-content: center;
            max-width: 280px;
        }

        .sticky-cta-close {
            top: 5px;
            right: 10px;
        }
    }

    @media (max-width: 480px) {
        .sticky-cta {
            padding: 10px 12px;
        }

        .sticky-cta-content {
            gap: 10px;
        }

        .sticky-cta-title {
            font-size: 0.95rem;
        }

        .sticky-cta-subtitle {
            font-size: 0.8rem;
        }

        .sticky-cta-button {
            padding: 8px 16px;
            font-size: 0.85rem;
        }
    }

    /* End of styles */
