.elementor-1094 .elementor-element.elementor-element-e60b793{--display:flex;}/* Start custom CSS *//* Basic Reset & Box Sizing */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Variables for easy theme adjustments */
        :root {
            --primary-color: #6A2EF3; /* AskDes.ai accent purple */
            --primary-dark: #4f1db1;
            --text-color-dark: #2c3e50;
            --text-color-light: #555;
            --bg-light: #f9f9fa;
            --bg-white: #fff;
            --border-light: #eee;
            --shadow-light: rgba(0, 0, 0, 0.05);
            --shadow-medium: rgba(0, 0, 0, 0.08);
            --shadow-strong: rgba(0, 0, 0, 0.1);
        }

        /* Body & Global Styles */
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-color-light);
            background-color: var(--bg-light);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Center content vertically if space allows */
            align-items: center; /* Center content horizontally */
            padding: 20px;
            
            /* Professional Background Image */
            background-image: url('https://images.unsplash.com/photo-1510519138101-bc6a5d3e0986?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w0NTc2MDZ8MHwxfHNlYXJjaHwxNHx8dGVjaCUyMGJhY2tncm91bmR8ZW58MHx8fHwxNzEyNzQyNDY3fDA&ixlib=rb-4.0.3&q=80&w=1920'); /* Royalty-free tech background */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative; /* Needed for pseudo-element overlay */
            overflow-y: auto; /* Allow scrolling if content is taller than viewport */
        }

        /* Background Overlay for Readability */
        body::before {
            content: '';
            position: fixed; /* Fixed so it covers the whole viewport */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.65); /* Dark overlay */
            z-index: -1; /* Place behind body content */
        }

        /* Main Content Container */
        .container {
            width: 100%;
            max-width: 1200px; /* Max width for the entire page content */
            margin: auto; /* Center the container */
            background-color: var(--bg-white);
            border-radius: 12px;
            box-shadow: 0 10px 30px var(--shadow-medium);
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px; /* Space between elements */
        }

        /* Header & Logo */
        .header {
            text-align: center;
            width: 100%;
        }

        .header img {
            max-width: 280px; /* Adjust logo size */
            height: auto;
            display: block;
            margin: 0 auto;
            transition: transform 0.3s ease;
        }
        .header img:hover {
            transform: scale(1.02);
        }

        /* Page Title/Headline */
        .page-headline {
            text-align: center;
            font-size: 2.5rem;
            color: var(--text-color-dark);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .page-subheadline {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-color-light);
            max-width: 800px;
            margin-bottom: 30px;
        }


        /* Widgets Container */
        .widgets-grid {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Two columns on desktop */
            gap: 40px;
            width: 100%;
            max-width: 1000px; /* Max width for the grid itself */
        }

        /* Individual Widget Card */
        .widget-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 20px var(--shadow-light);
        }

        .widget-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px var(--shadow-medium);
        }

        .widget-card h3 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .widget-card img {
            max-width: 100%;
            height: 220px; /* Fixed height for image consistency */
            object-fit: cover; /* Ensures image covers the area without distortion */
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px var(--shadow-light);
        }

        .widget-card p {
            font-size: 1.15rem;
            color: var(--text-color-light);
            margin-bottom: 30px;
            flex-grow: 1; /* Allows description to take up available space */
        }

        .widget-card p a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease, text-decoration 0.2s ease;
        }

        .widget-card p a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* Call-to-action Button */
        .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--bg-white);
            padding: 18px 35px;
            border-radius: 10px;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
            max-width: 350px; /* Limit button width */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        .cta-button:active {
            transform: translateY(0);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        /* Modal Styles (for video chat, still needed) */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9); /* Darker overlay for modal */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .modal-content {
            background-color: var(--bg-white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            max-width: 90%;
            width: 950px; /* Default width for content */
            max-height: 90vh; /* Max height to prevent overflow */
            position: relative;
            transform: translateY(20px); /* Animation effect */
            transition: transform 0.3s ease, opacity 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .modal-overlay.active .modal-content {
            transform: translateY(0);
            opacity: 1;
        }
        .modal-content h3 {
            margin-top: 0;
            color: var(--text-color-dark);
            font-size: 2.2rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-light);
        }
        .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 25px;
            font-size: 2.8rem;
            line-height: 1;
            font-weight: 300;
            color: #aaa;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .modal-close-btn:hover {
            color: #555;
        }

        /* Styles for the Convai widget and iframe inside the modal */
        .modal-embed-wrapper {
            flex-grow: 1; /* Allows the wrapper to fill available space */
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            position: relative; /* For the iframe padding issue */
        }
        .modal-embed-wrapper iframe {
            width: 100%;
            height: 100%; /* Fill the wrapper height */
            min-height: 450px; /* Minimum height for better visibility */
            border: none;
            border-radius: 8px;
            background-color: #f0f0f0; /* Placeholder bg for iframe loading */
            display: block;
        }


        @keyframes bounce-right-bottom {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(5px, 5px); }
        }


        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .container {
                padding: 30px;
                gap: 30px;
            }
            .page-headline {
                font-size: 2rem;
            }
            .page-subheadline {
                font-size: 1.1rem;
            }
            .widgets-grid {
                grid-template-columns: 1fr; /* Stack widgets on smaller desktops/tablets */
                gap: 30px;
                max-width: 600px;
            }
            .widget-card {
                padding: 25px;
            }
            .widget-card h3 {
                font-size: 1.7rem;
            }
            .widget-card img {
                height: 200px;
                margin-bottom: 25px;
            }
            .widget-card p {
                font-size: 1.05rem;
                margin-bottom: 25px;
            }
            .cta-button {
                font-size: 1.2rem;
                padding: 15px 30px;
            }
            .modal-content {
                width: 95%;
                padding: 25px;
            }
            .modal-content h3 {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }
            .modal-close-btn {
                font-size: 2.2rem;
                top: 10px;
                right: 15px;
            }
            .modal-embed-wrapper iframe {
                min-height: 350px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 15px;
            }
            .container {
                padding: 20px;
            }
            .header img {
                max-width: 220px;
            }
            .page-headline {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }
            .page-subheadline {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            .widget-card h3 {
                font-size: 1.5rem;
            }
            .widget-card img {
                height: 180px;
                margin-bottom: 20px;
            }
            .widget-card p {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            .cta-button {
                font-size: 1.1rem;
                padding: 12px 25px;
            }
            .modal-content {
                padding: 20px;
            }
            .modal-content h3 {
                font-size: 1.5rem;
                margin-bottom: 15px;
            }
            .modal-close-btn {
                font-size: 2rem;
                top: 5px;
                right: 10px;
            }
            .modal-embed-wrapper iframe {
                min-height: 300px;
            }
        }

        @media (max-width: 480px) {
            .header img {
                max-width: 180px;
            }
            .page-headline {
                font-size: 1.5rem;
            }
            .widget-card h3 {
                font-size: 1.3rem;
            }
            .widget-card img {
                height: 150px;
            }
            .cta-button {
                font-size: 1rem;
                padding: 10px 20px;
            }
            .modal-content {
                padding: 15px;
            }
        }
		

.hide-elevenlabs-branding {
    position: fixed; /* Keeps it in place while scrolling */
    bottom: 15px; /* Adjust this based on where you want it */
    right: 20px; /* Adjust this to align with the chat button */
    width: 250px; /* Adjust width if needed */
    height: 25px; /* Adjust height to fully cover the branding */
    background: white; /* Matches background */
    z-index: 9999; /* Ensures it stays on top */
}

.hide-elevenlabs-branding {
    position: fixed; /* Keeps it in place while scrolling */
    bottom: 13px; /* Adjust this based on where you want it */
    right: 20px; /* Adjust this to align with the chat button */
    height: 25px; /* Adjust height to fully cover the branding */
    background: white; /* Matches background */
    z-index: 9999; /* Ensures it stays on top */
}


.hide-elevenlabs-branding {
    white-space: nowrap;
}


.hide-elevenlabs-branding {
    white-space: normal !important;
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center; /* Centers text horizontally */
    display: flex;
    justify-content: center; /* Centers horizontally in flexbox */
    align-items: center; /*
}/* End custom CSS */