body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.push-cta {
    position: fixed;
    bottom: 20px;
    left: 15px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.push-cta button {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url('./image.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    outline: none;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.3s ease;
    clip-path: circle(40% at 50% 50%);
}

.push-cta button:active {
    transform: scale(0.9);
}

.push-cta button:hover::after {
    content: "Click to register your interest";
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.push-cta button:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.push-cta button.released {
    transform: scale(1);
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.9em;
    z-index: 2;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.cta-link {
    color: #fff;
    cursor: pointer;
    margin-bottom: 5px;
    padding-left: 15px;
    opacity: 0;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.modal-content {
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    width: 300px;
    max-width: 100%;
    text-align: center;
    animation: fadeIn 0.5s;
    box-shadow: none;
    margin: 0;
    transform-style: none;
    perspective: none;
}

.modal-content h2,
.modal-content input,
.modal-content button {
    margin: 0;
    padding: 5px 0;
    border: none;
}

.input,
.button {
    border: none;
    padding: 10px;
    margin-bottom: 10px;
}

.modal-content-inner {
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.modal-content-front,
.modal-content-back {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
}

.modal-content-back {
    transform: rotateY(180deg);
}

.modal-content.flipped .modal-content-inner {
    transform: rotateY(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal input[type="text"],
.modal input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    background-color: #555;
    color: #fff;
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.modal input[type="text"]:focus,
.modal input[type="email"]:focus {
    outline: none;
    background-color: #666;
}

.modal button {
    background: #00ccff;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1em;
}

.modal button:hover {
    background: #0099cc;
}

.modal button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.thank-you-message {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    display: none;
    transition: opacity 0.4s ease-in-out, width 0.4s ease-in-out;
    margin-left: 10px;
    width: 0;
}

.thank-you-message.active {
    display: block;
    opacity: 1;
    width: 200px;
}

.scrolling-list {
    position: fixed;
    bottom: 0;
    right: 10px;
    width: 250px;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    perspective: 500px;
}

.scrolling-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    animation: continuousScroll 360s linear infinite; /* Adjust duration for desired speed */
}

.scrolling-content:hover {
    animation-play-state: paused;
}

@keyframes continuousScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%); /* Adjust to match the content height */
    }
}

.industry-heading {
    font-weight: bold; /* Bold for headings */
    font-size: 1.1em; /* Slightly larger font size for headings */
    margin-top: 10px;
    text-align: left;
    opacity: 1;
    color: #fff; /* Ensure text color is visible */
}

.industry-item {
    text-align: left; /* Align text to the left for indentation */
    opacity: 0.8;
    padding-left: 20px; /* Indent subcategories */
    font-size: 0.9em; /* Slightly smaller font size for non-headings */
    font-weight: normal; /* Normal weight for non-headings */
    color: #ccc; /* Slightly lighter color for subcategories */
}

.clock {
    display: flex;
    gap: 5px;
}

.flip-card {
    background: #333;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
    padding: 10px;
    width: 50px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.flip-card-back {
    transform: rotateX(180deg);
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: flex-start;
        font-size: 0.8em;
        padding: 10px;
    }

    .scrolling-list {
        width: 100%;
        height: 150px;
        bottom: auto;
        top: 20px;
        right: 0;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .push-cta {
        bottom: 100px;
    }

    .footer {
        font-size: 0.7em;
        padding: 5px 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .scrolling-list {
        height: 120px;
        font-size: 1em;
    }

    .flip-card {
        font-size: 0.8em;
        padding: 5px;
        width: 40px;
        height: 60px;
    }
}
