.space-grotesk-font {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #ffffff;
    color: #000000;
    height: 100%;
    overflow-y: auto;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e0e0e0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
}

.navbar-brand, .navbar-nav .nav-link {
    color: #000000 !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: #555555 !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: 2px solid rgba(0,0,0,0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

main {
    padding-top: 80px;
}

.hero-section {
    padding-top: 80px;
    text-align: center;
}

.logo-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    background-color: #f0f0f0;
    border: 2px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000000;
    overflow: hidden;
}

.logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hero-text {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    padding: 1rem;
    max-width: 900px;
    max-height: 100px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #000000;
    border: 1px solid #000000;
}

.hero-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
    background: #ffffff;
    overflow: auto;
    height: 100%;
}

footer.navbar {
    background: #ffffff;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
    border-top: 1px solid #e0e0e0;
    padding: 10px 0;
    margin-top: auto;
}

footer .navbar-text {
    color: #000000 !important;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.video-wrapper {
    transition: all 1s ease;
    width: 25%;
    border: 1px solid #000000;
    border-radius: 15px;
    max-height:220px;
}

.video-wrapper-carousel {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}
  
.video-wrapper-carousel video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    object-fit: fill !important;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.video-container:hover .video-wrapper {
    transform: translateX(0);
}

.video-container .video-wrapper:first-child {
    transform: translateX(-50%);
}

.video-container .video-wrapper:last-child {
    transform: translateX(50%);
}

.video-container:hover .video-wrapper:hover {
    transform: scale(3.0);
    z-index: 1;
}

.video-container:hover .video-wrapper:last-child:hover {
    transform: translateX(-50%) scale(3.0);
    z-index: 1;
}

.video-container:hover .video-wrapper:first-child:hover {
    transform: translateX(50%) scale(3.0);
    z-index: 1;
}

.buttons-container {
    min-width: 50%;
    max-height: 600px;
    overflow-y: auto;
}

.popup {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.popup-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    animation: popup-appear 0.3s ease-out;
    border: 1px solid #000000;
}

@keyframes popup-appear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#email, #passkey {
    flex-grow: 1;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    color: #000000;
    background-color: #ffffff;
    outline: none;
    transition: box-shadow 0.3s ease;
    border: 1px solid #000000;
}

.email-form {
    display: hidden;
    flex-direction: column;
    gap: 20px;
}

.email-form h2 {
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    color: #000000;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

#result-message {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}
  
#result-message.fade-in {
    opacity: 1;
}
  
#result-message.fade-away {
    opacity: 0;
}

.submit-button {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.accordion-body {
    max-height: 50vh; 
    overflow-y: auto;
    padding: 1rem;
}
.code-textbox-container {
    display: flex;
    gap: 1rem;
    max-width: 100%;
    overflow-x: auto;
}
.code-container, .textbox-container {
    flex: 1;
    min-width: 45%;
}
pre {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 1em;
    white-space: pre-wrap;
    word-wrap: break-word;
    text-align: left;
    margin: 0;
}
code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    display: block;
}
.code-textbox {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 1em;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    resize: vertical;
}

.accordion {
	--bs-accordion-btn-color: black;
	--bs-accordion-btn-bg: white;
	--bs-accordion-active-color: black;
	--bs-accordion-active-bg: darkgray;
    --bs-accordion-btn-focus-box-shadow: none;
}

.spinner-wrapper {
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}

.dot-typing {
    position: relative;
    left: -9999px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #0002ff;
    color: #0002ff;
    box-shadow: 9984px 0 0 0 #0002ff, 9999px 0 0 0 #0002ff, 10014px 0 0 0 #0002ff;
    animation: dot-typing 1.5s infinite linear;
}
  
@keyframes dot-typing {
    0% {
      box-shadow: 9984px 0 0 0 #0002ff, 9999px 0 0 0 #0002ff, 10014px 0 0 0 #0002ff;
    }
    16.667% {
      box-shadow: 9984px -10px 0 0 #0002ff, 9999px 0 0 0 #0002ff, 10014px 0 0 0 #0002ff;
    }
    33.333% {
      box-shadow: 9984px 0 0 0 #0002ff, 9999px 0 0 0 #0002ff, 10014px 0 0 0 #0002ff;
    }
    50% {
      box-shadow: 9984px 0 0 0 #0002ff, 9999px -10px 0 0 #0002ff, 10014px 0 0 0 #0002ff;
    }
    66.667% {
      box-shadow: 9984px 0 0 0 #0002ff, 9999px 0 0 0 #0002ff, 10014px 0 0 0 #0002ff;
    }
    83.333% {
      box-shadow: 9984px 0 0 0 #0002ff, 9999px 0 0 0 #0002ff, 10014px -10px 0 0 #0002ff;
    }
    100% {
      box-shadow: 9984px 0 0 0 #0002ff, 9999px 0 0 0 #0002ff, 10014px 0 0 0 #0002ff;
    }
}

.footer {
    font-family: "Space Grotesk", sans-serif;
}
  
.footer h5 {
    font-weight: 600;
}
  
.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}
  
.footer a:hover {
    color: #555555 !important;
}
  
.footer .list-inline-item:not(:last-child) {
    margin-right: 1rem;
}
  
.footer .bi {
    font-size: 1.2rem;
}