:root {
    --ink: #10201b;
    --muted: #66736e;
    --line: #dce5e1;
    --soft: #f3f7f5;
    --brand: #0d6b4d;
    --brand-dark: #074c37;
    --white: #fff;
    --radius: 24px;
    --shadow: 0 18px 50px rgba(16, 32, 27, .08);
}


/* ================= RESET ================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system,
        "Segoe UI", sans-serif;

    color: var(--ink);
    background: #fbfcfb;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ================= HEADER ================= */

.header {
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    position: sticky;
    top: 0;
    z-index: 20;

    background: rgba(251, 252, 251, .9);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(220, 229, 225, .7);
}

.logo {
    font-weight: 900;
    letter-spacing: -1px;
    font-size: 20px;
}

.logo span {
    color: var(--brand);
}

.logo img {
    height:auto;
    width: 220px;
    display: block;
}


.nav {
    display: flex;
    gap: 28px;
    align-items: center;

    font-size: 14px;
    font-weight: 600;
}

.nav a {
    color: #42514c;
}

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

.nav-cta {
    border: 1px solid var(--line);
    padding: 10px 17px;
    border-radius: 999px !important;
    color: var(--ink) !important;
}

.nav-cta:hover {
    border-color: var(--brand);
}


.menu-btn {
    display: none;

    background: none;
    border: 0;

    font-size: 25px;
    cursor: pointer;
}


/* ================= HERO ================= */

.hero {
    min-height: calc(100vh - 78px);

    padding: 80px 7%;

    display: grid;
    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 50px;

    background:
        radial-gradient(
            circle at 80% 35%,
            #e2f1ea 0,
            transparent 36%
        ),
        #fbfcfb;
}

.eyebrow {
    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    color: var(--brand);

    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(46px, 6vw, 78px);

    line-height: 1.03;

    letter-spacing: -4px;

    max-width: 750px;
}

.hero h1 span,
h2 span {
    color: var(--brand);
}

.hero-text {
    font-size: 18px;
    color: var(--muted);

    max-width: 650px;

    margin: 25px 0 32px;
}


.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}


.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 21px;

    border-radius: 12px;

    font-weight: 750;

    border: 1px solid transparent;

    cursor: pointer;

    transition: .25s;
}


.primary {
    background: var(--brand);
    color: white;
}

.primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
}


.secondary {
    border-color: var(--line);
    background: white;
}

.secondary:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
}


.trust-row {
    display: flex;

    gap: 22px;

    margin-top: 42px;

    color: #718079;

    font-size: 12px;

    font-weight: 700;
}

.trust-row span::before {
    content: "✓";

    color: var(--brand);

    margin-right: 7px;
}


/* ================= HERO CARD ================= */

.hero-card {
    height: 500px;

    position: relative;

    background: linear-gradient(
        145deg,
        #eaf4ef,
        #d7ebe3
    );

    border-radius: 38px;

    overflow: hidden;

    box-shadow: var(--shadow);
}

.orb {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle at 35% 30%,
            #fff,
            #9ccdb8 42%,
            #428b70 75%
        );

    filter: blur(.2px);

    opacity: .95;
}


.floating-card {
    position: absolute;

    background: rgba(255, 255, 255, .86);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .8);

    padding: 15px 18px;

    border-radius: 16px;

    box-shadow: 0 15px 35px rgba(16, 32, 27, .1);

    display: grid;

    grid-template-columns: auto 1fr;

    column-gap: 12px;

    min-width: 175px;
}

.floating-card b {
    grid-row: 1 / 3;

    color: var(--brand);

    font-size: 13px;
}

.floating-card span {
    font-weight: 800;
    font-size: 14px;
}

.floating-card small {
    color: var(--muted);
    font-size: 10px;
}

.card-one {
    top: 70px;
    left: 35px;
}

.card-two {
    right: 30px;
    top: 205px;
}

.card-three {
    left: 75px;
    bottom: 60px;
}


/* ================= GENERAL SECTIONS ================= */

.section {
    padding: 110px 7%;
}

.section-heading {
    max-width: 720px;
}

.section-heading h2 {
    font-size: clamp(34px, 4.3vw, 57px);

    line-height: 1.08;

    letter-spacing: -2.5px;
}

.section-heading > p:not(.eyebrow) {
    color: var(--muted);

    margin-top: 18px;
}

.center {
    text-align: center;
    margin: 0 auto;
}


/* ================= ABOUT ================= */

.about {
    background: white;
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    margin-top: 55px;
}

.lead {
    font-size: 23px;

    line-height: 1.45;

    margin-bottom: 20px;
}

.about-grid p:not(.lead) {
    color: var(--muted);
}


/* ================= STATS ================= */

.stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}

.stats div {
    background: var(--soft);

    border-radius: 18px;

    padding: 22px;
}

.stats strong {
    font-size: 30px;

    color: var(--brand);

    display: block;
}

.stats span {
    font-size: 12px;

    font-weight: 700;

    color: #68766f;
}


/* ================= SOLUTIONS ================= */

.solutions {
    background: var(--soft);
}

.solution-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    margin-top: 50px;
}

.solution-card {
    background: white;

    border: 1px solid var(--line);

    padding: 28px;

    border-radius: var(--radius);

    transition: .25s;
}

.solution-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #e4f1eb;

    color: var(--brand);

    font-size: 20px;

    margin-bottom: 28px;
}

.solution-card h3 {
    font-size: 19px;

    margin-bottom: 10px;
}

.solution-card p {
    font-size: 14px;

    color: var(--muted);

    min-height: 88px;
}

.solution-card a {
    display: inline-block;

    margin-top: 18px;

    color: var(--brand);

    font-weight: 800;

    font-size: 13px;
}


/* ================= PROBLEMS ================= */

.problems {
    background: #fff;
}

.problem-list {
    margin-top: 50px;

    border-top: 1px solid var(--line);
}

.problem-list > div {
    display: grid;

    grid-template-columns: 80px 1fr 1fr;

    gap: 30px;

    padding: 28px 0;

    border-bottom: 1px solid var(--line);

    align-items: center;
}

.problem-list span {
    font-size: 12px;

    color: var(--brand);

    font-weight: 900;
}

.problem-list h3 {
    font-size: 21px;
}

.problem-list p {
    color: var(--muted);

    font-size: 14px;
}


/* ================= INTERNSHIP ================= */

.internship {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    background: #10201b;

    color: white;
}

.internship .eyebrow {
    color: #9bd2ba;
}

.internship h2 {
    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.internship h2 span {
    color: #83c6a9;
}

.internship-copy > p:not(.eyebrow) {
    color: #b7c6c0;

    max-width: 570px;

    margin: 22px 0 28px;
}

.journey {
    border-left: 1px solid #395047;
}

.journey-item {
    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 20px;

    padding: 18px 0 18px 25px;

    border-bottom: 1px solid #30483f;
}

.journey-item b {
    color: #83c6a9;
}

.journey-item h3 {
    font-size: 18px;
}

.journey-item p {
    font-size: 13px;

    color: #aebeb7;

    margin-top: 3px;
}


/* ================= COMPANIES ================= */

.companies {
    background: var(--soft);
}

.company-box {
    background: var(--brand);

    color: white;

    border-radius: 30px;

    padding: 60px;

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 50px;
}

.company-box .eyebrow {
    color: #a5d8c1;
}

.company-box h2 {
    font-size: clamp(32px, 4vw, 52px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.company-box h2 span {
    color: white;
}

.company-box p:not(.eyebrow) {
    color: #c3d9cf;

    max-width: 650px;

    margin-top: 18px;
}

.light {
    background: white;

    color: var(--brand);

    white-space: nowrap;
}

.light:hover {
    transform: translateY(-2px);
}


/* ================= PROCESS ================= */

.process {
    background: white;
}

.process-line {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 55px;
}

.process-line > div {
    padding: 0 28px;

    border-left: 1px solid var(--line);
}

.process-line b {
    font-size: 12px;

    color: var(--brand);
}

.process-line h3 {
    margin: 18px 0 5px;
}

.process-line p {
    font-size: 13px;

    color: var(--muted);
}


/* ================================================= */
/* ================= CONTACT ======================= */
/* ================================================= */

.contact {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 80px;

    align-items: center;

    background: var(--soft);
}


/* LEFT CONTACT CONTENT */

.contact-copy h2 {
    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.contact-copy > p:not(.eyebrow) {
    color: var(--muted);

    max-width: 600px;

    margin-top: 22px;
}


/* RIGHT CONTACT FORM */

.contact-form {
    width: 100%;

    background: white;

    padding: 35px;

    border-radius: 24px;

    border: 1px solid var(--line);

    box-shadow: var(--shadow);
}


/* TWO COLUMNS */

.field-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


/* LABEL */

.contact-form label {
    display: block;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 18px;
}


/* INPUTS */

.contact-form input,
.contact-form textarea,
.contact-form select {
    display: block;

    width: 100%;

    margin-top: 7px;

    border: 1px solid var(--line);

    border-radius: 10px;

    padding: 13px 14px;

    font: inherit;

    outline: none;

    background: #fff;

    color: var(--ink);

    transition: .2s;
}


/* TEXTAREA */

.contact-form textarea {
    resize: vertical;

    min-height: 130px;
}


/* PLACEHOLDER */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8a9691;
}


/* FOCUS */

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--brand);

    box-shadow:
        0 0 0 3px rgba(13, 107, 77, .08);
}


/* SUBMIT BUTTON */

.contact-form button {
    width: 100%;

    margin-top: 5px;
}


/* SUCCESS MESSAGE */

.form-message {
    text-align: center;

    font-size: 13px;

    color: var(--brand);

    margin-top: 12px;

    min-height: 20px;
}


/* ================= FOOTER ================= */

footer {
    background: #0b1814;

    color: #b5c2bd;

    padding: 45px 7% 22px;
}

.footer-main {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding-bottom: 40px;
}

.footer-main .logo {
    color: white;
}

.footer-main p {
    font-size: 12px;

    margin-top: 10px;
}

.footer-links {
    display: flex;

    gap: 25px;

    font-size: 12px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #263731;

    padding-top: 18px;

    display: flex;

    justify-content: space-between;

    font-size: 10px;

    color: #71817a;
}


/* ================================================= */
/* ================= TABLET ======================== */
/* ================================================= */

@media (max-width: 900px) {

    .header {
        padding: 0 5%;
    }


    .menu-btn {
        display: block;
    }


    .nav {
        display: none;

        position: absolute;

        top: 78px;

        left: 0;
        right: 0;

        padding: 20px 5%;

        background: #fff;

        border-bottom: 1px solid var(--line);

        flex-direction: column;

        align-items: flex-start;
    }


    .nav.open {
        display: flex;
    }


    .hero {
        grid-template-columns: 1fr;

        padding: 65px 5%;
    }


    .hero-card {
        height: 390px;
    }


    .section {
        padding: 80px 5%;
    }


    .about-grid,
    .internship,
    .contact {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .solution-grid {
        grid-template-columns: 1fr 1fr;
    }


    .company-box {
        padding: 40px;

        align-items: flex-start;

        flex-direction: column;
    }


    .process-line {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }


    .process-line > div:nth-child(3) {
        border-left: 0;
    }

}


/* ================================================= */
/* ================= MOBILE ======================== */
/* ================================================= */

/* ================= PHONE SCREEN ================= */

@media (max-width: 600px) {

    /* HEADER */
    .header {
        height: 68px;
        padding: 0 20px;
    }

    .logo img {
    width: 140px;
    height: auto;
    }
    .menu-btn {
        font-size: 24px;
    }

    .nav {
        top: 68px;
        padding: 18px 20px;
        gap: 18px;
    }


    /* HERO */
    .hero {
        min-height: auto;
        padding: 55px 20px 60px;
        gap: 35px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.6;
        margin: 18px 0 25px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 12px 17px;
        font-size: 13px;
    }

    .trust-row {
        flex-direction: column;
        gap: 7px;
        margin-top: 28px;
    }


    /* HERO CARD */
    .hero-card {
        height: 300px;
        border-radius: 25px;
    }

    .orb {
        width: 180px;
        height: 180px;
    }

    .floating-card {
        min-width: 130px;
        padding: 10px 12px;
        border-radius: 13px;
        column-gap: 8px;
    }

    .floating-card span {
        font-size: 12px;
    }

    .floating-card small {
        font-size: 9px;
    }

    .card-one {
        top: 20px;
        left: 12px;
    }

    .card-two {
        right: 10px;
        top: 115px;
    }

    .card-three {
        left: 25px;
        bottom: 18px;
    }


    /* ALL SECTIONS */
    .section {
        padding: 65px 20px;
    }


    /* SECTION HEADINGS */
    .section-heading h2 {
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -2px;
    }

    .section-heading > p:not(.eyebrow) {
        font-size: 15px;
        line-height: 1.6;
    }


    /* ABOUT */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 35px;
    }

    .lead {
        font-size: 19px;
    }


    /* STATS */
    .stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stats div {
        padding: 18px;
    }

    .stats strong {
        font-size: 26px;
    }


    /* SOLUTIONS */
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 35px;
    }

    .solution-card {
        padding: 23px;
        border-radius: 18px;
    }

    .solution-card p {
        min-height: auto;
    }


    /* PROBLEMS */
    .problem-list {
        margin-top: 35px;
    }

    .problem-list > div {
        grid-template-columns: 40px 1fr;
        gap: 10px;
        padding: 22px 0;
    }

    .problem-list h3 {
        font-size: 18px;
    }

    .problem-list p {
        grid-column: 2;
        font-size: 13px;
    }


    /* INTERNSHIP */
    .internship {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .internship h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .internship-copy > p:not(.eyebrow) {
        font-size: 15px;
    }

    .journey {
        border-left: 0;
    }

    .journey-item {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 18px 0;
    }


    /* COMPANIES */
    .company-box {
        padding: 25px;
        border-radius: 22px;
        gap: 25px;
    }

    .company-box h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .company-box p:not(.eyebrow) {
        font-size: 14px;
    }

    .light {
        width: 100%;
    }


    /* PROCESS */
    .process-line {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 35px;
    }

    .process-line > div {
        border-left: 0 !important;
        border-bottom: 1px solid var(--line);
        padding: 20px 0;
    }


    /* ================= CONTACT ================= */

    .contact {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 60px 20px;
    }

    .contact-copy h2 {
        font-size: 42px;
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .contact-copy > p:not(.eyebrow) {
        font-size: 15px;
        line-height: 1.6;
        margin-top: 18px;
    }

    .contact-form {
        width: 100%;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form label {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .contact-form button {
        width: 100%;
        padding: 13px;
    }


    /* FOOTER */
    footer {
        padding: 35px 20px 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 25px;
        padding-bottom: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

    /* CONTACT MOBILE */

    .contact {
        gap: 35px;
    }


    .contact-copy h2 {
        letter-spacing: -2px;
    }


    .contact-form {
        padding: 25px;
    }


    .field-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px;
    }


    .process-line {
        grid-template-columns: 1fr;
    }


    .process-line > div {
        border-left: 0 !important;

        border-bottom: 1px solid var(--line);

        padding: 18px 0;
    }


    .footer-main,
    .footer-bottom {
        flex-direction: column;
    }


    .footer-links {
        flex-wrap: wrap;
    }

/* ================= FLOATING CHATBOT ================= */

.chatbot {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 99999;
}

/* Floating chat button */

.chatbot-button {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    font-size: 26px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    position: relative;
}

/* Small notification dot */

.chatbot-button::after {
    content: "";
    position: absolute;

    width: 12px;
    height: 12px;

    background: #ff4d4d;
    border: 2px solid white;

    border-radius: 50%;

    top: 3px;
    right: 3px;
}

/* Chat window */

.chatbot-box {
    position: absolute;

    right: 0;
    bottom: 75px;

    width: 350px;
    height: 500px;

    background: white;
    border-radius: 20px;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.20);

    display: none;
    flex-direction: column;

    overflow: hidden;
}

.chatbot-box.active {
    display: flex;
}


/* Mobile */

@media (max-width: 600px) {

    .chatbot {
        right: 15px;
        bottom: 15px;
    }

    .chatbot-button {
        width: 55px;
        height: 55px;
    }

    .chatbot-box {
        position: fixed;

        left: 15px;
        right: 15px;
        bottom: 80px;

        width: auto;
        height: 70vh;
        max-height: 500px;
    }
}

/* ================= CHATBOT ================= */

.chatbot {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 99999;
}

/* Chat button */

.chatbot-button {
    width: 60px;
    height: 60px;

    border: none;
    border-radius: 50%;

    background: #0d6b4d;
    color: white;

    font-size: 26px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 25px rgba(0,0,0,0.20);
}

/* Chat window */

.chatbot-box {
    position: absolute;

    right: 0;
    bottom: 75px;

    width: 360px;
    height: 500px;

    background: white;

    border-radius: 20px;

    box-shadow: 0 15px 50px rgba(0,0,0,0.20);

    display: none;

    flex-direction: column;

    overflow: hidden;
}

/* IMPORTANT */

.chatbot-box.active {
    display: flex;
}


/* Header */

.chatbot-header {
    background: #0d6b4d;
    color: white;

    padding: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header strong {
    display: block;
    font-size: 16px;
}

.chatbot-header small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    opacity: 0.9;
}

.chatbot-header button {
    background: transparent;
    border: none;

    color: white;

    font-size: 25px;

    cursor: pointer;
}


/* Messages */

.chatbot-messages {
    flex: 1;

    padding: 15px;

    overflow-y: auto;

    background: #f3f7f5;
}

.bot-message,
.user-message {
    max-width: 85%;

    padding: 10px 13px;

    margin-bottom: 10px;

    border-radius: 14px;

    font-size: 14px;

    line-height: 1.5;
}

.bot-message {
    background: white;

    margin-right: auto;

    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.user-message {
    background: #0d6b4d;

    color: white;

    margin-left: auto;
}


/* Quick buttons */

.chatbot-options {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    padding: 10px;

    background: white;

    border-top: 1px solid #dce5e1;
}

.chatbot-options button {
    border: 1px solid #dce5e1;

    background: white;

    color: #10201b;

    padding: 7px 10px;

    border-radius: 20px;

    cursor: pointer;

    font-size: 12px;
}

.chatbot-options button:hover {
    background: #f3f7f5;
}


/* Input */

.chatbot-input {
    display: flex;

    padding: 10px;

    background: white;

    border-top: 1px solid #dce5e1;
}

.chatbot-input input {
    flex: 1;

    border: 1px solid #dce5e1;

    border-radius: 20px;

    padding: 10px 13px;

    outline: none;

    font-size: 14px;
}

.chatbot-input button {
    width: 42px;
    height: 42px;

    margin-left: 7px;

    border: none;

    border-radius: 50%;

    background: #0d6b4d;

    color: white;

    cursor: pointer;

    font-size: 16px;
}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .chatbot {
        right: 15px;
        bottom: 15px;
    }

    .chatbot-box {
        position: fixed;

        left: 15px;
        right: 15px;

        bottom: 80px;

        width: auto;

        height: 70vh;

        max-height: 500px;
    }

    .chatbot-button {
        width: 55px;
        height: 55px;
    }
}