﻿/* Base styles */
/* Critical styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 1rem;
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}

/* Logo container styles */
.logo-container {
    height: 80px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

    .logo-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Prevent content shift */
.container {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* RTL support */
html[dir="rtl"] .space-x-4 > * + * {
    margin-right: 1rem;
    margin-left: 0;
}

/* Icon container styles */
.icon-container {
    width: 96px;
    height: 96px;
    margin: 0 auto;
}

    .icon-container > div {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-container svg {
        width: 48px;
        height: 48px;
    }

/* Critical form styles */
#phoneInputContainer, #pinInputContainer {
    display: flex;
    align-items: center;
    border: 2px solid;
    border-radius: 9999px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 340px;
}

.phone-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    color: #374151;
}

#submit_link {
    width: 340px;
}
/* Loading spinner */
.spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid white;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Font loading optimization */
@font-face {
    font-family: 'Tajawal';
    font-display: swap;
    font-weight: 400;
    src: local('Tajawal');
}

@font-face {
    font-family: 'Tajawal';
    font-display: swap;
    font-weight: 500;
    src: local('Tajawal Medium');
}

@font-face {
    font-family: 'Tajawal';
    font-display: swap;
    font-weight: 700;
    src: local('Tajawal Bold');
}

/* Additional critical styles */
.container {
    max-width: 28rem;
    margin: 0 auto;
}

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    /*justify-center: center;*/
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-reverse {
    flex-direction: row-reverse;
}

.rounded-full {
    border-radius: 9999px;
}

.bg-white {
    background-color: white;
}

.text-white {
    color: white;
}

.font-bold {
    font-weight: 700;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.p-4 {
    padding: 1rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-gray-700 {
    color: #374151;
}

.bg-gray-100 {
    background-color: #F3F4F6;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.transform {
    transform: translateZ(0);
}

.rotate-12 {
    transform: rotate(12deg);
}

.-rotate-12 {
    transform: rotate(-12deg);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-teal-400 {
    --tw-gradient-from: #40E0D0;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 224, 208, 0));
}

.to-teal-500 {
    --tw-gradient-to: #48D1CC;
}

.min-h-screen {
    /*min-height: 90vh;
    max-height: 90vh;*/
}

.relative {
    position: relative;
}

.hidden {
    display: none;
}

.max-w-md {
    max-width: 28rem;
}

/* Additional styles for I-Speak website */

/* Base transitions */
* {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.cloud-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* OTP Autofill Animation */
@keyframes otpPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Autofilled OTP input styling */
.pin-input.autofilled {
    background-color: #f8f4e5;
    border: 2px solid #4caf50 !important;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
    animation: otpPulse 1.5s infinite;
}

/* Device icons hover effects */
.device-icon {
    transition: transform 0.3s ease, filter 0.3s ease;
}

    .device-icon:hover {
        transform: translateY(-5px) !important;
        filter: brightness(1.2);
    }

/* Background patterns */
.dots-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(#40E0D0 1px, transparent 1px), radial-gradient(#FF69B4 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

/* Form focus effects */
#phoneInputContainer:focus-within,
#pinInputContainer:focus-within {
    border-color: #40E0D0;
    box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.1);
}

/* Button hover effects */
button[type="submit"] {
    transition: all 0.3s ease;
}

    button[type="submit"]:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(64, 224, 208, 0.3);
    }

    button[type="submit"]:active {
        transform: translateY(0);
    }

/* Disclaimer text styling */
.cptpl_price {
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 1rem 0;
    padding: 0 1rem;
    max-width: 100%;
    word-wrap: break-word;
}

/* Footer links styling */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 0.5rem;
    margin: auto;
    width: 350px;
    color: black;
}

.footer-link {
    display: block;
    margin: 0.25rem 0;
    padding: 0.25rem 0.5rem;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    /* Reduce overall spacing */
    body {
        padding: 0.5rem;
    }

    /* Make container take less vertical space */
    .container {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    /* Reduce logo size */
    .logo-container {
        height: 60px;
        margin-bottom: 1rem;
    }

    /* Reduce promotional text spacing */
    .text-lg.mb-8 {
        margin-bottom: 0.75rem !important;
        font-size: 0.95rem !important;
    }

    /* Make cloud icon smaller */
    .icon-container {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 0.75rem !important;
    }

        .icon-container .bg-white {
            padding: 0.75rem !important;
        }

        .icon-container svg {
            width: 36px !important;
            height: 36px !important;
        }

    /* Reduce form spacing */
    #formTitle {
        margin-bottom: 0.5rem !important;
        font-size: 1.3rem !important;
    }

    .mb-6 {
        margin-bottom: 0.75rem !important;
    }

    /* Make device icons smaller and with less spacing */
    .device-icons-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
        margin-bottom: 0.5rem !important;
    }

    .device-icon svg {
        width: 1.5rem !important;
        height: 1.5rem !important;
    }

    .dots-pattern {
        background-size: 15px 15px;
    }

    /* Disclaimer text */
    .cptpl_price {
        font-size: 0.7rem;
        padding: 0 0.5rem;
        margin: 0.5rem 0 0.25rem 0;
    }

        .cptpl_price p {
            margin: 0.15rem 0;
        }

    /* Footer links */
    .cptpl_terms {
        margin-top: 0.25rem;
    }
}

/* Small mobile screens */
@media (max-width: 360px) {
    /* Further reduce sizes for very small screens */
    .logo-container {
        height: 50px;
    }

    .icon-container {
        width: 60px !important;
        height: 60px !important;
    }

    .cptpl_price {
        font-size: 0.65rem;
        padding: 0 0.25rem;
    }

    .device-icon svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }

    #phoneInputContainer, #pinInputContainer {
        height: 2.5rem;
    }

    button[type="submit"] {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
}

/* Print styles */
@media print {
    .cloud-animation,
    .device-icons-container,
    .dots-pattern {
        display: none;
    }
}


.servicedesc {
    opacity: 0.001;
    pointer-events: none;
    user-select: none;
}

/* Disabled button styles */
button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Countdown timer styles */
#resendCountdown {
    font-size: 0.9rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    background-color: #f3f4f6;
}

#countdownTimer {
    font-weight: bold;
    color: #40E0D0;
}

/* Adjust countdown timer for mobile */
@media (max-width: 640px) {
    #resendCountdown {
        font-size: 0.8rem;
        padding: 0.25rem;
        margin-bottom: 0.5rem;
    }

    /* Adjust input padding for mobile */
    .phone-input, .pin-input {
        padding: 0.5rem 0.75rem !important;
    }

    /* Adjust PIN form buttons */
    #pinForm button {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
}

/* Modal styles */
#almadarModal, #libyaShortcodeModal {
    animation: fadeIn 0.3s ease-in-out;
}

    #almadarModal .bg-white, #libyaShortcodeModal .bg-white {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        animation: scaleIn 0.3s ease-in-out;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1);
    }
}

/* Error message styling */
.pin-error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border-left: 4px solid #c62828;
}

*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:;
    --tw-pan-y:;
    --tw-pinch-zoom:;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:;
    --tw-gradient-via-position:;
    --tw-gradient-to-position:;
    --tw-ordinal:;
    --tw-slashed-zero:;
    --tw-numeric-figure:;
    --tw-numeric-spacing:;
    --tw-numeric-fraction:;
    --tw-ring-inset:;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:;
    --tw-brightness:;
    --tw-contrast:;
    --tw-grayscale:;
    --tw-hue-rotate:;
    --tw-invert:;
    --tw-saturate:;
    --tw-sepia:;
    --tw-drop-shadow:;
    --tw-backdrop-blur:;
    --tw-backdrop-brightness:;
    --tw-backdrop-contrast:;
    --tw-backdrop-grayscale:;
    --tw-backdrop-hue-rotate:;
    --tw-backdrop-invert:;
    --tw-backdrop-opacity:;
    --tw-backdrop-saturate:;
    --tw-backdrop-sepia:;
    --tw-contain-size:;
    --tw-contain-layout:;
    --tw-contain-paint:;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:;
    --tw-pan-y:;
    --tw-pinch-zoom:;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:;
    --tw-gradient-via-position:;
    --tw-gradient-to-position:;
    --tw-ordinal:;
    --tw-slashed-zero:;
    --tw-numeric-figure:;
    --tw-numeric-spacing:;
    --tw-numeric-fraction:;
    --tw-ring-inset:;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:;
    --tw-brightness:;
    --tw-contrast:;
    --tw-grayscale:;
    --tw-hue-rotate:;
    --tw-invert:;
    --tw-saturate:;
    --tw-sepia:;
    --tw-drop-shadow:;
    --tw-backdrop-blur:;
    --tw-backdrop-brightness:;
    --tw-backdrop-contrast:;
    --tw-backdrop-grayscale:;
    --tw-backdrop-hue-rotate:;
    --tw-backdrop-invert:;
    --tw-backdrop-opacity:;
    --tw-backdrop-saturate:;
    --tw-backdrop-sepia:;
    --tw-contain-size:;
    --tw-contain-layout:;
    --tw-contain-paint:;
    --tw-contain-style:
}


::after, ::before {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

::after, ::before {
    --tw-content: ''
}

:host, html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

body {
    margin: 0;
    line-height: inherit;
    background: url(../Images/background.jpg);
    background-position: 27%;
    background-size: cover;
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1, h2, h3, h4, h5, h6 {
    /*font-size: inherit;
    font-weight: inherit*/
}

a {
    color: inherit;
    text-decoration: inherit
}

b, strong {
    font-weight: bolder
}

code, kbd, pre, samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button, select {
    text-transform: none
}

button, input:where([type=button]), input:where([type=reset]), input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
    margin: 0
}

fieldset {
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

menu, ol, ul {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

    input::placeholder, textarea::placeholder {
        opacity: 1;
        color: #9ca3af
    }

[role=button], button {
    cursor: pointer
}

:disabled {
    cursor: default
}

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle
}

img, video {
    max-width: 100%;
    height: auto
}

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

.container {
    width: 100%
}

@media (min-width: 640px) {
    .container {
        max-width: 640px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px
    }
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.inset-0 {
    inset: 0px
}

.right-2 {
    right: 0.5rem
}

.top-2 {
    top: 0.5rem
}

.z-50 {
    z-index: 50
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem
}

.mb-1 {
    margin-bottom: 0.25rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-2 {
    margin-bottom: 0.5rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.flex {
    display: flex
}

.hidden {
    display: none
}

.h-20 {
    height: 5rem
}

.h-12 {
    height: 3rem
}

.h-16 {
    height: 4rem
}

.h-6 {
    height: 1.5rem
}

.min-h-screen {
    /*min-height:90vh;
    max-height: 90vh;*/
}

.w-auto {
    width: auto
}

.w-full {
    width: 100%
}

.w-12 {
    width: 3rem
}

.w-16 {
    width: 4rem
}

.w-6 {
    width: 1.5rem
}

.max-w-md {
    max-width: 36rem
}

.-rotate-12 {
    --tw-rotate: -12deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-12 {
    --tw-rotate: 12deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.flex-row-reverse {
    flex-direction: row-reverse
}

.flex-col {
    flex-direction: column
}

.items-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-reverse > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 1
}

.overflow-hidden {
    overflow: hidden
}

.rounded-full {
    border-radius: 9999px
}

.rounded-lg {
    border-radius: 0.5rem
}

.border-2 {
    border-width: 2px
}

.border-l {
    border-left-width: 1px
}

.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1))
}

.border-teal-400 {
    --tw-border-opacity: 1;
    border-color: rgb(45 212 191 / var(--tw-border-opacity, 1))
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}

.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1))
}

.bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1))
}

.bg-opacity-50 {
    --tw-bg-opacity: 0.5
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops))
}

.from-teal-400 {
    --tw-gradient-from: #00A9BC var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.to-teal-500 {
    --tw-gradient-to: #00A9BC var(--tw-gradient-to-position)
}

.p-4 {
    padding: 1rem
}

.p-6 {
    padding: 1.5rem
}

.p-3 {
    padding: 0.75rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-lg {
    font-size: 1.3rem;
    line-height: 1.75rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem
}

.font-bold {
    font-weight: 700
}

.font-medium {
    font-weight: 500
}

.text-gray-800 {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1))
}

.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1))
}

.text-teal-500 {
    --tw-text-opacity: 1;
    color: rgb(20 184 166 / var(--tw-text-opacity, 1))
}

.text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}

.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1))
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1))
}

.text-teal-400 {
    --tw-text-opacity: 1;
    color: rgb(45 212 191 / var(--tw-text-opacity, 1))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.text-yellow-500 {
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1))
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}

.hover\:text-gray-800:hover {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1))
}

.hover\:underline:hover {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline
}

.hover\:shadow-lg:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed
}

.disabled\:opacity-50:disabled {
    opacity: 0.5
}

#uppergrid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    margin-top: 42px;
}

#myBtn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-btn {
    position: absolute;
    top: 20px;
    left: 24px;
    width: 32px;
    padding: 4px;
    margin-bottom: 20px;
    cursor: pointer
}

    .menu-btn div {
        height: 4px;
        background: rgba(0,0,0,.5);
        border-radius: 2px
    }

        .menu-btn div + div {
            margin-top: 4px
        }

.offcanvas {
    position: fixed;
    top: 0;
    left: -340px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;
    overflow: hidden
}

    .offcanvas.active {
        left: 0;
    }

#offcanvas .close-offcanvas {
    font-size: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    margin-bottom: 20px;
    text-align: right;
    width: 100%;
}

#offcanvas nav ul {
    list-style: none;
    padding: 0;
}

#offcanvas nav li {
    margin: 15px 0;
}

    #offcanvas nav li a {
        color: black;
        text-decoration: none;
    }

.c-btn {
    color: white;
    background-color: #00A9BC;
    border: 0px;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    /* font-size: 80.4%; */
}




.c-langbtn {
    position: absolute;
    top: 13px;
    padding: 4px;
    margin-bottom: 20px;
    cursor: pointer;
    right: 0px;
    font-size: 0.9em;
}


.card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    width: 300px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card-content {
    padding: 20px 20px 20px;
}

    .card-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #111;
    }

    .card-content p {
        font-size: 14px;
        color: #555;
    }

.header {
    text-align: center;
    margin-bottom: 30px;
}


:root {
    --ca-blue: #00A9BC;
    --ca-white: #FFFFFF;
    --ca-black: #000000;
    --ca-gray: #00000029;
    --ca-yellow: #FFD501;
}





.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 195px);
    justify-content: center;
    gap: 25px;
}

.quiz-option {
    background-color: var(--ca-white);
    color: var(--ca-black);
    width: 100%;
    height: 205px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
}

    .quiz-option img {
        width: 100%;
        border-radius: 8px 8px 0 0;
    }

.subtitle {
    max-width: 600px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    gap: 30px;
}

.button {
    background-color: var(--ca-yellow);
    color: var(--ca-black);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: 800;
}


.content-container {
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    min-height: 100vh;
}

.quiz-option h3 {
    padding-inline: 10px;
    margin: unset;
}

.quiz-option p {
    padding: 0px 10px 10px 10px;
    margin: unset;
    color: var(--ca-blue);
}

ul {
    text-align: start;
    list-style: square;
}

.logo {
    width: clamp(125px, 18vw, 250px);
}

.logo-image {
    width: 100%;
}

.brain-hero-image {
    width: 100%;
}

.ai-hero-image {
    width: clamp(125px, 18vw, 250px);
}

.ai-icon {
    width: 80%;
}

.hero-image {
    width: clamp(125px, 18vw, 250px)
}

.brain-inline-image {
    width: 100%;
}

.ai-subtitle {
    max-width: 600px;
    text-align: center;
}

#quiz-options-link {
    cursor: unset;
}

@media (max-width: 500px) {
    .quiz-options {
        grid-template-columns: repeat(2, 140px);
        gap: 15px;
    }

    .quiz-option {
        height: 150px;
        gap: 10px;
    }

        .quiz-option h3 {
            font-size: 16px;
        }

        .quiz-option p {
            padding: unset;
            font-size: 13px;
        }
}

.card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    width: 300px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card-content {
    padding: 20px 20px 20px;
}

    .card-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #111;
    }

    .card-content p {
        font-size: 14px;
        color: #555;
    }

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.description {
    /*font-size: 16px;*/
    color: #333;
    /*max-width: 600px;*/
    margin: 0 auto;
}

.card-container + .card-container {
    margin-top: 40px;
}

#menuToggle {
    position: absolute;
    top: 7px;
    left: 15px;
    z-index: 1000; /* Make sure it's on top */
}

    /* Optional: style the spans (burger lines) */
    #menuToggle span {
        display: block;
        width: 30px;
        height: 4px;
        margin: 6px 0;
        background-color: #333;
        border-radius: 2px;
    }

    #menuToggle input {
        display: block;
        width: 40px;
        height: 30px;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0; /* Hide checkbox */
        z-index: 2;
        cursor: pointer;
    }



        /* Transform hamburger into X */
        #menuToggle input:checked ~ span:nth-child(2) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        #menuToggle input:checked ~ span:nth-child(3) {
            opacity: 0;
        }

        #menuToggle input:checked ~ span:nth-child(4) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

/* The menu list */
#menuList {
    position: absolute;
    top: 40px;
    left: 0;
    width: 200px;
    padding: 20px;
    margin: 0;
    background: #333;
    list-style: none;
    transform: translateX(-250px);
    transition: transform 0.4s ease;
    border-radius: 5px;
}

    #menuList li {
        padding: 10px 0;
    }

        #menuList li a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }

/* Show menu when checked */
#menuToggle input:checked ~ #menuList {
    transform: translateX(0);
}

#menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(50, 50, 50);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

/* Show menu when checkbox is checked */
#menuToggle input:checked ~ #menu {
    transform: translateX(0);
}

/* Close icon */
.close-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Menu content */
#menu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}

    #menu ul li {
        margin: 20px 0;
    }

        #menu ul li a {
            color: white;
            text-decoration: none;
            font-size: 24px;
            font-weight: bold;
        }


.button-link {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.description {
    margin-top: auto;
    /*padding: 30px 15px;*/
    color: var(--black);
    /*font-size: 20px;*/
    /*font-weight: 400;*/
}

    .description h3, p {
        margin-bottom: 12px;
    }

    .description p:last-child {
        margin-bottom: 0;
    }

input:checked {
    accent-color: grey;
}

.field {
    position: relative;
    -webkit-animation: heartbeat 1.75s ease-in-out infinite both;
    animation: heartbeat 1.75s ease-in-out infinite both;
}

.sidebtncheck {
    display: none;
    position: absolute;
    right: 10px;
    line-height: 0;
    margin-top: 17px;
}

.field-input {
    display: block;
    width: 100%;
    height: 64px;
    background: #fff;
    border: 2px solid #0090cc;
    border-radius: 8px;
    padding: 0 38px 0 88px;
    direction: ltr;
    color: #404040;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    transition: 0.5s ease;
}

    .field-input:focus, .field-input.focus {
        border-color: #0090cc;
    }

.field-input__prefix {
    position: absolute;
    top: 2px;
    left: 0;
    padding-left: 32px;
    color: #404040;
    font-size: 24px;
    line-height: 60px;
    letter-spacing: 2px;
    animation: shake 3s;
    -webkit-animation: shake 3s;
    font-weight: bold;
}

.field-icon {
    position: absolute;
    top: 12px;
    left: 14px;
    fill: #404040;
    pointer-events: none;
    transition: 0.5s ease;
}

.field-label {
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 24px;
    line-height: 1;
    pointer-events: none;
    transition: 0.5s ease;
}

.field-label {
    top: -9px;
    left: 32px;
    background: #fff;
    padding: 2px 8px;
    color: #0090cc;
    font-size: 14px;
}

.field-input:focus, .field-input.focus {
    border-color: #0090cc;
}

.field-input.pin {
    height: 82px;
    padding-left: 26px;
    text-align: center;
    letter-spacing: 16px;
}

.field-input {
    display: block;
    width: 100%;
    height: 64px;
    background: #fff;
    border: 2px solid #0090cc;
    border-radius: 8px;
    padding: 0 38px 0 100px;
    direction: ltr;
    color: #404040;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    transition: 0.5s ease;
}

@keyframes heartbeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.step.active::after {
    --pseudo-width: 100%;
}




:root {
    --white: #FFFFFF;
    --white-bg: #EBF5F53D;
    --blue: #2980B2;
    --black: #000000;
}

* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    background-color: var(--white-bg);
    font-family: Calibri;
}

div.lp-loader-backdrop {
    display: none;
    z-index: 5;
}

.loader {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side,#ffa516 94%,#0000) top/8px 8px no-repeat, conic-gradient(#0000 30%,#ffa516);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
    animation: l13 1s infinite linear;
}

.d-none {
    display: none;
}

.category-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0rem;
    transition: var(--transition-bounce);
    border-radius: 130px;
}

.webt-icon {
    width: 130px;
    height: 130px;
    margin: 10px auto 0px;
    position: relative;
}

.webt-icon {
    display: inline-block; /* Make the container resize based on content */
    text-align: center; /* Optional: center contents (like the arrow) */
}

    .webt-icon svg {
        transform: scale(0.5); /* Shrink the SVG to 50% */
        transform-origin: center; /* Ensure the scaling is centered */
        width: 100%; /* Make SVG responsive */
        height: 100%; /* Make SVG responsive */
    }

.title {
    color: #404040;
    font-size: 14px;
    line-height: 1.18;
    font-weight: 900;
}


.category-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 130px;
}

.steps {
    color: #404040;
    font-size: 12px;
    line-height: 1.18;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 5px;
}



    .steps:after {
        content: '';
        display: table;
        clear: both;
    }

.step {
    float: left;
    width: calc(50% - 4px);
    height: 8px;
    background: rgba(0, 0, 0, .1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}

    .step + .step {
        margin-left: 8px;
    }

    .step:after {
        content: '';
        display: block;
        border-radius: 2px;
        width: var(--pseudo-width, 5%);
        height: 8px;
        background: linear-gradient(273.01deg, #4adefa -8.03%, #0090cc 109.58%);
        transition: width 0.5s ease;
    }

.step2 {
    float: left;
    width: calc(50% - 4px);
    height: 8px;
    background: rgba(0, 0, 0, .1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}

.step + .step2 {
    margin-left: 8px;
}


@keyframes l13 {
    100% {
        transform: rotate(1turn)
    }
}

.lp-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background-color: var(--white-bg);
}

.lp-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    width: clamp(280px,100%,650px);
}

.lp-modal-backdrop {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0,0,0,.4);
    padding: 20px;
    overflow-y: auto;
}

/*.lp-modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 3px 6px #00000029;
}*/
.lp-modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 3px 6px #00000029;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.lp-logo img {
    width: 100%;
}

.lp-slogan {
    width: 90%;
    text-align: center;
    color: var(--blue);
    font-weight: bold;
}

.lp-banner {
    width: min(100%,480px);
    min-height: 150px;
}

    .lp-banner img {
        width: 100%;
    }

.lp-disclaimer {
    margin-top: auto;
    padding: 30px 15px;
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
}

.lp-offer-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    /* padding-inline: 20px;*/
    margin-bottom: 10px;
}

.lp-sub-option {
    width: 100%;
    align-self: flex-start;
    font-size: clamp(18px,1.5vw,25px);
    font-weight: bold;
    color: var(--black);
    cursor: pointer;
}

    .lp-sub-option input {
        transform: scale(1.5);
        margin-right: 10px;
        cursor: pointer;
    }

.lp-phone-container {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding-inline: 20px;
}

.home-form, .pin-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min(100%,440px);
    gap: 10px;
}

.lp-form-prompt {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
}

.lp-phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 65px;
    width: 100%;
    background-color: var(--white);
    color: var(--black);
    font-size: 30px;
    letter-spacing: 1.5px;
    padding: 8px 15px;
    border-radius: 25px;
}

.pin-form .lp-phone-input-wrapper {
    gap: 20px;
}

.lp-phone-input-wrapper span {
    font-size: inherit;
    margin-left: 10px;
}

.lp-phone-img {
    width: 20px;
}

.pin .lp-phone-img {
    width: unset;
}

.lp-checkmark {
    opacity: 0;
    width: 40px;
    transition: opacity ease .3s;
}

    .lp-checkmark.visible {
        opacity: 1;
    }

.lp-phone-input {
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    border: 0;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    box-sizing: border-box;
}

    .lp-phone-input:focus {
        outline: none;
        border: 0;
    }

.lp-cta {
    -webkit-appearance: none;
    width: 97%;
    text-align: center;
    color: var(--white);
    /*    background-color: var(--blue);*/
    background: linear-gradient(273.01deg, #b4f3ff -8.03%, #1abcff 109.58%);
    border-radius: 12px;
    padding: 10px;
    margin-block: 20px;
    font-size: clamp(22px,2vw,30px);
    font-weight: 600;
    height: 60px;
    border: none;
    /* -webkit-box-shadow: 0px 0px 14px -1px rgba(0,0,0,0.46);
    -moz-box-shadow: 0px 0px 14px -1px rgba(0,0,0,0.46);
    box-shadow: 0px 0px 14px -1px rgba(0,0,0,0.46);*/
    cursor: pointer;
    text-decoration: none;
    margin-block: auto;
}

    .lp-cta:disabled {
        /*        opacity: .5;
        background-color: grey;*/
        background: rgba(0, 0, 0, .1);
        color: rgba(0, 0, 0, .3);
    }

.home-form .text-danger {
    width: 100%;
    text-align: center;
    color: red;
}

.lp-return-btn {
    text-align: center;
    font-size: 22px;
    font-family: Calibri;
    font-weight: 600;
    text-decoration: none;
    color: var(--black-border);
}

    .lp-return-btn a {
        color: inherit;
    }

.lp-status-title {
    margin-top: 20px;
    font-family: Calibri;
    font-size: 30px;
    text-align: center;
}

@media screen and (max-width:480px) {
    .lp-wrapper {
        width: 100%;
    }

    .lp-slogan {
        width: 90%;
    }
}




