.container {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
}
/* Fix bottom scroll issue on mobile */
@media (max-width: 600px) {
    .container {
        margin-top: 60px !important;
        margin-bottom: 40px !important;
    }
    .bg-circle.circle4 {
        width: 120px;
        height: 120px;
        right: -40px;
        bottom: 0;
    }
}

.dashboard-container {
    width: 100%;
    max-width: 1000px; /* Adjust max-width as needed */
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    box-sizing: border-box;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 700;
}

.dashboard-header .subtitle {
    font-size: 1.1em;
    color: #7f8c8d;
    font-weight: 400;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Responsive grid */
    gap: 25px;
    margin-bottom: 40px;
}

.card {
    background-color: #fdfdfd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border-top: 5px solid transparent; /* Placeholder for color accent */
}

.compliantWidget{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.compliantWidget p{
    width: 50%;
    text-align: right;
}

.compliantWidget .check-mark, 
.compliantWidget p, 
.compliantWidget .metric-value{
    margin: 0 !important;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 100%;
    height: 135px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: #fff; /* Icon color */
    margin: 0 auto 20px auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Card specific colors */
.card-orange { border-color: #FF4F00; }
.card-orange .card-icon { background: linear-gradient(45deg, #FF4F00, #d69475); } /* Example gradient */
.card-orange .card-icon i { color: #fff; }

.card-blue { border-color: #2A6DA3; }
.card-blue .card-icon { background: linear-gradient(45deg, #2A6DA3, #6b9ec7); }
.card-blue .card-icon i { color: #fff; }

.card-green { border-color: #0CAE42; }
.card-green .card-icon { background: linear-gradient(45deg, #0CAE42, #61e89b); }
.card-green .card-icon i { color: #fff; }

.card-purple { border-color: #525252; }
.card-purple .card-icon { background: linear-gradient(45deg, #181818, #666666); }
.card-purple .card-icon i { color: #fff; }


.card h2 {
    color: #000;
    margin-top: 0;
    margin-bottom: 10px;
}

.card .focus-text {
    color: #000;
    margin-bottom: 15px;
    font-weight: 400;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px auto;
    text-align: left;
    max-width: 200px; /* Constrain list width for aesthetics */
}

.card ul li {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.card ul li::before {
    content: '•'; /* Simple bullet point */
    color: #7f8c8d;
    position: absolute;
    left: 0;
}

.card .metric {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #000;
}

.card .metric .metric-value {
    font-size: 1.8em;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

/* Specific metric visualizations (simplified) */
.progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin: 10px auto 0 auto;
    overflow: hidden;
}

.progress-bar div {
    height: 100%;
    background-color: #FF4F00; /* Matches orange card */
    border-radius: 4px;
}

.check-mark {
    font-size: 2.5em;
    color: #2A6DA3; /* Green for check */
    margin-top: 10px;
}

.donut-chart {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(#0CAE42 70%, #e0e0e0 0%); /* Example for 70% */
    margin: 10px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
    color: #333;
    font-weight: 600;
    /* You could add a pseudo-element for the inner circle if needed */
}
.donut-chart::after {
    content: '';
    position: absolute;
    width: 40px; /* Inner circle size */
    height: 40px;
    background-color: #fdfdfd;
    border-radius: 50%;
}


.bar-chart {
    display: flex;
    align-items: flex-end;
    height: 60px;
    width: 80%;
    margin: 10px auto 0 auto;
    gap: 5px;
}

.bar-chart div {
    width: 15%;
    background-color: #7367f0; /* Matches purple card */
    border-radius: 3px;
}
.bar-chart::before, .bar-chart::after { /* Example bars */
    content: '';
    display: block;
    width: 15%;
    background-color: #181818;
    border-radius: 3px;
}
.bar-chart::before { height: 40%; }
.bar-chart { height: 60px; }
.bar-chart::after { height: 75%; } /* This is just a simple example for bars */


.dashboard-footer {
    text-align: center;
    margin-top: 40px;
}

.demo-button {
    background-color: #7367f0; /* Purple accent */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(115, 103, 240, 0.3);
}

.demo-button:hover {
    background-color: #6156d6;
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.85em;
    color: #95a5a6;
    margin: 5px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Larger cards on smaller screens */
    }
    .dashboard-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .dashboard-header h1 {
        font-size: 1.8em;
    }
    .dashboard-header .subtitle {
        font-size: 1em;
    }
    .card h2 {
        font-size: 1.1em;
    }
    .card .metric .metric-value {
        font-size: 1.5em;
    }
    .demo-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

.header {
    max-width: 1150px;
    margin: 0 auto;
    padding: 35px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 100;
}

.header img {
    width: 150px;
}

/* Flexbox center container styles */
.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 550px;
    max-width: 1170px;
    margin: 0 auto;
}

.center-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 48px;
    padding: 32px 0;
    border-radius: 16px;
    text-align: left;
}

.emarText h2 {
    font-weight: 500;
    font-size: 62px;
    line-height: 1.1;
    text-align: left;
    margin-top: 0;
    margin-bottom: 13px;
}

.emarText p {
    line-height: 1.5;
    text-align: left;
    font-weight: 500;
    color: #181818;
}

.automateWidget{
    margin-bottom: 50px;
    background: #FFF;
    border-radius: 10px;
    padding: 30px;
}

.automateWidget h3{
    margin-top: 0px;
    font-size: 24px;
    font-weight: 900 !important;
}

.automateWidget li{
    margin-bottom: 10px;
}

.automateWidget li:last-child{
    margin-bottom: 0px;
}

.listNone{
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.emarCol {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
    width: 100%;
    justify-content: space-between;
}

.emarText {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.emarImg {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.emarImg .blobAni{
        position: absolute !important;
    left: 86px;
    top: 110px;
    z-index: 1;
    width: 220px !important;
    height: 220px !important;
}

.emarImg img {
    width: 310px;
    height: auto;
    max-width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.emarImg::after {
    content: "";
    position: absolute;
    left: 58%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 120px;
    height: 32px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0) 100%);
    filter: blur(11px);
    z-index: 0;
}

/* theme.css - Basic theme styles */
/* Box-sizing reset for all elements */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Red Hat Display', Arial, sans-serif;
    background: #f1f1f1;
    color: #181818;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgb(189 189 189 / 40%);
    pointer-events: none;
    z-index: 0;
    width: clamp(150px, 25vw, 400px);
    height: clamp(150px, 25vw, 400px);
}

/* Example circles, adjust size/position as needed */
.circle1 {
    width: 200px;
    height: 200px;
    left: -100px;
    top: 500px;
}

.circle2 {
    width: 200px;
    height: 200px;
    right: -80px;
    top: 180px;
}

.circle3 {
    width: 100px;
    height: 100px;
    left: 66vw;
    top: -46px;
}

.circle4 {
    width: 250px;
    height: 250px;
    right: -80px;
    bottom: 0;
}

.site-footer {
    border-top: 1px solid #2c2c2c;
}
.waitlist-msg {
    width: 300px;
}

.waitlist-form-casemanagement {
    display: flex;
    align-items: center;
    background: #FFF;
    border-radius: 24px;
    padding: 4px 8px 4px 20px;
    width: 390px;
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.waitlist-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #181818;
    font-size: 16px;
    outline: none;
    padding: 8px 0;
}

.waitlist-input::placeholder {
    color: #aaa;
    font-size: 14px;
    opacity: 1;
}

.waitlist-btn {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0 0px 0 4px;
    display: flex;
    align-items: center;
}

.waitlist-btn svg {
    display: block;
}

.coming-soon {
    display: inline-block;
    background: #181818;
    border-radius: 24px;
    padding: 8px 20px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #FFF;
    text-align: center;
    width: 190px;
}

.section2 {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.section2-content {
    text-align: left;
    margin-bottom: 32px;
    padding: 0 35px;
}

.section2-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section2-content p {
    font-size: 1.15rem;
    color: #181818;
}

.section2-cols {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.section2-box {
    background: #fff;
    border-radius: 20px;
    padding: 32px 20px;
    flex: 1 1 0;
    min-width: 220px;
    max-width: 340px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    text-align: left;
}

.section2-box h3 {
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 10px;
    text-align: left;
}

.section2-box p {
    font-size: 1rem;
    color: #222;
    text-align: left;
}

.section2-box img,
.section2-box svg {
    width: 60px;
    height: 60px;
}

.section3 {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.section3-cols {
    display: flex;
    gap: 48px;
    justify-content: space-between;
    align-items: center;
}

.section3-left {
    flex: 1 1 0;
    min-width: 320px;
}

.section3-right {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.section3-right .browser-window {
    height: auto;
}

.section3-subtitle {
    color: #FFF;
    font-size: .7rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    display: inline-block;
    background: #181818;
    border-radius: 24px;
    padding: 8px 20px;
    /* No width applied, font size unchanged */
}

.section3-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #181818;
    margin-top: 0px;
}

.section3-desc {
    color: #181818;
    margin-bottom: 18px;
}

.code-snippet {
    padding: 20px;
}

.section3-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
}

.section3-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #aaffaa;
    font-size: 1.08rem;
}

.section3-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: #4caf50;
    font-size: 1.2em;
}


.browser-window {
    background: #232a36;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    padding: 0;
    margin: 32px auto 0 auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    width: 80%;
    color: #fff;
    font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
    font-size: 1rem;
}

.section3-code pre {
    margin: 0;
    background: none;
    color: inherit;
}

.section4 {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.section4-content {
    text-align: center;
    margin-bottom: 32px;
}

.section4-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section4-content p {
    font-size: 1.15rem;
    color: #181818;
}

.browser-window {
    background: #232a36;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    padding: 0;
    margin: 32px auto 0 auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    width: 80%;
}

.browser-window::before {
    content: '';
    display: block;
    height: 36px;
    width: 100%;
    background: linear-gradient(90deg, #232a36 80%, #232a36 100%);
    border-bottom: 1px solid #222;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.browser-window img,
.browser-window video {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 36px;
    border-radius: 0 0 12px 12px;
}

.browser-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 36px;
    background: linear-gradient(90deg, #232a36 80%, #232a36 100%);
    border-bottom: 1px solid #222;
    padding: 0 18px;
    position: relative;
    z-index: 2;
}

.browser-title {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #888;
    display: inline-block;
}

.dot:nth-child(1) {
    background: #ff5252;
}

.dot:nth-child(2) {
    background: #ffeb3b;
}

.dot:nth-child(3) {
    background: #4caf50;
}

.browser-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px auto 0 auto;
    width: 80%;
}

.browser-col {
    border-radius: 16px;
    padding: 24px 18px 0;
    text-align: left;
    box-shadow: none;
    background: none;
}

.browser-col h3 {
    font-size: 1.15rem;
    margin-top: 0px;
    margin-bottom: 8px;
    font-weight: 700 !important;
}

.browser-col p {
    font-size: 1rem;
    color: #eee;
    margin: 0;
}

.section5 {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-container{
    max-width: 1170px;
    margin: 0 auto;
    padding: 12px 24px;
    text-align: center;
}

.bgChange{
    background-color: #262626;
}

.section5-content {
    text-align: center;
    margin-bottom: 32px;
}

.section5-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section5-content p {
    font-size: 1.15rem;
    color: #181818;
}

.section5-cols {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.section5-col {
    display: flex;
    align-items: center;
    border-radius: 16px;
    padding: 12px 15px;
    text-align: left;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    width: 100%;
}

.section5-col-icon {
    flex-shrink: 0;
}

.section5-col-text {
    flex: 1;
}

.section5-col h3 {
    font-size: 1.15rem;
    color: #222;
    margin: 0px;
    font-weight: 500;
}

.section5-col p {
    color: #222;
    margin: 0;
    font-size: 13px;
}

.section6 {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.section6-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section6-desc {
    font-size: 1.15rem;
    color: #181818;
    margin-bottom: 32px;
}

.section6 .waitlist-form-casemanagement {
    margin: auto;
}


.section6 .waitlist-input::placeholder {
    color: #aaa;
    opacity: 1;
}


.section6 .waitlist-btn span {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.mic-animated {
    width: 68px;
    height: 68px;
    display: inline-block;
    position: relative;
}

.mic-animated .mic-wave {
    stroke: #2196F3;
    opacity: 0.6;
    transform-origin: 50% 50%;
    animation: mic-wave-anim 1.2s infinite ease-in-out;
}

.mic-animated .mic-wave:nth-child(1) {
    animation-delay: 0s;
}

.mic-animated .mic-wave:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes mic-wave-anim {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.15); }
    100% { opacity: 0.6; transform: scale(1); }
}


@media (max-width: 1024px) {
    .center-container,
    .container {
        max-width: 96vw;
        padding-left: 16px;
        padding-right: 16px;
    }
    .center-content,
    .section2-cols,
    .section3-cols,
    .section4-content,
    .section5-cols {
        flex-direction: column !important;
        gap: 24px !important;
        align-items: stretch !important;
    }
    .emarImg {
        width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    .section2-box,
    .section5-col {
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 auto 24px auto !important;
    }
}

@media (max-width: 900px) {
    .section2-cols {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .section2-box {
        max-width: 100%;
    }

    .section3-cols {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .section3-code {
        max-width: 100%;
    }
    
    .browser-col {
        padding: 24px 0px 0;
    }
    
    .browser-window{
        width: 100%;
    }
    
    .waitlist-form-casemanagement{
        width: 100%;
    }

    .browser-cols {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 24px 0 0 0;
        width: 100%;
    }

    .section5-cols {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 24px 0 0 0;
        width: 100%;
    }
}

@media (max-width: 600px) {
    html, body {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    .container, .center-container {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    img, video, canvas {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .emarImg {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    body {
        padding: 0 !important;
    }
    .center-container,
    .container {
        max-width: 100vw;
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .browser-col h3{
        font-size: 20px;
    }

    .header{
        padding: 20px 30px 0;
    }
    .center-content,
    .section2-cols,
    .section3-cols,
    .section4-content,
    .section5-cols {
        flex-direction: column !important;
        gap: 16px !important;
        align-items: stretch !important;
    }
    .emarImg {
        width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    .section2-box,
    .section5-col {
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 auto 16px auto !important;
        padding: 16px 8px !important;
    }
    h1, h2, h3, h4, h5, h6 {
        font-size: 1.1em !important;
    }
    .mic-animated {
        width: 48px !important;
        height: 48px !important;
    }
    .emarCol {
        flex-direction: column !important;
        gap: 16px !important;
        align-items: stretch !important;
        width: 100% !important;
        justify-content: flex-start !important;
    }
    .section2-content h2,
    .section3-title,
    .section4-content h2,
    .section5-content h2,
    .section6-title, 
    .emarText h2 {
        font-size: 28px !important;
    }
    .section2-content p,
    .section3-desc,
    .section4-content p,
    .section5-content p,
    .section6-desc {
        font-size: 18px !important;
    }
    .bg-circle {
        display: none !important;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500 !important;
}

.animate-reveal {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.animate-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}