.chat-screen {
    position: fixed;
    bottom: 68px;
    right: 20px;
    z-index: 9999;
    width: 360px;
    background: #141414;
    box-sizing: border-box;
    border-radius: 16px;
    box-shadow: 0px 15px 40px rgba(0, 178, 149, 0.4), 0px 5px 15px rgba(0, 0, 0, 0.3);
    visibility: hidden;
    border: 1px solid rgba(0, 178, 149, 0.3);
    overflow: hidden;
}
.chat-screen.show-chat {
    -moz-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    visibility: visible;
    bottom: 90px;
}
@media only screen and (max-width: 600px) {
    .chat-screen {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
    }
}
.chat-screen .chat-header {
    background: linear-gradient(135deg, #00B295 0%, #3A86FF 100%);
    border-radius: 15px 15px 0 0;
    padding: 15px;
    display: block;
}
.chat-screen .chat-header .chat-header-title {
    letter-spacing: 1px;
    display: flex;
    width: calc(100% - 50px);
    color: #EAEAEA;
    font-size: large;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.chat-screen .chat-header .chat-header-option {
    display: inline-block;
    width: 44px;
    color: black;
    font-size: 14px;
    text-align: right;
}
.chat-screen .chat-header .chat-header-option .dropdown .dropdown-toggle svg {
    color: black;
}
.chat-screen .chat-mail {
    padding: 20px;
    display: block;
    background: #141414;
}
.chat-screen .chat-mail .row {
    margin: 0;
}
.chat-screen .chat-mail .col-md-12 {
    padding: 0;
}
.chat-screen .chat-mail input.form-control {
    border-radius: 8px;
    border: 1px solid rgba(234, 234, 234, 0.2);
    background: rgba(10, 10, 10, 0.6);
    color: #EAEAEA;
    font-size: 14px;
    padding: 0.70rem 1rem;
    z-index: 2;
    transition: all 0.3s ease;
    width: 100%;
}
.chat-screen .chat-mail input.form-control:focus {
    box-shadow: 0 0 0 2px rgba(0, 178, 149, 0.3);
    border: 1px solid #00B295;
    background: rgba(10, 10, 10, 0.8);
    outline: none;
}
.chat-screen .chat-mail input.form-control::placeholder {
    color: rgba(234, 234, 234, 0.5);
}
.chat-screen .chat-mail .select2 .selection .select2-selection .select2-selection__rendered {
    border-radius: 30px;
    border: 1px solid #e1e1e1;
    height: calc(1.28em + 1.28rem + 2px);
    padding: 9px 20px;
    font-size: 14px;
}
.chat-screen .chat-mail .select2.select2-container--open .selection .select2-selection {
    box-shadow: none;
    border-radius: 30px;
}
.chat-screen .chat-mail button {
    background: linear-gradient(135deg, #00B295 0%, #3A86FF 100%);
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    color: #EAEAEA;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    cursor: pointer;
}
.chat-screen .chat-mail button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 178, 149, 0.4);
}
.chat-screen .chat-mail button:active {
    transform: translateY(0);
}
.question {
    background: linear-gradient(135deg, #00B295 0%, #3A86FF 100%);
    border: none;
    padding: 0.58rem 1.25rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}
.chat-screen .chat-mail .form-group {
    margin-bottom: 0.8rem;
}
.chat-screen .chat-mail .mb-2 {
    margin-bottom: 0.5rem !important;
}
.chat-screen .chat-body {
    padding: 16px;
    display: inline-block;
    min-height: 420px;
    max-height: 420px;
    background: #0a0a0a;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}
.chat-screen .chat-body::-webkit-scrollbar {
    width: 6px;
}
.chat-screen .chat-body::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.5);
}
.chat-screen .chat-body::-webkit-scrollbar-thumb {
    background: rgba(0, 178, 149, 0.5);
    border-radius: 3px;
}
.chat-screen .chat-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 178, 149, 0.7);
}

.is-invalid {
    border: 1px solid #FF6B35 !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}
.error-text {
    font-size: 12px;
    color: #FF6B35;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

@media only screen and (max-width: 600px) {
    .chat-screen .chat-body {
        min-height: 450px;
        max-height: 450px;
    }
}

.chat-screen .chat-body .chat-start {
    border: 1px solid rgba(0, 178, 149, 0.3);
    width: 150px;
    border-radius: 50px;
    padding: 6px 10px;
    font-size: 13px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 15px;
    background: rgba(0, 178, 149, 0.1);
    color: #00B295;
}
.chat-screen .chat-body .chat-bubble {
    font-size: 13.5px;
    padding: 10px 14px;
    box-shadow: none;
    display: inline-block;
    clear: both;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 85%;
    word-wrap: break-word;
    line-height: 1.5;
}
.chat-screen .chat-body .chat-bubble.you {
    background: linear-gradient(135deg, rgba(0, 178, 149, 0.18) 0%, rgba(58, 134, 255, 0.18) 100%);
    border: 1px solid rgba(0, 178, 149, 0.35);
    color: #EAEAEA;
    border-radius: 2px 14px 14px 14px;
    align-self: flex-start;
    display: table;
}
.chat-screen .chat-body .chat-bubble.you img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 8px;
}
.chat-screen .chat-body .chat-bubble.you a {
    color: #3A86FF;
    text-decoration: underline;
    word-break: break-all;
}
.chat-screen .chat-body .chat-bubble.you a:hover {
    color: #00B295;
}
.chat-screen .chat-body .chat-bubble.you b {
    color: #00B295;
    font-weight: 600;
}
.chat-screen .chat-body .chat-bubble.me {
    background: rgba(58, 134, 255, 0.25);
    border: 1px solid rgba(58, 134, 255, 0.45);
    color: #EAEAEA;
    border-radius: 14px 2px 14px 14px;
    float: right;
    align-self: flex-end;
    display: table;
}
.chat-screen .chat-input {
    width: 100%;
    position: relative;
    margin-bottom: -5px;
}
.chat-screen .chat-input input {
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    padding: 15px 70px 15px 15px;
    border-radius: 0 0 15px 15px;
    resize: none;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: rgba(234, 234, 234, 0.1);
    color: #EAEAEA;
    font-weight: normal;
    font-size: 13px;
    transition: border-color 0.5s ease;
}
.chat-screen .chat-input input:focus {
    border-color: rgba(0, 178, 149, 0.5);
}
.chat-screen .chat-input input::placeholder {
    color: rgba(234, 234, 234, 0.4);
}
.chat-screen .chat-input input:focus + .input-action-icon a svg.feather-send {
    color: #00B295;
}
.chat-screen .chat-input .input-action-icon {
    width: 61px;
    white-space: nowrap;
    position: absolute;
    z-index: 1;
    top: 15px;
    right: 15px;
    text-align: right;
}
.chat-screen .chat-input .input-action-icon a {
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.chat-screen .chat-input .input-action-icon a:hover {
    transform: scale(1.1);
}
.chat-screen .chat-input .input-action-icon a svg {
    height: 18px;
    width: 18px;
    color: #00B295;
}
.chat-screen .chat-session-end {
    display: block;
    width: 100%;
    padding: 25px;
}
.chat-screen .chat-session-end h5 {
    font-size: 17px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}
.chat-screen .chat-session-end p {
    font-size: 14px;
    text-align: center;
    margin: 20px 0;
}
.chat-screen .chat-session-end .rate-me {
    width: 120px;
    margin: 40px auto;
}
.chat-screen .chat-session-end .rate-me .rate-bubble {
    display: inline-block;
    text-align: center;
    width: 50px;
}
.chat-screen .chat-session-end .rate-me .rate-bubble span {
    height: 50px;
    width: 50px;
    text-align: center;
    display: block;
    line-height: 46px;
    cursor: pointer;
    transition: transform 0.5s ease;
    margin-bottom: 7px;
}
.chat-screen .chat-session-end .rate-me .rate-bubble span:hover {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}
.chat-screen .chat-session-end .rate-me .rate-bubble.great {
    margin-right: 12px;
    color: #43cc6c;
}
.chat-screen .chat-session-end .rate-me .rate-bubble.great span {
    background: #43cc6c;
    border-radius: 50px 50px 0 50px;
}
.chat-screen .chat-session-end .rate-me .rate-bubble.bad {
    color: #ef4252;
}
.chat-screen .chat-session-end .rate-me .rate-bubble.bad span {
    background: #ef4252;
    border-radius: 50px 50px 50px 0;
}
.chat-screen .chat-session-end .transcript-chat {
    display: block;
    text-align: center;
    margin-top: 80px;
    color: #0768f8;
    text-decoration: underline;
    line-height: 20px;
}
.chat-screen .powered-by {
    margin-top: 15px;
    text-align: center;
    font-size: 11px;
    color: rgba(234, 234, 234, 0.6);
}
.chat-screen .powered-by a {
    color: #00B295;
    text-decoration: none;
    transition: color 0.3s ease;
}
.chat-screen .powered-by a:hover {
    color: #3A86FF;
}
.chat-bot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 60px;
    width: 60px;
    background: linear-gradient(135deg, #00B295 0%, #3A86FF 100%);
    z-index: 9999;
    border-radius: 30px;
    box-shadow: 0px 10px 25px rgba(0, 178, 149, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.chat-bot-icon:hover {
    transform: scale(1.1);
    box-shadow: 0px 15px 30px rgba(0, 178, 149, 0.6);
}
.chat-bot-icon img {
    display: none;
}
.chat-bot-icon .shk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}
.chat-bot-icon svg {
    color: #fff;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    opacity: 0;
    z-index: -1;
    width: 26px;
    height: 26px;
}
.chat-bot-icon svg.animate {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 1;
    z-index: 1;
}

.chat-body {
    overflow: auto;
}
.response, .error-phone {
    display: none;
}
.error-phone p{
    color: #FF6B35;
    font-size: 13px;
    font-weight: 500;
}
.chat-screen .form-heading p {
    color: #EAEAEA;
    font-size: 13.5px;
    line-height: 1.5;
}
.chat-screen .successMsg {
    color: #00B295;
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    background: rgba(0, 178, 149, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 178, 149, 0.3);
}
.kmp {
    margin-bottom: 10px;
}

.brochure-btn, .contact-sales, .not-interested{
    margin: 5px 3px;
    padding: 10px 16px;
    font-size: 12.5px;
    border: 1px solid rgba(0, 178, 149, 0.4);
    color: #EAEAEA;
    background: linear-gradient(135deg, rgba(0, 178, 149, 0.2) 0%, rgba(58, 134, 255, 0.2) 100%);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
}
.brochure-btn:hover, .contact-sales:hover, .not-interested:hover {
    background: linear-gradient(135deg, #00B295 0%, #3A86FF 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 178, 149, 0.5);
    border-color: rgba(0, 178, 149, 0.6);
}
.brochure-btn:active, .contact-sales:active, .not-interested:active {
    transform: translateY(0);
}

.main-menu-btn {
    margin: 4px 3px;
    padding: 9px 14px;
    font-size: 12px;
    border: 1px solid rgba(0, 178, 149, 0.35);
    color: #EAEAEA;
    background: rgba(0, 178, 149, 0.15);
    border-radius: 7px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
}
.main-menu-btn:hover {
    background: linear-gradient(135deg, #00B295 0%, #3A86FF 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 178, 149, 0.4);
    border-color: rgba(0, 178, 149, 0.5);
}
.main-menu-btn:active {
    transform: translateY(0);
}
.enquire-form{
    margin-top: 15px;
}
.go-back {
    cursor: pointer;
    color: rgba(234, 234, 234, 0.7);
    transition: color 0.3s ease;
    font-size: 12px;
}
.go-back:hover {
    color: #00B295;
}
.form-fields {
    height: auto;
    margin-bottom: 15px;
}
/* beforeSend animation start */
.chatbot-beforsend{
    margin: 20px 0px;
    height: 30px;
    width: 30px;
    display: inline-block;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background-color:#ff69b4;
    animation:pulse 1500ms infinite;
}

@keyframes pulse{
    0%{
        box-shadow:#ff69b4 0 0 0 0;
    }
    75%{
        box-shadow:#ff69b400 0 0 0 16px;
    }
}
/* beforeSend animation End */

/* successMsg animation start */
.chatbot-wrapper{
    /* height:100vh; */
    display:contents;
    justify-content:center;
    align-items:center;
    background-color:#eee
}
.checkmark__circle{
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 1.2s cubic-bezier(0.65, 0, 0.45, 1) forwards
}
.checkmark{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .8s ease-in-out .8s forwards, scale .6s ease-in-out 1.8s both
}
.checkmark__check{
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 1.8s forwards
}
@keyframes stroke{
    100%{
        stroke-dashoffset: 0
    }
}
@keyframes scale{
    0%, 100%{
        transform: none
    }
    50%{
        transform: scale3d(1.1, 1.1, 1)
    }
}
@keyframes fill{
    100%{
        box-shadow: inset 0px 0px 0px 30px #7ac142
    }
}
/* successMsg animation end */

/* from main.css */
.btn-rounded {
    -webkit-border-radius: 1.875rem !important;
    -moz-border-radius: 1.875rem !important;
    -ms-border-radius: 1.875rem !important;
    -o-border-radius: 1.875rem !important;
    border-radius: 1.875rem !important;
}

.hide{
    display: none !important;
}
.cursor-pointer {
    cursor: pointer;
}



/* Second Button */

.main-menu-btn, .brochure-btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;    
    /* position: relative;
    transition: all .35s ease-Out; */
}

.main-menu-btn a, .brochure-btn a {
    color: black;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: all .35s ease-Out;
}

#slide {
    width: 100%;
    height: 100%;
    left: -200px;
    background: #FFF;
    position: absolute;
    transition: all .35s ease-Out;
    bottom: 0;
}

.main-menu-btn:hover #slide, .brochure-btn:hover #slide {
    left: 0;
}

.main-menu-btn:hover a, .brochure-btn:hover a {
    color: #2D3142;
}

/* .cta {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 2px solid red;
    background-color: red;
    color: #fff;
    transition: width 0.7s;
  } */
  /* .chat-bot-icon:hover {
    width: 180px;
    transition: width 0.7s;
  }
  
  .chat-bot-icon svg {
    opacity: 1;
    transition: opacity 0.5s
  } */
  
  /* .chat-bot-icon:hover svg {
    opacity: 0;
    transition: opacity 0.5s
  } */
  
  /* .chat-bot-icon .button-text {
    opacity: 0;
    transition: opacity .5s;
    position: absolute;
    width: 100%;
    left: 0;
   }
  
  .chat-bot-icon:hover .button-text {
    opacity: 1;
    transition: opacity 0.5s
  } */



.shk {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    animation-name: shakeMe;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes shakeMe {
    2%, 18% {
        transform: translate3d(-10px, 0, 0);
    }

    4%, 16% {
        transform: translate3d(10px, 0, 0);
    }

    6%, 10%, 14% {
        transform: translate3d(-10px, 0, 0);
    }

    8%, 12% {
        transform: translate3d(10px, 0, 0);
    }
    
    18.1% {
        transform: translate3d(0px, 0, 0);
    }
}