body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
}

.trusted-by {
    background-color: #b8ab7e;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.trusted-by .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.trusted-by .row {
    margin-left: -15px;
    margin-right: -15px;
}

.trusted-by .col-6,
.trusted-by .col-md-3 {
    padding-left: 15px;
    padding-right: 15px;
}

.trusted-by img {
    max-width: 100%;
    height: auto;
    max-height: 60px; 
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.trusted-by img:hover {
    filter: grayscale(0%);
}

.btn-primary {
    background-color: #b8ab7e;
    border-color: #293542 !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #293542 !important;
    border-color: white !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary > i {
    padding-right: 10px;
    color: #293542 !important;
}

.btn-primary:hover > i {
    color: #b8ab7e !important;
}

.content img {
    transition: transform 0.3s ease;
}

.content img:hover {
    transform: scale(1.05);
}

.reassurance {
    font-weight: 700;
}

.reassurance span {
    transition: transform 0.3s ease;
    font-size: 60px;
    color: seagreen;
}

.reassurance img:hover,
.reassurance span:hover {
    transform: rotate(5deg);
    cursor: default;
}

a {
    color: seagreen;
    transition: color 0.3s ease;
}

a:hover {
    color: #b8ab7e;
}

canvas {
    width: 100%;
    height: 300px;
    display: block;
}

.demo-form .card {
    border: none;
    border-radius: 15px;
}

.demo-form .card-title {
    font-size: 2rem;
    font-weight: bold;
}

.demo-form .form-control,
.demo-form .form-select {
    border-radius: 20px;
    padding: 10px 15px;
}

.demo-form .text-danger {
    font-size: 0.8rem;
}

.hero > p {
    font-size: 1.2rem;
    font-weight: 500;
}

.faq .accordion-button {
    font-weight: 600;
}

.faq .accordion-button:not(.collapsed) {
    color: seagreen;
    background-color: #e7f1ff;
}

.faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq .accordion-body {
    padding: 1rem;
    background-color: #f8f9fa;
}

.chatbot {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 720px;
    transition: box-shadow 0.3s ease;
}

@media (max-width: 767px) {
    .chatbot,
    .hero iframe {
        height: 360px !important;
    }
}

.chatbot.highlight {
    box-shadow: 0 0 20px #b8ab7e;
    animation: glow 1s infinite alternate;
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    background-color: #f8f9fa;
}

.bot-message, .user-message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 20px;
    max-width: 80%;
    font-weight: 500;
}

.bot-message {
    background-color: #e7f1ff;
    align-self: flex-start;
}

.user-message {
    background-color: #b8ab7e;
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.bot-message p, .user-message p {
    margin: 0;
}

.chat-input {
    display: flex;
    padding: 10px;
    background-color: white;
    position: relative;
}

.clicking-hand {
    position: absolute;
    right: 70px;
    top: -30px;
    font-size: 24px;
    animation: click-animation 1s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes click-animation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.chat-input input {
    flex-grow: 1;
    border: none;
    padding: 10px;
    border-radius: 20px;
    margin-right: 10px;
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.chat-input input:disabled {
    color: #666;
}

.chat-input button {
    background-color: #b8ab7e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.chat-input button:hover {
    background-color: #293542;
}

@keyframes glow {
    from { box-shadow: 0 0 20px #b8ab7e; }
    to { box-shadow: 0 0 80px #b8ab7e; }
}

.demo-explanation {
    font-size: 1rem !important;
    font-weight: 400 !important;
}

#logo-static, #logo-dynamic, #logo-cursor {
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1;
}

#logo-cursor {
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.btn-share {
    background-color: seagreen;
    color: white;
    border-color: #293542;
    transition: all 0.3s ease;
}

.btn-share:hover {
    background-color: #293542 !important;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
    border-bottom: 1px solid #e0e0e0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar .row {
    flex-wrap: nowrap;
    align-items: center;
}

.logo-column {
    display: flex;
    align-items: center;
    height: 46px;
}

.navbar-brand {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
}

.navbar .btn {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    margin-bottom: 0 !important;
}

.share-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.share-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
}

.share-content h3 {
    margin-top: 0;
}

.share-content ul {
    list-style-type: none;
    padding: 0;
}

.share-content li {
    margin-bottom: 10px;
}

.copy-link {
    display: flex;
    margin-bottom: 15px;
}

.copy-link input {
    flex-grow: 1;
    margin-right: 10px;
    padding: 5px;
}

.close-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-button:hover {
    background-color: #e0e0e0;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.btn-group .btn {
    position: relative;
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    margin-bottom: 5px;
}

.btn-group .btn-outline-primary {
    color: #b8ab7e;
    border-color: #b8ab7e;
}

.btn-group .btn-outline-primary:hover:not(.disabled),
.btn-group .btn-outline-primary:focus:not(.disabled),
.btn-group .btn-outline-primary.active {
    color: #fff;
    background-color: #b8ab7e;
    border-color: #b8ab7e;
}

.btn-group .btn-outline-primary.disabled {
    color: #6c757d;
    border-color: #6c757d;
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-group .btn-outline-primary.disabled:hover {
    background-color: transparent;
}

.btn-group .btn[data-bs-toggle="tooltip"] {
    position: relative;
}

.process-diagram {
    padding: 2rem 0;
}

.process-chain {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.step-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.process-arrow {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .process-chain {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    header.navbar {
      position: static !important;
    }
  
    main {
      margin-top: 0 !important;
      padding-top: 0.5rem !important;
    }
  }
  
  @media (min-width: 769px) {
    header.navbar {
      position: fixed !important;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1030;
    }
    main {
        margin-top: 2rem !important;
        padding-top: 3rem !important;
      }
  }