.question-card {
    transition: all 0.3s ease;
}
.question-card:hover {
    transform: translateY(-5px);
}
.radio-input:checked + .radio-label {
    border-color: var(--cyan-500);
}
@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(2deg); }
    50% { transform: translate(0, -20px) rotate(-1deg); }
    75% { transform: translate(-10px, -10px) rotate(1deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.floating-card {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.progress-bar {
    animation: progress 3s ease-in-out infinite;
}

.question-count {
    animation: count 3s ease-out forwards;
}

@keyframes count {
    from { content: "0"; }
    to { content: "9"; }
}

.question-orbit {
    position: relative;
    width: 100%;
    height: 100vh;
}
 @font-face {
    font-family: 'Segoe Script';
    src: url('fonts/segoe-script.ttf') format('truetype');
}
:root {
    --primary-color: #06b6d4;  /* Bright cyan */
    --secondary-color: #8b5cf6; /* Bright purple */
    --accent-color: #3b82f6;    /* Bright blue */
    --gradient-start: #06b6d4;
    --gradient-end: #8b5cf6;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, 
        var(--gradient-start) 0%, 
        var(--gradient-end) 100%
    );
}

.bg-gradient-bright {
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 100%
    );
}

.glow-effect {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.hover-glow:hover {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.6);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
@keyframes countUp {
from { transform: translateY(1rem); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}

@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}

.stat-animate {
opacity: 0;
animation: countUp 0.8s ease-out forwards;
}

.pulse-slow {
animation: pulse 3s infinite;
}

.float-animation {
animation: float 6s ease-in-out infinite;
}

.map-dot {
animation: pulse 2s infinite;
}

.testimonial-slide {
transition: all 0.5s ease;
}

.testimonial-slide:hover {
transform: translateY(-10px);
}

.bg-grid-pattern {
background-image: linear-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px),
linear-gradient(90deg, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
background-size: 30px 30px;
}
@keyframes pulse {
0% { transform: scale(1); opacity: 0.8; }
50% { transform: scale(1.5); opacity: 0.4; }
100% { transform: scale(1); opacity: 0.8; }
}

.location-pulse {
animation: pulse 2s infinite;
}

.testimonial-slide {
transition: all 0.3s ease;
}

.testimonial-slide:hover {
transform: translateY(-10px);
}

.bg-grid-pattern {
background-image: linear-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px),
linear-gradient(90deg, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
background-size: 30px 30px;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}

.float-animation {
animation: float 6s ease-in-out infinite;
}

.testimonial-card {
transition: all 0.3s ease;
}

.testimonial-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bg-grid-pattern {
background-image: linear-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px),
linear-gradient(90deg, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
background-size: 30px 30px;
}
.mobile-menu-enter {
opacity: 0;
transform: translateY(-10px);
}
.mobile-menu-enter-active {
opacity: 1;
transform: translateY(0);
transition: opacity 200ms, transform 200ms;
}
.mobile-menu-exit {
opacity: 1;
transform: translateY(0);
}
.mobile-menu-exit-active {
opacity: 0;
transform: translateY(-10px);
transition: opacity 150ms, transform 150ms;
}
.bg-gradient-custom {
background: linear-gradient(135deg, #0891b2 10%, #6b21a8 90%);
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.bg-grid-pattern {
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0891b2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0891b2;
}

.stat-label {
    color: #4b5563;
    font-size: 0.875rem;
}

.cta-button {
    background: white;
    color: #0891b2;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
@keyframes scroll {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(-100%);
}
}

@keyframes scroll-reverse {
0% {
    transform: translateX(-100%);
}
100% {
    transform: translateX(0);
}
}

.animate-scroll {
animation: scroll 30s linear infinite;
}

.animate-scroll-reverse {
animation: scroll-reverse 30s linear infinite;
}

.hover-glow {
transition: all 0.3s ease;
}

.hover-glow:hover {
transform: translateY(-2px);
box-shadow: 0 0 25px rgba(6, 182, 212, 0.6);
}


.animate-marquee {
display: flex;
align-items: center;

}
.ticker-row {
display: flex;
align-items: center; /* Vertically center the images */
justify-content: center; /* Center the content horizontally */
gap: 2.5rem; /* Space between images */
animation: marquee 20s linear infinite;
white-space: nowrap; /* Prevent line breaks */
overflow: hidden; /* Hide overflow */
padding: 1rem 0; /* Add some padding for breathing room */
}

.ticker-row img {
max-height: 64px; /* Ensure all images have a consistent size */
object-fit: contain;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin: 2rem 0;
}

.glass-card {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
border-radius: 1rem;
padding: 1.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin-left: 0rem;
}
.pricing-toggle {
transition: all 0.3s ease;
}

.early-bird-offer {
background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
animation: pulse 2s infinite;
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}   
.glass-card {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
border-radius: 1rem;
padding: 2rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
text-align: center;
}

.stat-icon {
margin: 0 auto 1rem auto;
}

.stat-number {
font-size: 2.5rem;
font-weight: bold;
color: #0891b2;
margin-bottom: 0.5rem;
text-align: center;
}

.stat-label {
color: #4b5563;
font-size: 0.875rem;
text-align: center;
}

.float-animation {
animation: float 6s ease-in-out infinite;
}
.float-animation-delay {
animation: float 6s ease-in-out infinite;
animation-delay: 2s;
}
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-20px);
}
100% {
transform: translateY(0px);
}
}
.glass-card {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 1rem;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
/* Base Animations */
@keyframes float {
0% { transform: translate(0, 0) rotate(0deg); }
25% { transform: translate(5px, -5px) rotate(1deg); }
50% { transform: translate(0, -10px) rotate(-0.5deg); }
75% { transform: translate(-5px, -5px) rotate(0.5deg); }
100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes cardAppear {
0% {
opacity: 0;
transform: translateY(20px) scale(0.95) rotate(var(--rotation));
}
100% {
opacity: 1;
transform: translateY(0) scale(1) rotate(var(--rotation));
}
}

/* Container Layout */
.question-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2.5rem;
padding: 2rem;
position: relative;
}

/* Card Styling */
.question-card {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(12px);
border-radius: 1rem;
padding: 1.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
opacity: 0;
--rotation: -1deg;
animation: cardAppear 0.5s forwards;
position: relative;
height: fit-content;
}

.question-card:nth-child(2n) {
--rotation: 1deg;
}

.question-card:nth-child(3n) {
--rotation: -0.5deg;
}

.question-card:nth-child(4n) {
margin-top: 1rem;
}

.question-card:nth-child(5n) {
margin-top: -1rem;
}

.question-card:hover {
transform: translateY(-5px) scale(1.02) rotate(0deg) !important;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
z-index: 10;
}

/* Timer Animation */
@keyframes timerProgress {
0% { 
width: 100%;
background-color: #06b6d4;
}
75% { 
background-color: #06b6d4;
}
90% {
background-color: #ef4444;
}
100% { 
width: 0%;
background-color: #ef4444;
}
}

.timer-bar {
animation: timerProgress linear forwards;
transition: background-color 0.3s ease;
}

/* Status Indicators */
.status-indicator {
position: absolute;
top: -10px;
right: -10px;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 0.875rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-indicator.correct {
background: linear-gradient(45deg, #10b981, #059669);
}

.status-indicator.incorrect {
background: linear-gradient(45deg, #ef4444, #dc2626);
}

.status-indicator.in-progress {
background: linear-gradient(45deg, #06b6d4, #0891b2);
}

/* Option Styles */
.option-hover {
transition: all 0.3s ease;
}

.option-hover:hover:not(.disabled) {
transform: translateX(5px);
background-color: rgba(6, 182, 212, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1536px) {
.question-container {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.question-container {
grid-template-columns: 1fr;
}

.question-card {
margin: 0 !important;
}

.features-section .feature-images,
.features-section [class*="lg:w-1/2"].relative {
    display: none;
}

.features-section .feature-container {
    margin-bottom: 2rem;
}
}

@media (min-width: 769px) {
    .features-section .feature-images {
        transform: scale(1);
    }
}

/* Add new animation for How It Works section */
@keyframes floatSimple {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-20px);
}
100% {
transform: translateY(0px);
}
}

.float-animation {
animation: floatSimple 6s ease-in-out infinite;
}

.float-animation-delay {
animation: floatSimple 6s ease-in-out infinite;
animation-delay: 2s;
}
.fade-bottom {
background: linear-gradient(
to bottom,
transparent,
rgb(6 182 212 / 0.1) 50%,
rgb(6 182 212 / 0.2) 100%
);
height: 150px;
margin-top: -150px;
position: relative;
pointer-events: none;
}

.question-container {
position: relative;
padding-bottom: 150px; /* Make space for the fade effect */
}

/* Update the animation for the bouncing dots */
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}

.animate-bounce {
animation: bounce 1s infinite;
}
.video-carousel {
    position: relative;
    perspective: 1000px;
}

.video-card {
    position: absolute;
    width: 325px;
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
}

.video-wrapper {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Position styles */
.video-card[data-position="left"] {
    transform: translateX(-100%) scale(0.8);
    filter: blur(2px) brightness(0.8);
    z-index: 1;
}

.video-card[data-position="right"] {
    transform: translateX(100%) scale(0.8);
    filter: blur(2px) brightness(0.8);
    z-index: 1;
}

.video-card[data-position="center"] {
    transform: translateX(0) scale(1);
    z-index: 2;
}

/* Hover effects */
.video-card[data-position="left"]:hover,
.video-card[data-position="right"]:hover {
    transform: translateX(0) scale(0.9);
    filter: blur(1px) brightness(0.9);
}

.video-card[data-position="center"]:hover {
    transform: translateX(0) scale(1.05);
}
@keyframes float-slow {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}

@keyframes float-delayed {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(20px); }
}

.animate-float-slow {
animation: float-slow 6s ease-in-out infinite;
}

.animate-float-delayed {
animation: float-delayed 7s ease-in-out infinite;
}
.bg-gradient-hero {
background: linear-gradient(135deg, rgba(30, 16, 85, 0.8) 0%, rgba(12, 74, 110, 0.8) 80%, rgba(76, 29, 149, 0.8) 100%);
}
@keyframes slideUpFade {
0% {
opacity: 0;
transform: translateY(30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}

.animate-slide-up {
opacity: 0;
animation: slideUpFade 0.8s ease-out forwards;
}

.delay-200 {
animation-delay: 200ms;
}

.delay-400 {
animation-delay: 400ms;
}

.delay-600 {
animation-delay: 600ms;
}
.section-transition {
position: relative;
width: 100%;
height: 120px;
background: rgb(17, 24, 39);
margin-top: -100px;
z-index: 10;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Adjust this value based on your header height */
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    opacity: 0;
    animation: slideUpFade 0.8s ease-out forwards;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-400 {
    animation-delay: 400ms;
}

.delay-600 {
    animation-delay: 600ms;
}


.bg-white\\/80.backdrop-blur-xl.rounded-2xl.p-6 {
    transition: all 0.3s ease;
}

.bg-white\\/80.backdrop-blur-xl.rounded-2xl.p-6:hover {
    transform: translateY(-5px);
}

.bg-white\\/80.backdrop-blur-xl.rounded-2xl.p-6 div[class*="mt-4"] {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}

.bg-white\\/80.backdrop-blur-xl.rounded-2xl.p-6 svg {
    transition: transform 0.3s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce {
    animation: bounce 2s infinite;
}
.animate-dash {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 3s linear forwards infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}
.animate-pulse-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: pulse-line 3s linear infinite;
}

@keyframes pulse-line {
    0% {
        stroke-dashoffset: 300;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}
.animate-connection {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: connection 2s ease-in-out infinite;
}

.animate-flow {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: flow 3s linear infinite;
}

@keyframes connection {
    0% {
        stroke-dashoffset: 150;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

@keyframes flow {
    0% {
        stroke-dashoffset: 200;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.animate-flow {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: flow 3s linear infinite;
}

.animate-flow-reverse {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: flow-reverse 3s linear infinite;
}

@keyframes flow {
    0% {
        stroke-dashoffset: 300;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes flow-reverse {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 300;
    }
}
.connection-line {
    stroke-width: 2;
    stroke-dasharray: 10;
    stroke-linecap: round;
    fill: none;
    animation: flow 30s linear infinite;
    opacity: 0.6;
}

@keyframes flow {
    from {
        stroke-dashoffset: 100;
    }
    to {
        stroke-dashoffset: 0;
    }
}


.connection-line {
    stroke-width: 2;
    opacity: 0.6;
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 100;
    }
}
.connection-dots {
    animation: moveDots 3s linear infinite;
}

@keyframes moveDots {
    from {
        stroke-dasharray: 0, 8;
        stroke-dashoffset: 0;
    }
    to {
        stroke-dasharray: 0, 8;
        stroke-dashoffset: -16;
    }
}

section {
    position: relative;
    z-index: 1;
}

.bg-grid-pattern {
    z-index: 0;
}

/* Ensure clickable elements work */
a, button, input, select, textarea {
    position: relative;
    z-index: 2;
}
footer {
    position: relative;
    z-index: 1;
    background-color: #111827; /* or your desired color */
}

/* Remove any background patterns */
.bg-pattern, .bg-grid {
    display: none;
}

/* Add or update these styles to prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Container modifications */
.container {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Adjust any oversized transforms */
.transform {
    --tw-translate-x: min(var(--tw-translate-x), 100%);
    --tw-translate-x: max(var(--tw-translate-x), -100%);
}

/* Fix for absolute positioned elements that might cause overflow */
section {
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

/* Adjust any full-width elements */
.w-full {
    max-width: 100vw;
}
.font-rendering-normal {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}