﻿/* CSS Variables for consistent theming */
:root {
    /* Colors */
    --primary: #0055a4;
    --primary-dark: #003b73;
    --primary-light: #4fc3f7;
    --secondary: #08548a;
    --text-dark: #1a1a1a;
    --text-medium: #333;
    --text-light: #555555;
    --bg-light: #f5f7fa;
    --bg-lighter: #e9f0f7;
    --white: #ffffff;
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-xxl: 80px;
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 20px;
    --radius-full: 50px;
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    position: relative;
    height: 100vh;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    overflow-x: hidden;
}

.vertical-lines-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%);
}



.vline {
    border-left: 2px dotted #C9E7F5;
    height: 100%;
    flex-shrink: 0;
}

.vertical-lines-overlay-in-div {
    position: absolute;
    top: -10%; /* fixed px spacing issue */
    left: 0;
    width: 100%;
    height: calc(100% + 160px);
    display: flex;
    justify-content: space-between;
    z-index: 4; /* <-- changed from 3 to 2 */
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, black 1%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 1%);
}

.vline-in-div {
    border-left: 2px dotted #C9E7F5;
    height: 100%;
    flex-shrink: 0;
}

.frame-9 {
    background: #08548a;
    border-style: solid;
    border-color: var(--grey-10, #f2f5f7);
    border-width: 0px 0px 0.4px 0px;
    padding: 16px 40px;
    display: flex;
    flex-direction: row;
    gap: 240px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    flex-wrap: nowrap;
    z-index: 3;
}

.frame-10 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    flex-shrink: 1;
    position: relative;
    min-width: 0;
    max-width: 100%;
    /
}

.image-7 {
    flex-shrink: 0;
    width: 120px;
    height: 20px;
    object-fit: cover;
    aspect-ratio: 120/20;
}

.image-8 {
    flex-shrink: 0;
    width: 120px;
    height: 35px;
    object-fit: cover;
    aspect-ratio: 120/35;
}

.frame-10,
.image-7,
.image-8 {
    flex-shrink: 0;
    width: 120px;
    object-fit: contain;
}

@media (max-width: 400px) {
    .frame-9 {
        padding: 12px 20px;
    }

    .image-7,
    .image-8 {
        width: 100px;
    }
}



/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: auto;
    overflow: visible;
    background: white;
    height: 80vh; /* or try 60vh, 65vh etc. */
    padding-bottom: 60px;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #005291;
        clip-path: polygon(0 0, 100% 0, 100% 40%, 0% 95%);
        z-index: 3;
    }

/* Content Wrapper */
.hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    padding: 40px 80px;
    gap: 40px; /* horizontal spacing between text and image */
    flex-wrap: wrap;
}

/* Left Text Section */
.text-content {
    flex: 1;
    color: #FFFFFF;
    transform: translateY(70px); /* slight upward shift */
}

.hero-heading {
    font-style: 'roboto',sans-serif;
    ;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 20px;
}

.hero-subtext {
    font-style: 'roboto',sans-serif;
    ;
    font-size: 14px;
    line-height: 1.6;
    color: #d0dff5;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

    .hero-buttons button {
        padding: 12px 24px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 200px; /* ✅ Fixed width so both buttons match exactly */
        box-sizing: border-box;
    }
/* REQUEST DEMO BUTTON */
.request-btn {
    background-color: #1a1a1a;
    color: white;
    border: none;
}

    .request-btn:hover {
        background-color: #333;
    }

/* SIGN IN BUTTON */
.signin-btn {
    background-color: white;
    color: #0073BA;
    border: 2px solid #0073BA;
}

    .signin-btn:hover {
        background-color: #0073BA;
        color: white;
        border-color: #0073BA;
    }


.arrow-icon {
    width: 20px; /* ⬆️ Increased from 16px to 24px */
    height: auto;
    position: relative;
    top: -2px; /* ⬆️ Slight upward shift */
}

/* Right Image Section */
.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transform: translateY(-30px); /* Move image upward to align with text */
    z-index: 3;
}

    .image-content img {
        width: 90%;
        max-width: none;
        height: auto;
    }

@media (max-width: 1024px) {
    .image-content {
        transform: translateY(60px); /* 👈 Instead of -30px, move it slightly down */
    }
}

.section-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    gap: 60px;
    background-color: #FFFFFF;
    flex-wrap: wrap;
    margin-left: 8%;
}

.image-wrapper {
    flex: 1 1 100%; /* allow it to grow and shrink */
    max-width: 600px; /* or whatever makes sense for you */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; /* fix: `centre` → `center` */
    margin: 20px auto;
    z-index: 3;
}

.section-illustration {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain; /* or cover if you want to crop */
    display: block;
}

@media screen and (max-width: 1024px) {
    .hero-section {
        height: auto;
        padding-bottom: 80px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        padding: 30px 40px;
        gap: 30px;
    }

    .hero-heading {
        font-size: 36px;
        text-align: center;
    }

    .hero-subtext {
        font-size: 14px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: auto;
        padding-bottom: 100px;
    }

    .hero-content {
        padding: 20px;
        gap: 20px;
    }

    .hero-heading {
        font-size: 28px;
    }

    .hero-subtext {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
}

@media screen and (max-width: 480px) {
    .hero-heading {
        font-size: 24px;
    }

    .hero-subtext {
        font-size: 12px;
    }
}

.frame-18 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    color: #1a1a1a;
    z-index: 3;
    margin-left: 3%;
}

.frame-13 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    gap: 60px;
    background-color: #ffffff;
}

.data-to-decisions-instantly {
    font-style: 'poppins';
    font-size: 42px;
    font-weight: 600;
    color: #0E171F;
    margin-bottom: 10px;
    line-height: 130%;
}

.frame-19,
.frame-20,
.frame-21 {
    display: flex;
    flex-direction: row; /* ⬅ This makes the layout horizontal */
    gap: 40px; /* Adjust spacing between the image and text */
    align-items: center; /* Optional: vertically center them */
    flex-wrap: wrap; /* Optional: make it responsive */
    width: 100%;
}

.heading-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blue-rectangle {
    width: 16px;
    height: 4px;
    background-color: #0071bc;
    border-radius: 2px;
    flex-shrink: 0;
    margin-bottom: 2px; /* optional fine-tuning */
    margin-right: 10px;
}



.unmatched-visibility,
.smarter-meetings,
.latest-insights {
    font-size: 28px;
    font-weight: 600;
    color: #005291;
    line-height: 130%;
}

.track-sales-shipments-and-profitability-across-teams-branches-and-customers,
.focus-on-solutions-track-kp-is-and-make-every-discussion-action-driven,
.make-confident-decisions-with-updated-analytics-not-outdated-reports {
    font-size: 18px;
    color: #0E171F;
    line-height: 140%;
    margin-left: 28px;
    font-weight: 300;
    width: auto;
    margin-left: 4%;
}

.container-for-insights-and-features {
    z-index: 1;
}

.insights-section {
    position: relative;
    margin-top: 5%;
    z-index: 3; /* stays above */
    margin-bottom: -80px; /* pull it down to overlap the next section */
}

.insights-heading {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #0E171F;
    position: relative;
    text-align: center;
    margin-top: 7%;
    z-index: 3; /* On top of the feature section */
    margin-bottom: 80px; /* Keep spacing below */
    transform: translateY(-20%);
}

.insights-visual-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}

.insights-bg-layer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 95%; /* Make it larger than the image */
    top: -10%;
    height: 115%; /* Taller than image */
    background: #EBF3F7;
    border-radius: 24px; /* Rounded corners */
    z-index: 2;
}

.insights-image {
    justify-self: center;
    width: 90%;
    height: 80%;
    display: block;
    margin-left: 5%;
    margin-top: 30px;
    z-index: 4;
    position: relative;
}

@media screen and (max-width: 480px) {
    .insights-bg-layer {
        top: -50%;
        height: 30vh;
    }

    .insights-image {
        top: -15vh;
    }

    .vertical-lines-overlay-in-div {
        top: -15vh;
    }

    .vertical-lines-overlay {
    }
}

.vertical-lines-overlay-1 {
    position: absolute;
    width: 100vw;
    height: 200vh;
    top: -20vh;
    display: flex;
    justify-content: space-between;
    z-index: 2; /* between bg (2) and image (4) */
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, black 1%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 1%);
}

.feature-wrapper {
    position: relative;
    width: 100%;
    background-color: #005c99;
    display: flex;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 0% 80%);
    overflow: visible;
    z-index: 2; /* background base layer */
}

/* VISUAL CONTAINER HOLDS THE IMAGE */
.feature-wrapper-container {
    position: relative;
    padding-top: 5%;
    padding-bottom: 20%;
    width: 80%;
    display: flex;
    justify-content: center;
}
/* THE IMAGE ITSELF */
.feature-image-2 {
    width: 70%;
    height: auto;
    display: block;
    position: relative;
    margin-top: 110px; /* Pulls image downward */
    z-index: 9999;
}

.features-section {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 3;
    margin-top: -400px; /* default for large screen */
    padding-top: 80px;
}

.transform-meetings-strategy-and-execution {
    font-size: 42px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 60px;
    margin-left: -400px;
    margin-top: 60px;
    color: #000;
    align-self: flex-start;
    padding-left: 10%;
    text-align: left;
}

.feature-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    padding-left: -20%; /* as per your requirement, unchanged */
    padding-right: 10%;
}

.feature-text-box {
    flex: none;
    width: auto;
    max-width: none;
    margin-left: -290px; /* as you specified */
}

.feature-text-content {
    background: #ffffff;
    padding: 16px 28px;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #3e5463;
    max-width: 600px;
    border-left: 4px solid #007BFF;
    margin-top: -100px;
}


    .feature-text-content strong {
        font-size: 20px;
        font-weight: 900;
        color: #1c2b36;
        display: block;
        margin-bottom: -9px;
    }


.feature-image img {
    width: 100%;
    max-width: 600px; /* Increase from 400px to match second image size */
    height: auto;
}

.feature-items-wrapper {
    position: relative;
    width: 100%;
}

.vertical-line {
    position: absolute;
    top: 280px;
    left: -160px;
    width: 4px;
    height: calc(100% - 700px);
    background-color: #007BFF; /* Solid blue line */
    z-index: 1;
}

.during-meeting {
    display: flex;
    flex-direction: column; /* Stack text above image */
    align-items: flex-start;
}


    .during-meeting .feature-text-box {
        margin-left: -290px; /* Same alignment as other text boxes */
        width: 100%;
        padding-right: -200px;
    }

    .during-meeting .feature-text-content {
        max-width: 1000px;
        width: 100%;
    }

    .during-meeting .feature-image {
        margin-top: 120px;
        display: flex;
        justify-content: flex-end;
        width: 100%;
        padding-right: 30px;
    }

        .during-meeting .feature-image img {
            width: 80%;
            max-width: 600px; /* Match size of first image */
            height: auto;
        }

    .during-meeting .feature-text-content {
        max-width: 1000px;
        width: 100%;
    }

.feature-container:last-of-type {
    margin-top: 170px;
}

.feature-visual-container img {
    width: 90%; /* Or any value like 70%, 60%, etc. */
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 160px;
}

.frame-42,
.frame-42 * {
    box-sizing: border-box;
}

.frame-42 {
    background: var(--aqua-aqua-10, #ebf3f7);
    padding: 300px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

.better-data-better-decisions-better-business {
    color: var(--grey-100, #0e171f);
    text-align: left;
    font-family: "Roboto-Bold", sans-serif;
    font-size: 44px;
    line-height: 120%;
    letter-spacing: 0.0121em;
    font-weight: 700;
    position: relative;
    align-self: stretch;
    z-index: 3;
}

.see-logi-brain-in-action-book-a-demo-at-business-softlinkglobal-com {
    text-align: left;
    font-family: "Roboto-Medium", sans-serif;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0.0121em;
    font-weight: 500;
    position: relative;
    z-index: 3;
    align-self: stretch;
}

.see-logi-brain-in-action-book-a-demo-at-business-softlinkglobal-com-span {
    color: var(--grey-100, #0e171f);
    font-family: "Roboto-Medium", sans-serif;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0.0121em;
    font-weight: 500;
}

.see-logi-brain-in-action-book-a-demo-at-business-softlinkglobal-com-span2 {
    color: var(--aqua-aqua-60, #0073ba);
    font-family: "Roboto-Medium", sans-serif;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0.0121em;
    font-weight: 500;
    z-index: 3;
}

.see-logi-brain-in-action-book-a-demo-at-business-softlinkglobal-com-span3 {
    color: var(--aqua-aqua-60, #0073ba);
    font-family: "Roboto-Medium", sans-serif;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0.0121em;
    font-weight: 500;
    text-decoration: underline;
    z-index: 3;
}


@media (min-width: 1440px) {
    .features-section {
        margin-top: -400px;
        padding-top: 80px;
    }

    .transform-meetings-strategy-and-execution {
        margin-left: -400px;
        text-align: left;
        align-self: flex-start;
    }
}

/* Medium desktops/laptops */
@media (min-width: 1024px) and (max-width: 1439px) {
    .features-section {
        margin-top: -200px;
        padding-top: 80px;
    }

    .transform-meetings-strategy-and-execution {
        margin-left: -200px;
        text-align: left;
        align-self: flex-start;
    }
}

/* Tablets & down */
@media (max-width: 1024px) {
    .transform-meetings-strategy-and-execution {
        margin-left: 0;
        padding-left: 0;
        text-align: center;
        align-self: center;
        font-size: 42px;
    }

    .feature-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
        padding-right: 0;
        gap: 1.5rem;
        margin-bottom: 40px;
    }

    .feature-text-box {
        margin-left: 0 !important;
        width: 100%;
    }

    .feature-text-content {
        max-width: 100%;
        margin-top: 0;
    }

    .feature-image {
        width: 100%;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        padding-right: 0;
    }

        .feature-image img {
            width: 100%;
            max-width: 600px;
            height: auto;
        }

    .during-meeting {
        flex-direction: column;
    }

        .during-meeting .feature-text-box {
            margin-left: 0 !important;
        }

        .during-meeting .feature-image {
            justify-content: center;
            padding-right: 0;
        }
}

/* Mobile */
@media (max-width: 768px) {
    .feature-wrapper {
        clip-path: none;
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .feature-image-2 {
        width: 90%;
        margin-top: 60px;
    }

    .features-section {
        margin-top: 0;
        padding: 0 16px 60px;
        align-items: center;
    }

    .transform-meetings-strategy-and-execution {
        font-size: 42px;
        margin-left: 0;
        padding-left: 5%;
        text-align: center;
        align-self: center;
        margin-top: 40px;
    }

    .feature-container {
        display: flex;
        flex-direction: column; /* Stack text over image */
        align-items: flex-start;
        padding-left: 0;
        padding-right: 0;
        gap: 1rem;
    }

    .feature-text-box {
        margin-left: 0;
        width: 100%;
    }

    .feature-text-content {
        margin-top: 0;
        max-width: 100%;
    }

    .feature-image {
        width: 100%;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        padding-right: 0;
    }

        .feature-image img {
            max-width: 100%;
            width: auto;
            height: auto;
        }

    .during-meeting {
        flex-direction: column;
    }

        .during-meeting .feature-image {
            justify-content: center;
            padding-right: 0;
        }

    .vertical-line {
        display: none;
    }
}

/* Extra small mobile */
@media (max-width: 600px) {
    .transform-meetings-strategy-and-execution {
        font-size: 42px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .transform-meetings-strategy-and-execution {
        font-size: 42px;
    }

    .frame-42 {
        padding: 180px 20px;
    }

    .better-data-better-decisions-better-business {
        font-size: 28px;
    }
}

.moto {
    padding: 0px 20px 0px 80px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #22223b;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 0px 20px 20px 20px;
}

.timeline-section {
    position: relative;
    margin-bottom: 130px;
}

.container {
    margin: 0px 50px 0px 50px
}

.timeline:before {
    content: "";
    position: absolute;
    left: 15%;
    top: 25vh;
    height: calc(100% - 50vh);
    width: 6px;
    background-color: #1a73e8;
    z-index: 1;
}

.timeline-card {
    background-color: var(--white);
    padding: var(--spacing-md) 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.left-card {
    max-width: 500px;
    width: fit-content;
    height: fit-content;
    margin-left: 30px;
    padding-left: 28px;
}

.wide-card {
    width: 100%;
    margin-left: 30px;
    padding-left: 28px;
}

.timeline-card h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.timeline-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
}

.meeting-illustration {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 70vh;
    border-radius: var(--radius-md);
}

.analysis-illustration {
    height: 60vh;
    border-radius: var(--radius-md);
}

/* Closing Section */
.closing-section {
    background-color: var(--bg-lighter);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

#features-section {
    width: 100%;
    background: #08548a;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

    #features-section img {
        max-width: 100%;
        height: auto;
    }

/* Timeline styles */
#timeline-before-img,
#timeline-during-img,
#timeline-beyond-img {
    display: flex;
    justify-content: flex-end;
}

    #timeline-before-img img,
    #timeline-during-img img,
    #timeline-beyond-img img {
        width: 60%;
        height: auto;
    }

/* Responsive styles */
@media (max-width: 1024px) {
    #features-section {
        height: auto;
    }

    #timeline-before-img,
    #timeline-during-img,
    #timeline-beyond-img {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (min-width: 1025px) and (max-width: 1300px) {
    #features-section img {
        width: 80%;
    }
}

@media (min-width: 1301px) {
    #features-section {
        height: 125vh;
    }

        #features-section img {
            width: 60%;
        }
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .feature-circle-container {
        height: 400px;
    }
}

@media (max-width: 992px) {

    .data-content,
    .data-image {
        width: 50%;
    }

    .insight-card {
        width: 48%;
    }

    .meeting-stage {
        width: 48%;
        margin-bottom: var(--spacing-md);
    }

    .feature-circle.outer {
        width: 250px;
        height: 250px;
    }

    .feature-circle.middle {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 768px) {
    .hero-section .container,
    .data-decision-section .container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image,
    .data-content,
    .data-image {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .hero-content {
        margin-bottom: var(--spacing-lg);
    }

    .data-content {
        margin-top: var(--spacing-lg);
    }

    .insights-dashboard {
        flex-direction: column;
    }

    .insight-card {
        width: 100%;
        margin-bottom: var(--spacing-md);
    }

    .meeting-stage {
        width: 100%;
    }

    .timeline:before {
        left: 10%;
    }

    .timeline-card {
        width: calc(100% - 40px);
    }
}

@media (max-width: 768px) {
    .timeline:before {
        content: "";
        position: absolute;
        left: 15%;
        top: 25vh;
        height: calc(100% - 40vh);
        width: 6px;
        background-color: #1a73e8;
        z-index: 1;
    }
}

@media (max-width: 576px) {
    .button-container {
        flex-direction: column;
        width: 100%;
    }

    .btn,
    .razor-button {
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .feature-circle-container {
        height: 300px;
    }

    .feature-circle.outer {
        width: 200px;
        height: 200px;
    }

    .feature-circle.middle {
        width: 130px;
        height: 130px;
    }

    .feature-circle.inner {
        width: 70px;
        height: 70px;
    }

    .timeline:before {
        display: none;
    }

    .timeline-card {
        margin-left: 0;
        width: 100%;
    }

    .meeting-illustration,
    .analysis-illustration {
        height: 40vh;
    }

    .footer-links {
        flex-direction: column;
    }

        .footer-links li {
            margin: var(--spacing-xs) 0;
        }
}

#beyond-meeting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; /* Add some gap for spacing */
}

.timeline-card.left-card {
    max-width: 500px;
    width: 100%;
    margin-left: 0; /* Remove excessive left margin */
    padding-left: 28px;
}

#timeline-beyond-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
}

    #timeline-beyond-img img {
        width: 80%; /* Adjust as needed */
        max-width: 400px;
        height: auto;
    }

#timeline-first {
    display: flex;
    align-items: center;
    padding-bottom: 10em;
    justify-content: space-between;
}

@media (max-width: 768px) {
    #beyond-meeting {
        flex-direction: column;
        align-items: flex-start;
    }

    #timeline-first {
       flex-direction: column;
    }


    #timeline-during-img img {
        width: 90%;
    }

    .timeline-card.left-card,
    #timeline-beyond-img {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }

        #timeline-beyond-img img {
            width: 100%;
            max-width: 300px;
            padding: 10px;
        }
}
