@import url('https://fonts.googleapis.com/css?family=Roboto:300');
@import url("https://fonts.googleapis.com/css?family=Lato:200,300,400,400i,700");
@import url("https://fonts.googleapis.com/css?family=Merriweather:200,400,400i,700");
@import url('https://fonts.googleapis.com/css?family=Montserrat');

:root {
    --primary-color: #b6b4b4;
    
    --secondary-color: #4d4c4c;
    --dark-bg: #000000;
    --gradient-bg: #000000;
    --glass-bg: rgba(0, 0, 0, 0.9);
    --blue-gradient: linear-gradient(90deg, #00d1ff, #0099ff, #0077ff);
  

}

body {
    background-color: var(--dark-bg);
    background-image: var(--gradient-bg);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer.footer {
    margin-top: auto;
    padding: 60px 0;
    background-color: rgba(10, 10, 32, 0.9);
    color: rgba(255, 255, 255, 0.7);
}

.navbar {
    background-color: rgba(10, 10, 32, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.nav-link {
    color: var(--primary-color) !important;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}


.hero-section {
    background: var(--glass-bg);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gradient-text {
    background: linear-gradient(90deg, #00d1ff, #ff00ff, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradient-animation 3s ease-in-out infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-wrapper {
    margin-top: 20px;
}

.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000;
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}




.num_container {
    width: 100vw;
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;

}    

.shadows {
    position: relative;
    text-transform: uppercase;
    text-shadow: -15px 5px 20px #5577aa;
    color: rgb(255, 253, 253);
    letter-spacing: -0.05em;
    font-family: 'Anton', Arial, sans-serif;
    user-select: none;
    font-size: 100px;
    transition: all 0.25s ease-out;

}

.shadows:hover {
    text-shadow: -16px 6px 15px #ced0d3;
}



.cost-benefits {
    padding: 100px 0;
    background-color: #ffffff;
    color: white;
    
}

.h2 {
    padding-top: 300%;
    font-size: 100%;
    text-align: center;
}

.metrics-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.metric {
    text-align: center;
    padding: 0 20px;
    flex: 1;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff00ff, #00d1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.metric-description {
    font-size: 1rem;
    color: #050505;
    margin: 0;
}



/* Live Senses Section */
.live-senses {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e1c9c, #dd3f76, #ff00ff); /* Gradient background */
    color: white;
    position: relative;
    overflow: hidden;
}

.live-senses-title {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff00ff, #ff7300, #ffd700); /* New gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 3s ease-in-out infinite;
}

.live-senses-subtitle {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    padding-top: 20px;
}

.live-senses-subtitle .highlight {
    font-weight: bold;
    font-style: italic;
    text-decoration: underline;
    background: linear-gradient(90deg, #ff00ff, #00d1ff, #ff4500, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300%;
    animation: moveGradient 5s ease-in-out infinite;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Background animation effect */
.live-senses:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate-bg 10s linear infinite;
    z-index: 0;
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .live-senses-title {
        font-size: 2rem;
    }

    .live-senses-subtitle {
        font-size: 1rem;
    }
}


/* Working Section with Dark Theme and Gradient Text */
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.working {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.working h1 {
    background: linear-gradient(90deg, #00d1ff, #ff00ff, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    animation: gradient-animation 3s ease-in-out infinite;
    padding-bottom: 10%;
    font-size: 2.5rem;
}

/* Style the code snippet container */
.benefits-list {
    max-width: 40%;
    text-align: left;
    margin-right: 20px;
}

.benefits-list h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: gray;
    background: white;
    padding: 5px 10px;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid lightgray;
    box-sizing: border-box;
    width: 0; /* Ensures the width starts at 0 for the typing effect */
}

.benefits-list h2.typing-active {
    animation: typing 6s steps(30, end) forwards, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 105%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: lightgray; }
}

.benefits-list p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
}

.image-snippet {
    display: flex;
    align-items: center;
    background-color: transparent; /* Ensure the background is transparent */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    width: 100%; /* Ensure it takes up the full width */
}

.image-snippet img.sensify-image {
    width: 100%; /* Adjust to make the image take up full width */
    height: auto;
    object-fit: cover; /* Cover the entire container without distortion */
    border: none; /* Remove any borders */
    background-color: transparent; /* Ensure no background color */
}




.code-snippet {
    flex-grow: 1;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    max-width: 50%; /* Adjust as necessary to control the width */
}

.command-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.command-header span {
    font-size: 0.9rem;
    color: #b6b4b4;
    text-transform: uppercase;
}

.copy-button {
    background-color: #333;
    color: #b6b4b4;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
}

.copy-button:hover {
    background-color: #444;
}

.command-content {
    word-wrap: break-word;
}

.scroll {
    padding: 20px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.scroll-animation-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animation-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll {
    padding: 20px;
    background: transparent;
}

.scroll1 img, .scroll2 img, .scroll3 img {
    max-width: 80%;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.scroll1 img:hover, .scroll2 img:hover, .scroll3 img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.scroll1 {
    text-align: left;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}




.scroll1 p {
    text-align: justify;
    padding-right:10px;
    font-size: 100%;
}

.scroll2 {
    text-align: right;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.scroll2 h2 {
    background: linear-gradient(90deg, #00d1ff, #ff00ff, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradient-animation 3s ease-in-out infinite;
    padding-left: 60px;
}

.scroll2 p {
    text-align: justify;
    padding-right:20px;
    font-size: 100%;

}

.scroll3 {
    text-align: left;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}
.scroll3 h2 {
    background: linear-gradient(90deg, #00d1ff, #ff00ff, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradient-animation 3s ease-in-out infinite;
}

.scroll1 p {
    text-align: justify;
    padding-right:20px;
    font-size: 100%;
}

.scroll > div {
    margin-bottom: 40px;
    background-color: transparent;
}

.scroll1, .scroll2, .scroll3 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll1.visible, .scroll2.visible, .scroll3.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll:hover {
    transform: scale(1.0); /* Slight scale on hover for interactivity */
    box-shadow: 0 12px 24px rgba(0, 102, 255, 0.5); /* Enhanced shadow on hover */
}


.vertical-strip {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 60px;
    background-color: rgba(8, 8, 8, 0.5); /* 50% transparency */
    box-shadow: inset -2px 0 5px rgba(0, 0, 0, 0.5); /* Embossed effect */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Shimmering Line */
.shimmering-line {
    position: fixed;
    top: 0;
    left: 60px; /* Positioned to the right of the vertical strip */
    height: 100%;
    width: 2px; /* Thin line */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    animation: shimmer 3s linear infinite;
    opacity: 0.5; /* 50% transparency */
}

@keyframes shimmer {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 100%;
    }
}

/* Additional Styles */
.social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.social-icons a {
    color: #ffffff; /* White color for icons */
    font-size: 24px;
    margin: 15px 0;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1.2rem;
    color: #ffffff;
    letter-spacing: 2px;
    margin-top: 20px;
    text-align: center;
}

.logo-container {
    margin-top: 10px; /* Space between the text and the logo */
    text-align: center;
}

.logo-container img {
    width: 40px; /* Adjust the size as needed */
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5)); /* Optional: Adds a slight shadow */
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.1); /* Slightly enlarges the logo on hover */
}

@keyframes lightMove {
    0% {
        background-position: 200%;
    }
    100% {
        background-position: -200%;
    }
}

.unlock-container {
    p {
        position: relative;
        padding: 0%;
        font-family: sans-serif;
        text-transform: uppercase;
        font-size: 1em;
        letter-spacing: 4px;
        overflow: hidden;
        background: linear-gradient(90deg, #000, #fff, #000);
        background-repeat: no-repeat;
        background-size: 200%;
        animation: lightMove 6s linear infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
    }
}

@media (max-width: 768px) {
    .navbar, .footer, .num_container, .metrics-container, .benefits-list, .scroll {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .scroll1 img, .scroll2 img, .scroll3 img, .scroll1 p, .scroll2 p, .scroll3 p {
        max-width: 100%;
        padding: 0 10px;
    }

    .scroll {
        padding: 10px;
    }

    .navbar, .footer {
        padding: 10px 0;
    }

    .vertical-strip {
        width: 40px;
    }

    .shimmering-line {
        left: 40px;
        width: 1px;
    }

    .social-icons a {
        font-size: 18px;
    }

    .vertical-text {
        font-size: 1rem;
    }

    .logo-container img {
        width: 30px;
    }

    .metrics-container {
        flex-direction: column;
    }

    .metric {
        margin-bottom: 20px;
    }

    footer.footer {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .marquee-content {
        gap: 20px;
    }

    .signup-card, .signin-card {
        max-width: 300px;
        padding: 20px;
    }

    .signin-container, .signup-container {
        height: auto;
        padding: 20px;
    }

    .signin-card h2, .signup-card h2 {
        font-size: 1.5rem;
    }

    .signin-card .form-control, .signup-card .form-control, .signup-card .form-select {
        font-size: 0.9rem;
        padding: 8px;
    }

    .error-message, .processing-message {
        font-size: 0.8rem;
        padding: 5px;
    }
}

@media (max-width: 768px) {
    .scroll1, .scroll2, .scroll3 {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .scroll1 h2, .scroll2 h2, .scroll3 h2 {
        font-size: 1.5rem;
    }

    .scroll1 p, .scroll2 p, .scroll3 p {
        font-size: 1rem;
        text-align: center;
        padding: 10px;
    }

    .scroll1 img, .scroll2 img, .scroll3 img {
        max-width: 100%;
        height: auto;
        margin-top: 10px;
    }

    .benefits-list {
        min-width : 100%
    }
}

@media (max-width: 768px) {
    .metrics-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .metric-number {
        font-size: 2rem;
    }

    .metric-description {
        font-size: 1rem;
    }
}


@media (max-width: 768px) {
    .working {
        padding: 20px 10px;
    }

    .working h1 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .scroll1, .scroll2, .scroll3 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .code-snippet {
        max-width: 100%;
        font-size: 0.9rem;
        padding: 10px;
    }

    .code-snippet img {
        max-width: 100%;
        height: auto;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .features {
        flex-direction: column; /* Stack the feature boxes vertically */
        align-items: stretch; /* Ensure boxes stretch to the full width */
        padding: 10px;
    }

    .features .feature-box {
        width: 100%; /* Make the feature box take the full width */
        text-align: left; /* Align text to the left */
        padding: 20px;
        box-sizing: border-box; /* Include padding in width calculation */
        margin-bottom: 20px; /* Add space between stacked boxes */
        min-width: 100%; /* Ensure there's no maximum width limitation */
    }

    .feature-box h3, .feature-box p {
        width: 100%; /* Ensure text spans the full width of the box */
        text-align: left; /* Align text within the box to the left */
    }
}








.marquee-section {
    padding: 50px 0;
    background-color: #000; /* Black background */
    border-top: 2px solid #2a2a2a; /* Thin border to separate sections */
}

.marquee-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff; /* White text color */
    margin-bottom: 30px;
}

.marquee {
    display: flex;
    overflow: hidden;
    position: relative; /* Ensure relative positioning for the duplicate */
    user-select: none;
    background-color: #000; /* Ensures the background is black */
}

.marquee-content {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px; /* Gap between icons */
    animation: scrolling 15s linear infinite;
    white-space: nowrap; /* Ensures items stay in one line */
}

.marquee-content-duplicate {
    position: absolute;
    top: 0;
    left: 100%; /* Start the duplicate content just off the right edge */
    animation: scrolling-duplicate 15s linear infinite;
}

.marquee-content li img {
    width: 120px; /* Set the desired icon size */
    height: auto;
}

@keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}





.testimonials-section {
    padding: 80px 0;
    background-color: #111;
    color: #ffffff;
    text-align: center;
}

.testimonials-wrapper {
    width: 80%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1s ease-in-out;
    min-height: 150px; /* Adjust this value to make the section taller */
}

.testimonial-item {
    min-width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item p {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.testimonial-item h4 {
    font-size: 1.3rem;
    color: #00d4ff;
    font-weight: 700;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 20px; /* Add padding to move the arrows outside the slides */
    z-index: 2; /* Ensure the arrows stay on top of everything */
}

.carousel-controls span {
    pointer-events: all;
    font-size: 2.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.carousel-controls span:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-controls .prev-btn {
    left: -60px; /* Move the previous button to the left of the slide */
    position: absolute;
}

.carousel-controls .next-btn {
    right: -60px; /* Move the next button to the right of the slide */
    position: absolute;
}




  .features {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 80px 40px;
    background: var(--glass-bg);
    text-align: center;
    gap: 30px; /* Gap between boxes */
    max-width: 1400px; /* Limit the maximum width of the container */
    margin: 0 auto; /* Center the container horizontally */
}

.features .feature-box {
    background: #111111; /* Dark background for the boxes */
    color: #ffffff;
    padding: 20px;  
    border-radius: 15px;
    width: 30%; /* Adjust width to fit 3 boxes evenly within the container */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 2px solid transparent; /* Initial border */
    position: relative;
    
}

.features .feature-box:hover {
    border-image: linear-gradient(135deg, #00d4ff, #ff00ff, #ff4500) 1; /* Gradient border */
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6); /* Glow effect */
}

.features h3 {
    color: linear-gradient(135deg, #00d4ff, #ff00ff, #ff4500) 1;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 20px;
}

.features p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    padding: 20px;
}



.logo-container {
    p {
        position: relative;
        padding: 2%;
        font-family: sans-serif;
        text-transform: uppercase;
        font-size: 1em;
        letter-spacing: 4px;
        overflow: hidden;
        background: linear-gradient(90deg, #000, #fff, #000);
        background-repeat: no-repeat;
        background-size: 80%;
        animation: animate 6s linear infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);
      }
      
}
  
@keyframes animate {
    0% {
      background-position: -500%;
    }
    100% {
      background-position: 500%;
    }
  }

.sp-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0;
}

.sp-text .box {
    position: relative;
    width: 320px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 30px;
    transition: 0.5s;
}

.sp-text .box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50px;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
}

.sp-text .box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50px;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
    filter: blur(30px);
}

.sp-text .box:hover:before,
.sp-text .box:hover:after {
    transform: skewX(0deg);
    left: 20px;
    width: calc(100% - 90px);
}

.sp-text .box:nth-child(1):before,
.sp-text .box:nth-child(1):after {
    background: linear-gradient(315deg, #1e1c9c, #dd3f76);
}

.sp-text .box:nth-child(2):before,
.sp-text .box:nth-child(2):after {
    background: linear-gradient(315deg, #03a9f4, #e7598b);
}

.sp-text .box:nth-child(3):before,
.sp-text .box:nth-child(3):after {
    background: linear-gradient(315deg, #bdc0bc, #00d0ff);
}

.sp-text .box span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    pointer-events: none;
}

.sp-text .box span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.5s;
    animation: animate 2s linear infinite;
}

.sp-text .box:hover span::before {
    top: -35px;
    left: 35px;
    width: 85px;
    height: 85px;
    opacity: 1;
}

.sp-text .box span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.5s;
    animation: animate 2s linear infinite;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    animation-delay: -1s;
}

.sp-text .box:hover span::after {
    bottom: -35px;
    right: 100px;
    width: 85px;
    height: 85px;
    opacity: 1;
}

@keyframes animate {
    0%, 100% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.sp-text .box .content {
    position: relative;
    left: -20px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: 0.5s;
    z-index: 1;
    color: #fff;
}

.sp-text .box:hover .content {
    left: -60px;
}

.sp-text .box .content h2 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 10px;
}

.sp-text .box .content p {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.4em;
}

.sp-text .box .content .sp-text-link {
    display: inline-block;
    font-size: 1.1em;
    color: #111;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 5px;
}


/* Signup Form Container */
.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    background-color: var(--dark-bg);
}

.signup-card {
    background-color: #111;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
}

.signup-card h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.signup-card form {
    width: 100%;
}

.signup-card .mb-3 {
    margin-bottom: 20px;
}

.signup-card .form-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.signup-card .form-control, .signup-card .form-select {
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    font-size: 1rem;
}

.signup-card .form-check-input {
    margin-right: 10px;
}

.signup-card .form-check-label {
    font-size: 0.9rem;
}

.signup-card .btn {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #333;
    color: #fff;
    transition: background-color 0.3s ease;
}

.signup-card .btn:hover {
    background-color: #444;
}

.signup-card .login-link {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.signup-card .login-link a {
    color: #00d1ff;
}

.signup-card .login-link a:hover {
    text-decoration: underline;
}


/* Sign-In Form Container */
.signin-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 260px);
    padding: 20px;
    background-color: var(--dark-bg);
}

.signin-card {
    background-color: #111;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.signin-card h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.signin-card .subtitle {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.signin-card .input-group {
    margin-bottom: 20px;
}

.signin-card .form-control {
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    font-size: 1rem;
}

.signin-card .form-check-input {
    margin-right: 10px;
}

.signin-card .form-check-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.signin-card .btn {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #333;
    color: #fff;
    transition: background-color 0.3s ease;
}

.signin-card .btn:hover {
    background-color: #444;
}

.signin-card .signup-link {
    margin-top: 20px;
    font-size: 0.9rem;
}

.signin-card .signup-link a {
    color: #00d1ff;
}

.signin-card .signup-link a:hover {
    text-decoration: underline;
}

/* Error message styles with a glowing gradient effect on the text */
.error-message {
    display: block;
    color: transparent;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1rem;
    background: none;
    background-image: linear-gradient(45deg, #ff0000, #ff4f4f, #ff6f6f, #ff8f8f, #ff0000);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    animation: glowing-text 3s ease-in-out infinite, fadeOut 5s ease-in-out forwards;
}

/* Glowing animation */
@keyframes glowing-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Fade out animation */
@keyframes fadeOut {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}


.processing-message {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 10px;
    margin-bottom: 20px;
    animation: glowingProcessingText 20s linear infinite, fadeOut 7s ease-in-out forwards;
    text-align: right; /* Align the text to the right */
}

@keyframes glowingProcessingText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}



