html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
}

.scroll-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}


.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #f7fafc;
    padding: 1.5rem;
    height: 100%;
    border-radius: 0.5rem;
}

.card-container .arrow {
    display: none;
}

#who-we-are {
    background-image: url('./src/svg/075\ Clean\ Mirror.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.footer-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.text-shadow {
    text-shadow: 0 4px 6px rgb(0 0 0 / 0.1), 0 2px 4px rgb(0 0 0 / 0.1);
}

.typewriter-input {
    border: none;
    outline: none;
    font-size: 1rem;
    color: #333;
}

.typewriter-input::placeholder {
    opacity: 0.7;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    margin-right: .5em;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.send-button {
    padding: 0.5rem 1rem;
    background: #0577b8;
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.send-button:hover {
    background: #046399;
}
  
  .logo-scroll-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
  }
  
  .logo-item {
    flex: 0 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-item img {
    height: 4em;
    object-fit: contain;
  }

  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .logo-banner-section:hover .logo-scroll-track {
    animation-play-state: paused;
  }
  
  .logo-scroll-track {
    will-change: transform;
  }
  
@media (max-height: 550px) {
    #header-title {
        margin-top: 20vh;
    }
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .logo-banner-section {
        padding: 2rem 0;
    }

    .logo-item {
        height: 7em;
        margin: 0 2rem;
    }

    .icon {
        margin-top: 1.5rem;
    }
}

.icon {
    margin-top: 1rem;
}

/* Hide scrollbar */
.logo-scroll::-webkit-scrollbar {
    display: none;
}

.logo-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .fast-buttons {
        padding-top: 1.5rem !important;
    }

    .chat-input {
        margin-top: 0rem !important;
    }
}

/* @media (max-height: 1050px) {
    .join-the-team-bg {
        display: none!important;
    } 
} */

@media (min-width: 1135px) {
    .card-container .arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .scroll-section {
        scroll-snap-align: none;
        padding: 60px 20px;
    }

    .scroll-container {
        scroll-snap-type: none;
    }

    .scrollbutton {
        display: none;
    }

    section:first-of-type {
        padding-top: 80px;
    }
}


@media (max-height: 768px) {
    .scrollbutton {
        display: none;
    }
    .scroll-section {
        scroll-snap-align: none;
        padding: 60px 20px;
    }

    .scroll-container {
        scroll-snap-type: none;
    }
}


