
/* === Global scale to approximate Chrome 80% zoom === */
html { zoom: 0.8; }              /* Chrome/Edge */
@supports not (zoom: 1) {
  body { transform: scale(0.8); transform-origin: top left; width: 125%; }
}
/* Ensure interactive elements remain crisp */
body { image-rendering: auto; text-rendering: optimizeLegibility; }
/* Keep sticky headers positioned correctly even with transforms */
header, nav, .visible-navigation, .hidden-navigation { transform: none !important; }
/* ================================================ */

body {
    margin: 0;
    padding: 0;
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    transition: 0.3s;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.233);;
    border-left-color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    display: inline-block;
    margin-top: 1.5em;
}
.hidden-navigation {
    display: none;
    flex-direction: column;
    text-align: center;
}
/* Styling for the mobile menu when it's toggled */
.menu-container-list {
    display: block;
    flex-direction: column;
    background-color: rgb(64 185 101); /* Slight background color for visibility */
    position: absolute;
    top: 10em; /* Adjust depending on the header height */
    right: 0;
    width: 100%;
    z-index: 100;;
}

.hidden-navigation a {
    margin-top: 3em;
}

/* Hamburger icon styling */
#hamburger-icon {
    display: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.login-signup-container {
    display: flex;
}

#slash-login-signup {
    padding: 0.3em;
}
#login:hover {
    padding-right: 2.5em;
}
#login i{
    padding-left: 4em;
}

#error-message {
    display: flex;
    justify-content: center;
    margin-top: 1.5em;
    color: white;
    font-weight: bold;
}
input:focus, textarea:focus {
    border: 1px solid white
}

input, textarea {
    transition: 0.2s;
    border-radius: 1em;
    border: none;
    padding: 1em;
    background:rgba(255, 255, 255, 0.233);
    resize: none;
}

input:focus, textarea:focus {
    outline:none;
}
input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.61);
}

input, textarea {
    color: white;
    font-weight: bold;
}
a {
    color: white;
    text-decoration: none !important;
}
a:hover {
    color: white;
}
.logo {
    display: flex;
}

.logo-image {
    margin: 2em;
}

.logo img {
    width: 4em;
    cursor: pointer;
    border-radius: 3em;
}

.hidden-menu-container {
    display: none;
    margin-left: 3em;
}

.app-icons {
    margin-top: 2em;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
}

.app-icon-container {
    background: #52b256;
    padding: 1em;
    border-radius:1.2em;
}

.app-icon-container {
    letter-spacing: 2px;
}

#gradient-canvas {
    position: absolute;
    z-index: -1;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top right, 
                var(--gradient-color-1), 
                var(--gradient-color-2), 
                var(--gradient-color-3), 
                var(--gradient-color-4));
}

:root {
    --gradient-color-1: #659966; /* Light green */
    --gradient-color-2: #81c784; /* Light medium green */
    --gradient-color-3: #66bb6a; /* Medium light green */
    --gradient-color-4: #4caf50; /* Rich green */
}



header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    border-radius: 3em;
}

header{
    margin-top: 3em;
    padding-left: 2em;
    padding-right: 2em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

header nav{
    display: flex;
    justify-content: center;
}

header nav li {
    list-style: none;
    margin-right: 3em;
    font-size: 1.2em;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

header nav a:nth-child(5) li {
    margin-right: 0.3em;
}
.profile-icon {
    margin-right: -3em;
    position: relative;
    cursor: pointer; /* Optional: Make the cursor a pointer */
}

.drop-down {
    margin-top: 2em;
    padding: 1em 0 1em 1em;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.233);
    border-radius: 1.5em;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.profile-icon:hover .drop-down {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop-down a li {
    margin-top: 0.5em;
}


header nav li:hover {
    transform: scale(1.1);
}
.center-header {
    display: flex;
    justify-content: center;
}

.home-p1 {
    display: flex;
    align-items: center;
    margin-top: 11em;
    margin-left: 7em;
    color: white;
    width: 40%;
    padding: 3em;
    border-radius:  1.5em ;
}
.home-p1-text-content {
    background-color: rgba(255, 255, 255, 0.233);
    padding: 3em 10em 3em 3em;
    border-radius: 1.5em;
}
.home-p1 p:nth-child(1) {
    font-size: 4em;
    font-weight:bold;
}

.home-p1 p:nth-child(2) {
    font-size: 2em;
    margin-top: 1em;
}
.home-p1 button { position: relative; overflow: hidden;
    font-size: 1.25em;
    margin-top: 2em;
}

.home-p2andp3 {
    margin-top: 20em;
    background-color: rgba(255, 255, 255, 0.233);

}
.home-p2-text-content {
    color: white;
    flex-direction: column;
    width:60%;
    border-radius: 1.5em;
    margin-left: 10em;
}
.home-p2-text-content :nth-child(1) {
    font-size: 3em;
    font-weight: bold;
}
.home-p2-text-content :nth-child(2) {
    font-size: 1.2em;
}
.home-p2 {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 5em;
    padding-top: 10em;

}
.home-p3-text-content {
    color: white;
    flex-direction: column;
    width:70%;
    margin-right: 10em;
    border-radius: 1.5em;
}

.home-p3-text-content :nth-child(1) {
    font-size: 3em;
    font-weight: bold;
}
.home-p3-text-content :nth-child(2) {
    font-size: 1.2em;
}
.home-p3 {
    display: flex;
    align-items: center;
    margin-top: 5em;
    padding: 5em;
    padding-bottom: 10em;
}

button {
    background-color: rgb(36, 170, 36);
    border: transparent;
    color: white;
    border-radius: 2em;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    transition: padding-right 0.2s;
    align-items: center;
    display: flex;
}

#cancel-button {
    background-color: white;
    color: rgb(36, 170, 36);
}
.home-p1 .fa-arrow-right{
  opacity: 0;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  transition: opacity .2s, transform .2s;
}
button:focus {
    outline: none;
}
button:hover {
    padding-right: 2.5em; 
}

button:hover .fa-arrow-right{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.example-analysis-container {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    right: 0;
    margin-right: 12em;
    border-radius: 1.5em;
    transition: 0.3s;
}
.example-analysis-container video {
    border-radius: 1.5em;
    transition: 0.3s;
}

.example-analysis-container:hover video{
    opacity:0.1;
}
.example-analysis-container:hover{
    background-color: rgba(255, 255, 255, 0.233);
    transition: 1s;
}

.example-analysis-container:hover button {
    opacity: 1;
    font-size: 1.5em;
}

.example-analysis-container button {
    position: absolute;
    opacity: 0;

}
.example-analysis-container .fa-arrow-right {
    opacity: 0;
    padding-left: 5em;
    transition: opacity 0.2s;
    position: absolute;
}



.home-p2-video-container, .home-p3-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.5em;
    transition: 0.3s;
    width: 60%;
}

.home-p2-video-container video, .home-p3-video-container video {
    width: 100%;
    border-radius: 1.5em;
    transition: 0.3s;
}
.home-p1-video-container video {
    border-radius:10em;
    transition: 0.3s;
}

.home-p2-video-container:hover video, .home-p3-video-container:hover video {
    opacity:0.1;
}

.home-p2-video-container:hover, .home-p3-video-container:hover {
    background-color: rgba(255, 255, 255, 0.233);
}

.home-p2-video-container button, .home-p3-video-container button {
    position: absolute;
    opacity: 0;
    font-size: 2em;
}
.home-p2-video-container:hover button, .home-p3-video-container:hover button {
    opacity: 1;
}

.home-p2-video-container .fa-arrow-right,.home-p3-video-container .fa-arrow-right {
    opacity: 0;
    padding-left: 5em;
    transition: opacity 0.2s;
    position: absolute;
}

.separate-header{
    width: 100%;
    margin-top: 3em;
    display: flex;
    justify-content: center;
    color: white;
    font-size: 5em;
    font-weight: bold;
}
.home-p4{
    color: white;
    display: flex;
    padding: 5em;
    
}

.home-p4-p1, .home-p4-p2, .home-p4-p3 {
    border: 2px solid rgba(255, 255, 255, 0.233);

}

.home-p4-p1 p:nth-child(1),.home-p4-p2 p:nth-child(1),.home-p4-p3 p:nth-child(1){
    font-size: 2em;
    font-weight: bold;
}
.home-p4-p1 p:nth-child(2),.home-p4-p2 p:nth-child(2),.home-p4-p3 p:nth-child(2){
    margin-top: 5em;
}

.home-p4-p2,.home-p4-p3{
    margin-left: 10em;
}
.home-p4-p1,.home-p4-p2,.home-p4-p3{
    padding: 4em 2em 4em 2em; 
    transition: 0.3s;
    border-radius: 1.5em;
}
.home-p4-p1:hover,.home-p4-p2:hover,.home-p4-p3:hover{
    background-color: rgba(255, 255, 255, 0.233);
    transform: scale(1.1);
}

.home-p4-box-header {
    display: flex;
    justify-content: space-between;
}
.home-p4-box-header i{
    font-size:3em;
}
footer {
    background-color: rgba(255, 255, 255, 0.233);
    margin-top: 10em;
    padding: 2em;
    color: white;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.content {
    flex: 1;
}

.footer-logo-container img {
    width: 100px;
}
.footer-menu-container {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
}
.footer-menu-container-p li:nth-child(1) {
    font-size: 1.5em;
    font-weight: bold;
}

.cover-container-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2em;
}

.cover-container-footer div:nth-child(2),.cover-container-footer div:nth-child(3), .cover-container-footer div:nth-child(4){
    margin-left: 10em;
}

.send-button-container, .forgot-password-register-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-password-register-container  {
    display: flex;
    justify-content: space-evenly;
}
.send-button-container button, .forgot-password-register-container button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-container, .login-form-container, .register-form-container, .forgot-password-form-container, .profile-form-container, .gen-ai-form-container {
    margin-top: 15em;
    display: flex;
    justify-content: space-evenly;
}


.contact-inputs, .login-inputs, .register-inputs, .forgot-password-inputs, .profile-inputs, .gen-ai-container-inputs, .reset-inputs {
    font-size: 1.2em;
    width: 30%;
    display: flex;
    flex-direction: column;
}
.contact-inputs button, .login-inputs button, .register-inputs button, .forgot-password-inputs button, .profile button, .gen-ai-container-inputs button{
    width: 50%;
}

.contact-inputs input, .contact-inputs textarea, .contact-inputs button, .login-inputs input, .login-inputs button, .register-inputs input, .register-inputs button, .register-inputs button, .forgot-password-inputs input, .forgot-password-inputs button, .profile-inputs input, .profile-inputs button, .gen-ai-container-inputs input, .gen-ai-container-inputs button, .reset-inputs input{
    margin-top:2em ;
} 
.contact-desc-container p:nth-child(1), .login-desc-container p:nth-child(1), .register-desc-container p:nth-child(1), .forgot-password-desc-container p:nth-child(1), .profile-desc-container, .gen-ai-desc-container p:nth-child(1) {
    font-size: 4em;
}

.contact-desc-container, .login-desc-container, .register-desc-container, .forgot-password-desc-container, .profile-desc-container, .gen-ai-desc-container{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-inputs .fa-arrow-right, .login-inputs .fa-arrow-right, .register-inputs .fa-arrow-right, .forgot-password-inputs .fa-arrow-right, .profile-inputs .fa-arrow-right, .gen-ai-container-inputs .fa-arrow-right{
    opacity: 0; 
    padding-left: 6em;
    transition: opacity 0.2s;
    position: absolute;
}
.forgot-password-register-container button:nth-child(1) .fa-arrow-right {
    padding-left: 10em;
}
.forgot-password-register-container button:nth-child(2) {
    margin-left: 1em;
}

.profile-inputs .fa-arrow-right {
    padding-left: 5em !important;
}


.functions-container {
    color: white;
    margin-top: 10em;
    display: flex;
    justify-content: space-evenly;
    list-style: none;

}

.functions-container div {
    padding: 3em 5em 3em 2em;
    border-radius: 1.5em;
    border: 2px solid rgba(255, 255, 255, 0.233);
    transition: 0.3s;
    cursor: pointer;
}

.functions-container div li p:nth-child(2){
    width: 20em;
}
.functions-container div li p:nth-child(1){
    font-size: 2em;
    font-weight: bold;
}

.functions-container div:hover {
    background-color: rgba(255, 255, 255, 0.233);
    transform: scale(1.1);
}

.many-more {
    display: flex;
    justify-content: center;
    font-size: 5em;
    color: white;
    margin-top: 3em;
}

.logo-animation {
    border-radius:4em;
}
.logo-animation:hover {
    cursor: pointer;
}
#fileupload {
    display: none;
}

#fileuploadlabel {
    display: flex;
    justify-content: space-evenly;
    color: white;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.233);
    padding: 1em 2em 1em 2em;
    border-radius:1.5em;
    cursor: pointer;

}
.otp-inputs-container,.reset-form-container{
    margin-top: 5em;
}
.otp-inputs-container input {
    border: 2px solid rgba(255, 255, 255, 0.233);
    font-size: 2em;
    border-radius: 0.5em;
    margin-left: 2em;
    text-align: center;
    width: 100px;
    height: 100px;
    transition: 0.1s;
}
.otp-inputs-container input:nth-child(1) {
    margin-left: 0em;
}
.otp-inputs-container input::-webkit-outer-spin-button,
.otp-inputs-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.OTP-desc-container, .reset-form-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 8em;
}

.OTP-desc-container p, .reset-form-desc p {
    font-size: 3em;
    color: white;
}

.OTP-form .send-button-container, .reset-inputs .send-button-container {
    margin-top: 3em;
    font-size: 1.5em;
}
.OTP-form .send-button-container .fa-arrow-right, .reset-inputs .send-button-container .fa-arrow-right{
    opacity: 0; 
    padding-left: 5.5em;
    transition: opacity 0.2s;
    position: absolute;
}
.OTP-form .send-button-container button:hover .fa-arrow-right, .reset-inputs .send-button-container button:hover .fa-arrow-right{
    opacity: 1;
}

.not-found-container {
    text-align: center;
    color: white;
    font-size: 3em;
    margin-top:5em;
    margin-bottom: 5em;
}

.blog-container {
    margin-top: 5em;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.blog-preview-container {
    transition: 0.3s;
    position: relative;
}

.blog-preview-container img {
    width: 60em;
    border-radius: 2em;
    /*border: 2px solid rgba(255, 255, 255, 0.233);*/
    transition: 0.3s;
}


.blog-preview-container:hover .title-container {
    padding-bottom:1em;
    background-color: white;
    color: green;
    
}

.blog-preview-container:hover {
    transform: scale(1.02);
}

.blog-preview-container:hover .title-container p span {
    display: block;
    animation: fadeInOut 1s forwards; 
}

.title-container {
    background-color: white;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    color: green;
    position: absolute;
    bottom: 0; /* Align the container to the bottom of the image */
    padding: 0.5em 2em;
    font-size: 2em; /* Adjust the font size to suit your design */
    border-bottom-right-radius: 0.8em;
    border-bottom-left-radius: 0.8em;
    font-weight: bold;
    text-align: center;
    width: calc(100% - 0.0em); /* Adjust the width to fit the image */
}

.title-container p span {
    display: none;
    font-size: 0.3em;
    margin-top: 1.5em;
    transition: opacity 0.3s ease-in-out;}

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


.first-blog-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 2em;
    color: white;
}

.first-blog-container h3 {
    margin-top: 3em;
}
.first-blog-container p {
    max-width: 90em;
}

.first-blog-container h4 {
    margin-top: 3em;
    font-size: 3em;
}

.results_container {
    display: flex;
    flex-direction: column;
    color: white;
    font-weight: bold;
    align-items: center;
}

.results_container img {
    width: 500px;
    text-align: center;
}
.results_container p {
    font-size: 2em;
}
.gen-ai-container-inputs img {
    width:500px;
    height:500px;
    align-self: center;
}


.bot-body {
    margin: 2em;
    color: black;
}
.bot-menu   {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.bot-home-header {
    display: flex;
    justify-content: center;
}
.bot-home-text {
    display: flex;
    align-items: center;
}
.bot-home-logo {
    margin-right: 2em;
}
.bot-home-header img {
    width: 5em;
}
.bot-home-header p {
    font-size: 3em;

}
.bot-menu  {
    margin-top: 10em;
}
.bot-menu li {
    list-style: none;
}

.bot-menu a {
    color: black !important;
    font-size: 5em;
}

.bot-menu a:nth-child(1), .bot-menu a:nth-child(2) {
    margin-right: 4em;
}


.preview-image-container {
    display: flex;
    justify-content: center;
}
.preview-image-container img {
    width: 500px;
    align-self: center;
}
.image-container {
    display: flex;
    justify-content: center;
}
.image-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5em;
    color: white;
}
#header-image-info {
    font-size: 5em;
    margin-bottom:1.5em;
}
#image-info-detail {
    font-size: 3em;
}

#overlay {
  position: absolute;
  display: none;
  background: rgba(255, 0, 0, 0.5);
  width: 500px;
  height: 500px;
  animation: slideAnimation 3s infinite;
}
@keyframes slideAnimation {
    0% {
        height: 0%; 
        width: 0%; 
    }
    20% {
        height: 500px; 
        width: 0%; 
    }
    40% {
        height: 500px; 
        width: 500px; 
    }
    80% {
        height: 0%; 
        width: 500px; 
    }
    100% {
        height: 0%; 
        width: 0%; 
    }
}

@media screen and (max-width: 1130px) {
    #slash-login-signup {
        padding: 1em;
    }
    footer {
        width: 100%;
    }
    #overlay {
        position: absolute;
        display: none;
        background: rgba(255, 0, 0, 0.5);
        width: 300px;
        height: 300px;
        animation: slideAnimation 3s infinite;
      }
      
    @keyframes slideAnimation {
        0% {
            height: 0%; 
            width: 0%; 
        }
        20% {
            height: 300px; 
            width: 0%; 
        }
        40% {
            height: 300px; 
            width: 300px; 
        }
        80% {
            height: 0%; 
            width: 300px; 
        }
        100% {
            height: 0%; 
            width: 0%; 
        }
    }
    body, .bot-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .bot-menu a:nth-child(1), .bot-menu a:nth-child(2){
        margin-right: 0em;
    }
    .separate-header {
        text-align: center;
        font-size: 2em;
    }
    .home-p3-text-content :nth-child(1), .home-p2-text-content :nth-child(1) {
        font-size: 2em;
    }
    .home-p3-text-content :nth-child(2), .home-p2-text-content :nth-child(2) {
        font-size: 1em;
    }
    .home-p2, .home-p3{
        display: flex;
        flex-direction: column;
        align-items: center ;
        padding: 3em 1.5em 3em 1.5em;
        text-align: center;
    }
    .home-p1-text-content {
        padding: 4em 10em;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .home-p2-text-content, .home-p3-text-content {
        width: 100%;
        margin:0 auto;
    }
    .home-p4{
        flex-direction: column;
        align-items: center;
    }
    .home-p4-p2, .home-p4-p3 {
        margin-top: 3em;
        margin-left: 0em;
    }
    .home-p1 {
        flex-direction: column;
        width: 100%;
        margin:5em 0em 0em 0em;
        padding: 0em;
    }
    .home-p4 {
        padding: 3em;
    }
    .example-analysis-container {
        position: relative;
        margin-right:0em;
        margin-top: 6em;
    }
    header {
        width: 100%;
    }
    #image-info-detail {
        font-size: 1em;
    }
    #hamburger-icon, .hidden-menu-container  {
        display: block;
    }
    .visible-navigation {
        display: none;
    }
    header nav li {
        margin: 0 auto;
        margin-bottom: 1.5em;
    }
    .register-form-container, .login-form-container, .forgot-password-form-container, .gen-ai-form-container, .profile-form-container, .contact-form-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;    
    }
    .register-inputs,.login-inputs, .forgot-password-inputs, .gen-ai-container-inputs, .profile-inputs, .contact-inputs{
        width: 100%;
    }
    .drop-down {
        display: none !important;
    }
    .profile-icon i{
        margin: 2em 2.5em 0em 0em;
    }
    .otp-inputs-container {
        display: flex;
        flex-direction: row;
    }
    .example-analysis-container video {
        width: 700px !important;
    }
    .first-blog-container {
        text-align: center;
    }
    .blog-container img{
        width: 350px;
    }
    .functions-container  {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        margin: 10em;
    }
    .functions-container div {
        padding: 3em 3em 3em 3em;
        text-align:center;
    }
    .functions-container div:nth-child(1){
        margin-top:3em;
    }
    .gen-ai-container-inputs img{
        width: 300px;
        height:300px;
        display: flex;
        align-self:center;
    }
    .otp-inputs-container input {
        font-size: 1em;
        margin-left: 1em;
        width:40px;
        height:40px;
    }
    .otp-input {
        padding:0;
    }
    .OTP-desc-container p {
        font-size: 2em;
        text-align: center;
    }
    .many-more {
        font-size: 2em;
    }
    .home-p1 p:nth-child(2) {
        font-size: 1.5em;
        text-align: center;}
    .home-p1 p:nth-child(1) {
        font-size: 3em;
        text-align: center;}
     
}


@media screen and (max-width: 1092px) {
    .home-p1 {
        width: 90%;
    }
    .contact-inputs, .login-inputs, .register-inputs, .forgot-password-inputs, .profile-inputs, .gen-ai-container-inputs, .reset-inputs {
        padding:0em 2em 0em 2em;
    }
    .home-p1-text-content {
        padding:4em 1em;
    }
    #gen-ai-text-input {
        font-size: 15px;
    }
    .functions-container div {
        padding : 3em 1em 3em 1em;
    }
    .home-p2-video-container video, .home-p3-video-container video {
        width:20em
    }
    .login-signup-container {
        flex-direction: column;
        align-items: center;
    }
    #login{
        margin-top: 0em;
    } 
    .cover-container-footer {
        flex-direction: column;
        align-items: normal;
    }
    .footer-menu-container {
        flex-direction: column;
    }
    .cover-container-footer div:nth-child(2), .cover-container-footer div:nth-child(3) {
        margin-left: 0em;
    }
    .footer-menu-container-p{
        margin-top: 5em;
    }
    .app-icons {
        flex-direction: column;
    }
    .app-icons div {
        margin-top: 2em;
    }
}


@media screen and (max-width: 784px) {
    .example-analysis-container video {
        width: 300px !important;
    }
}

.sale-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(216, 216, 216, 0.603);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    margin-top:1em;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: fit-content;
    margin-top: 2em;
    position: relative;
    top: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(211, 211, 211, 0.1);
  }

.sale-banner-container {
    display: flex;
    justify-content: center;
}

.recording-dot {
width: 10px;
height: 10px;
background-color: #ff3b30;
border-radius: 50%;
margin-right: 10px;
animation: pulse 1.5s infinite;
}

.sale-text {
font-size: 14px;
text-transform: uppercase;
font-weight: bolder;
}

@keyframes pulse {
0% {
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    opacity: 1;
}
70% {
    box-shadow: 0 0 0 10px rgba(255, 59, 48, 0);
    opacity: 0.8;
}
100% {
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    opacity: 1;
}
}



/* === Global Arrow Normalization === */
button { position: relative; overflow: hidden; }
button .fa-arrow-right {
  position: absolute !important;
  top: 50% !important;
  right: 1rem !important;
  transform: translate(8px, -50%) !important;
  transition: transform .2s ease, opacity .2s ease !important;
  opacity: 0;
  line-height: 1;
  display: inline-block;
  pointer-events: none;
}
button:hover .fa-arrow-right {
  opacity: 1;
  transform: translate(0, -50%) !important;
}
/* prevent layout shift for text inside buttons */
button i:not(.fa-arrow-right) { vertical-align: middle; }
/* ================================== */


/* === Arrow Hard Reset (neutralize legacy rules) === */
button .fa-arrow-right {
  left: auto !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
.example-analysis-container .fa-arrow-right,
.home-p1 .fa-arrow-right,
.contact-inputs .fa-arrow-right,
.login-inputs .fa-arrow-right,
.profile-inputs .fa-arrow-right,
.gen-ai-container-inputs .fa-arrow-right,
.OTP-form .send-button-container .fa-arrow-right,
.reset-inputs .send-button-container .fa-arrow-right {
  left: auto !important; right: 1rem !important;
  top: 50% !important; transform: translate(8px, -50%) !important;
  opacity: 0; position: absolute !important;
}
.example-analysis-container button:hover .fa-arrow-right,
.home-p1 button:hover .fa-arrow-right,
.contact-inputs button:hover .fa-arrow-right,
.login-inputs button:hover .fa-arrow-right,
.profile-inputs button:hover .fa-arrow-right,
.gen-ai-container-inputs button:hover .fa-arrow-right,
.OTP-form .send-button-container button:hover .fa-arrow-right,
.reset-inputs .send-button-container button:hover .fa-arrow-right {
  opacity: 1; transform: translate(0, -50%) !important;
}
/* ================================================ */
