/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-bg: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #00ff88;
    --accent-hover: #00cc6a;
    --border-color: #333333;
    --gradient-start: #ff6b6b;
    --gradient-end: #4ecdc4;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    /* background: linear-gradient(to right, #ffe0e0, #e0e0ff); */
    min-height: 100vh;
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--primary-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ***************************************************************************************************************** */
/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    width: 80%;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 1;
    visibility: visible;
    -webkit-backdrop-filter: blur(20px);

}

/* Hide navbar when scrolling up */
.navbar.hide-up {
    opacity: 0;
    transform: translateX(-50%) translateY(-100px);
    visibility: hidden;
    pointer-events: none;
}

/* Show navbar when scrolling down */
/* .navbar.show-down {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
    pointer-events: all;
    animation: slideInDown 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
} */


/* Scrolled state - reduce to 30% size */
.navbar.scrolled {
    width: 60%;
    padding: 12px 24px;
    border-radius: 25px;
    top: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(-50%) scale(0.98);
    opacity: 1;
    visibility: visible;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
}

/* .navbar.sticky {
    position: sticky;
    top: 20px;
    margin: 20px auto;
    transform: translateX(-50%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: stickyBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 1;
} */


/* Bouncing animation keyframes */
/* @keyframes navbarBounce {
    0% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(0.95);
    }
    100% {
        transform: translateX(-50%) scale(0.98);
    }
} */

/* Hide scrolled navbar when scrolling up */
.navbar.scrolled.hide-up {
    opacity: 0;
    transform: translateX(-50%) translateY(-100px) scale(0.98);
    visibility: hidden;
}

/* Show scrolled navbar when scrolling down */
/* .navbar.scrolled.show-down {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(0.98);
    visibility: visible;
    animation: slideInDownScrolled 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
} */
.navbar * {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



/* Animation keyframes */
/* @keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
} */

/* @keyframes slideInDownScrolled {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-100px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(0.98);
    }
} */


@keyframes stickyBounce {
    0% {
        transform: translateX(-50%) translateY(-10px);
        opacity: 0.8;
    }

    50% {
        transform: translateX(-50%) translateY(5px);
        opacity: 0.9;
    }

    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Hide nav links when scrolled */
/* .navbar.scrolled .nav-links {
    display: none;
} */

/* Adjust logo size when scrolled */
.navbar.scrolled .nav-logo {
    font-size: var(--font-size-base);
}

.navbar.scrolled .functional-icon {
    height: 16px;
    margin-right: 8px;
}

.navbar.scrolled .functional-icon span {
    width: 3px;
    height: 14px;
    margin-right: 1px;
}

.navbar.scrolled .functional-icon span:nth-child(1) {
    height: 11px;
    margin-top: 3px;
}

.navbar.scrolled .functional-icon span:nth-child(2) {
    height: 14px;
}

.navbar.scrolled .functional-icon span:nth-child(3) {
    height: 12px;
    margin-top: 2px;
}

.navbar.scrolled .functional-icon span:nth-child(4) {
    width: 6px;
    height: 14px;
    margin-left: 3px;
}

/* Adjust CTA button when scrolled */
.navbar.scrolled .cta-button {
    padding: 6px 16px;
    font-size: 0.85em;
}


/* Smooth transitions for all navbar elements */
/* .navbar * {
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
} */

/* Logo bounce effect */
.navbar.scrolled .nav-logo {
    font-size: var(--font-size-base);
    animation: logoBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s both;
}

@keyframes logoBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}


/* Smooth transform for sticky positioning */
.navbar.sticky {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes logoBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

/* CTA button bounce effect */
.navbar.scrolled .cta-button {
    padding: 6px 16px;
    font-size: 0.85em;
    animation: buttonBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
}

@keyframes buttonBounce {
    0% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(0.9) translateY(-2px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}


/* Smooth hover effects with bounce */
.navbar.scrolled .cta-button:hover {
    transform: scale(1.05) translateY(-1px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Add a subtle pulse effect when scrolled */
.navbar.scrolled::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 27px;
    z-index: -1;
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.functional-icon {
    display: flex;
    align-items: center;
    height: 20px;
    margin-right: 10px;
}

.functional-icon span {
    display: block;
    width: 4px;
    height: 18px;
    background-color: #333;
    border-radius: 2px;
    margin-right: 2px;
    transform: skewX(-10deg);
}

.functional-icon span:nth-child(1) {
    height: 14px;
    margin-top: 4px;
}

.functional-icon span:nth-child(2) {
    height: 18px;
}

.functional-icon span:nth-child(3) {
    height: 16px;
    margin-top: 2px;
}

.functional-icon span:nth-child(4) {
    width: 8px;
    height: 18px;
    border-radius: 2px;
    transform: none;
    margin-left: 4px;
}


.nav-logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: #333;
}

.logo-icon {
    display: none;
    /* Hide the emoji icon */
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-link {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #000;
}

/* CTA Button */
.cta-button {
    background: var(--accent-color);
    color: #0a0a0a;
    border: 1px solid var(--accent-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
   
    color: #0a0a0a;
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.cta-button.primary {
    background: var(--accent-color);
    color: #0a0a0a;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 136, 0.5);
}


/* ******************************************************************************************************************* */
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    /* margin-bottom: 10%; */
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, 
        var(--primary-bg) 0%, 
        var(--secondary-bg) 100%);
}


.hero-container {
    position: absolute;
    z-index: 1;
    width: 90%;
    max-width: 900px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20%;
  
    /* background-color: #00cc6a; */
}

/* Background Card Layers - 5 cards stacked with cycling animation */
.hero-card-back-1,
.hero-card-back-2,
.hero-card-back-3,
.hero-card-back-4,
.hero-card-back-5 {
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(32, 154, 53, 0.05) 0%, 
        rgba(41, 244, 136, 0.02) 100%);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border-radius: 32px;
    border: 1px solid var(--accent-color);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 10px 40px rgba(0, 255, 136, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Position 1 - Front card (newest) */
.hero-card-back-1 {
    width: 100%;
    height: 100%;
    top: 0px;
    opacity: 0.85;
    z-index: 5;
    transform: scale(1) translateY(0px) translateZ(0px);
}

/* Position 2 */
.hero-card-back-2 {
    width: 95%;
    height: 100%;
    top: -50px;
    opacity: 0.7;
    z-index: 4;
    transform: scale(0.95) translateY(15px) translateZ(-50px);
}

/* Position 3 */
.hero-card-back-3 {
    width: 90%;
    height: 100%;
    top: -100px;
    opacity: 0.6;
    z-index: 3;
    transform: scale(0.90) translateY(20px) translateZ(-100px);
}

/* Position 4 */
.hero-card-back-4 {
    width: 85%;
    height: 100%;
    top: -150px;
    opacity: 0.5;
    z-index: 2;
    transform: scale(0.85) translateY(25px) translateZ(-150px);
}

/* Position 5 - Back card (about to disappear) */
.hero-card-back-5 {
    width: 80%;
    height: 100%;
    top: -200px;
    opacity: 0.4;
    z-index: 1;
    transform: scale(0.80) translateY(30px) translateZ(-200px);
}

/* Transition states for cycling animation */
.hero-card-back-1.transitioning-out {
    opacity: 0;
    transform: scale(0.75) translateY(35px) translateZ(-250px);
    z-index: 0;
}

.hero-card-back-1.moving-back { z-index: 4; }
.hero-card-back-2.moving-back { z-index: 3; }
.hero-card-back-3.moving-back { z-index: 2; }
.hero-card-back-4.moving-back { z-index: 1; }
.hero-card-back-5.moving-back { z-index: 0; }

.hero-card-back-1.transitioning-in {
    width: 100%;
    height: 100%;
    top: 0px;
    opacity: 0;
    z-index: 5;
    transform: scale(1.05) translateY(-20px) translateZ(20px);
}

.hero-card-back-1.transitioning-in.visible {
    opacity: 0.85;
    transform: scale(1) translateY(0px) translateZ(0px);
}

/* Hero Card Content Styling */
.hero-card,
.hero-card-back-1,
.hero-card-back-2,
.hero-card-back-3,
.hero-card-back-4,
.hero-card-back-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}

/* Card content wrapper */
.card-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    max-width: 700px;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card heading styles */
.card-heading {
    font-size: clamp(16px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card description styles */
.card-description {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.6;
    margin: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}



/* Position 1 - Front card (fully visible) */
.hero-card-back-1 .card-content {
    opacity: 1;
    filter: blur(0px) brightness(1);
}

.hero-card-back-1 .card-heading {
    color: var(--text-primary);
}

.hero-card-back-1 .card-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Position 2 */
.hero-card-back-2 .card-content {
    opacity: 0.50;
    filter: blur(8px) brightness(0.9);
}

.hero-card-back-2 .card-heading {
    color: rgba(255, 255, 255, 0.85);
}

.hero-card-back-2 .card-description {
    color: rgba(255, 255, 255, 0.6);
}

/* Position 3 */
.hero-card-back-3 .card-content {
    opacity: 0.6;
    filter: blur(1px) brightness(0.8);
}

.hero-card-back-3 .card-heading {
    color: rgba(255, 255, 255, 0.7);
}

.hero-card-back-3 .card-description {
    color: rgba(255, 255, 255, 0.5);
}

/* Position 4 */
.hero-card-back-4 .card-content {
    opacity: 0.45;
    filter: blur(1.5px) brightness(0.7);
}

.hero-card-back-4 .card-heading {
    color: rgba(255, 255, 255, 0.6);
}

.hero-card-back-4 .card-description {
    color: rgba(255, 255, 255, 0.4);
}

/* Position 5 - Back card (most faded) */
.hero-card-back-5 .card-content {
    opacity: 0.3;
    filter: blur(2px) brightness(0.6);
}

.hero-card-back-5 .card-heading {
    color: rgba(255, 255, 255, 0.5);
}

.hero-card-back-5 .card-description {
    color: rgba(255, 255, 255, 0.3);
}

/* Transition states for content during cycling */
.hero-card-back-1.transitioning-out .card-content {
    opacity: 0;
    filter: blur(3px) brightness(0.5);
    transform: scale(0.95);
}

.hero-card-back-1.transitioning-in .card-content {
    opacity: 0;
    filter: blur(2px) brightness(0.7);
    transform: scale(1.05);
}

.hero-card-back-1.transitioning-in.visible .card-content {
    opacity: 1;
    filter: blur(0px) brightness(1);
    transform: scale(1);
}

/* Glow effect for front card heading */
.hero-card-back-1 .card-heading {
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}

/* Emoji animation for front card */
.hero-card-back-1 .card-emoji {
    animation: emojiFloat 3s ease-in-out infinite;
}

/* Card Image Styling */
.card-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  /* margin-bottom: 0.5rem; */
  opacity: 0;
  animation: fadeInImage 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* *************************************************************************************************************************** */

/* Features Section */
.features {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(to bottom, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    margin-bottom: 2000px;
}

.features-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.features-subtitle {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.features-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Scroll Tour Input */
.scroll-tour-container {
    display: flex;
    justify-content: center;
    margin: var(--spacing-3xl) 0;
    transition: all 0.1s ease;
    /* position: relative; */
    flex-direction: column;
    align-items: center;
}

.scroll-tour-input-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    transition: all 0.1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: grayscale(100%) brightness(0.6);
    opacity: 0.5;
}

/* When input is in center of screen - activate colors */
.scroll-tour-input-wrapper.in-center {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

.scroll-tour-input {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: #666666;
    /* Grayscale color by default */
    background: rgba(100, 100, 100, 0.05);
    border: 1px solid #666666;
    border-radius: var(--radius-xl);
    text-align: center;
    font-family: var(--font-family);
    transition: all 0.1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 10px rgba(100, 100, 100, 0.1);
}

/* Activated state - colorful */
.scroll-tour-input-wrapper.in-center .scroll-tour-input {
    color: var(--accent-color);
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.scroll-tour-input:focus {
    outline: none;
}

.scroll-tour-input-wrapper.in-center .scroll-tour-input:focus {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

.scroll-tour-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.scroll-tour-cursor {
    position: absolute;
    right: var(--spacing-lg);
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: var(--accent-color);
    animation: blink 1s infinite;
    transition: left 0.1s ease-out, opacity 0.3s ease;
    pointer-events: none;
}

.scroll-tour-cursor.active {
    opacity: 1;
    animation: cursorBlink 1s infinite;
    /* Blink animation */
}

/* Cursor turns green when active */
.scroll-tour-input-wrapper.in-center .scroll-tour-cursor {
    background: var(--accent-color);
}

@keyframes cursorBlink {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}



/* Scroll Progress Line - Always visible */
.scroll-progress-line {
    position: relative;
    width: 1px;
    height: 1800px;
    background: rgba(255, 255, 255, 0.15);
    overflow: visible;
    opacity: 1;
    /* margin-top: var(--spacing-xl); */
}

/* Moving colored segment - Always visible, moves with scroll */
.scroll-progress-active {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom,
            transparent,
            var(--accent-color),
            var(--accent-color),
            transparent);
    box-shadow:
        0 0 15px var(--accent-color),
        0 0 30px rgba(0, 255, 136, 0.5);
    opacity: 1;
    transition: transform 0.05s linear;
    pointer-events: none;
    z-index: 10;
    /* Ensure it's above the line */
}

/* Glow effect for the active segment */
.scroll-progress-active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow:
        0 0 12px var(--accent-color),
        0 0 24px var(--accent-color),
        0 0 36px var(--accent-color);
}

/* Progress Icon Styling */
.progress-icon {
    position: absolute;
    bottom: calc(var(--spacing-md) * -1);
    left: 50%;
    font-size: var(--font-size-xl);
    background: var(--primary-bg);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(130, 71, 229, 0.3);
    opacity: 0;
    transform: translateX(-500px);
    transition: none;
    pointer-events: none;
    will-change: transform, opacity;
}

.progress-icon.visible {
    animation: pulseIcon 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 12px rgba(130, 71, 229, 0.3);
    }

    50% {
        transform: translateX(-50%) scale(1.15);
        box-shadow: 0 6px 16px rgba(130, 71, 229, 0.6);
    }
}


/* Base styles for all scroll progress boxes - inactive state */
.scroll-progress-box-1,
.scroll-progress-box-2,
.scroll-progress-box-3 {
    position: absolute;
    width: 500px;
    /* height: 100px; */
    padding: var(--spacing-lg) ;

    /* Black and white glassmorphism - inactive state */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(100%);
    -webkit-backdrop-filter: blur(20px) saturate(100%);

    /* Rounded corners */
    border-radius: 24px;

    /* Grayscale border */
    border: 1px solid rgba(255, 255, 255, 0.15);

    /* Subtle grayscale shadows */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);

    opacity: 0.4;
    transform: scale(0.99);
    transition: all 0.05s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    gap: var(--spacing-sm);
}


/* Individual positioning */
.scroll-progress-box-1 {
    top: 10%;
    right: 0%;
}

.scroll-progress-box-2 {
    top: 22%;
    left: 0%;
}

.scroll-progress-box-3 {
    top: 34%;
    right: 0%;
}


/* Shared shimmer overlay for all boxes */
.scroll-progress-box-1::before,
.scroll-progress-box-2::before,
.scroll-progress-box-3::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 50%,
            rgba(255, 255, 255, 0.03) 100%);
    pointer-events: none;
}

/* Shared inner border for all boxes */
.scroll-progress-box-1::after,
.scroll-progress-box-2::after,
.scroll-progress-box-3::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 23px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

/* Active state - green glow for all boxes */
.scroll-progress-box-1.active,
.scroll-progress-box-2.active,
.scroll-progress-box-3.active {
    opacity: 1;
    transform: scale(1);

    /* Green glassmorphism */
    background: linear-gradient(135deg,
            rgba(0, 255, 136, 0.15) 0%,
            rgba(0, 255, 136, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    /* Green glowing border */
    border-color: rgba(0, 255, 136, 0.6);

    /* Green glow shadows */
    box-shadow:
        0 12px 40px rgba(0, 255, 136, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 255, 136, 0.4);
}

/* Active shimmer - colorful for all boxes */
.scroll-progress-box-1.active::before,
.scroll-progress-box-2.active::before,
.scroll-progress-box-3.active::before {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%,
            rgba(0, 255, 136, 0.1) 100%);
}

/* Active inner border - brighter for all boxes */
.scroll-progress-box-1.active::after,
.scroll-progress-box-2.active::after,
.scroll-progress-box-3.active::after {
    border: 1px solid rgba(255, 255, 255, 0.15);
}


/* Meet box positioning */
.meet-box {
    position: absolute;
    width: 80vw;
    height: 40%;

    /* Black and white glassmorphism - inactive state */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(100%);
    -webkit-backdrop-filter: blur(20px) saturate(100%);

    /* Rounded corners */
    border-radius: 24px;

    /* Grayscale border */
    border: 1px solid rgba(255, 255, 255, 0.15);

    /* Subtle grayscale shadows */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);

    /* Center positioning with scale */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* overflow: hidden; */
}

/* Meet interface - hidden by default */
.meet-interface {
    width: 100%;
    height: 100%;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Show interface when active */
.meet-box.active .meet-interface {
    opacity: 1;
    transform: scale(1);
}

/* Meet header */
.meet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meet-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
}

.meet-icon {
    font-size: var(--font-size-xl);
}

.meet-timer {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

/* Participant grid */
.meet-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

/* Participant box */
.participant-box {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

/* .participant-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.01) 100%
    );
    pointer-events: none;
} */

/* Active state animation for participant boxes */
.meet-box.active .participant-box {
    animation: participantFadeIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* .meet-box.active .participant-box:nth-child(1) {
    animation-delay: 0.1s;
}

.meet-box.active .participant-box:nth-child(2) {
    animation-delay: 0.2s;
}

.meet-box.active .participant-box:nth-child(3) {
    animation-delay: 0.3s;
} */

.participant-box:nth-child(4) {
    position: relative;
    overflow: visible;
    z-index: 100;
    /* background-color: red; */
}

/* Broadcast Line */

.broadcast-line {
    position: absolute;
    top: 100%;
    right: 10%;
    width: 1px;
    height: 2000px;
    background: rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

/* Broadcast Indicator - positioned relative to bot-broadcast */
.broadcast-indicator {
    position: absolute;
    top: calc(100%);
    right: calc(10% - 4px);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow:
        0 0 20px var(--accent-color),
        0 0 40px rgba(0, 255, 136, 0.6);
    z-index: 5;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.3s ease;
    pointer-events: none;
    will-change: transform, opacity;
}

/* Show and animate indicator when meet-box is active */
.meet-box.active .broadcast-indicator {
    opacity: 1;
    animation: indicatorPulse 2s ease-in-out infinite;
}

/* Pulsing effect for the indicator */
/* @keyframes indicatorPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 20px var(--accent-color),
            0 0 40px rgba(0, 255, 136, 0.6);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 
            0 0 30px var(--accent-color),
            0 0 60px rgba(0, 255, 136, 0.9),
            0 0 80px rgba(0, 255, 136, 0.5);
    }
} */

/* Optional: Add a ripple effect */
.broadcast-indicator::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    animation: indicatorRipple 2s ease-out infinite;
}

@keyframes indicatorRipple {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes participantFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

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

/* Bot broadcast container */
.bot-broadcast {
    position: absolute;
    top: calc(100% - 50px);
    right: calc(10% - 50px);
    width: 100px;
    height: 100px;
    display: none;
    clip-path: inset(50% 0 0 0);
}

/* Show broadcast when meet-box is active */
.meet-box.active .bot-broadcast {
    display: block;
}

/* WiFi dot at bottom - larger and more prominent */
.wifi-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow:
        0 0 20px var(--accent-color),
        0 0 40px rgba(0, 255, 136, 0.6);
    z-index: 3;
}

/* WiFi waves base style - full circular shape */
.wifi-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0;
}

/* Small wave */
.wave-1 {
    width: 16px;
    height: 16px;
    animation: wifiGrowCircular 2.5s ease-out infinite;
}

/* Medium wave */
.wave-2 {
    width: 32px;
    height: 32px;
    animation: wifiGrowCircular 2.5s ease-out infinite 0.6s;
}

/* Large wave */
.wave-3 {
    width: 48px;
    height: 48px;
    animation: wifiGrowCircular 2.5s ease-out infinite 1.2s;
}

/* Circular growing animation */
@keyframes wifiGrowCircular {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
        border-color: transparent;
        filter: blur(0px);
    }

    10% {
        opacity: 0.3;
        border-color: rgba(0, 255, 136, 0.4);
    }

    25% {
        opacity: 0.7;
        border-color: var(--accent-color);
        filter: blur(0px);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        border-color: var(--accent-color);
        filter: blur(0px);
        box-shadow:
            0 0 15px var(--accent-color),
            0 0 30px rgba(0, 255, 136, 0.4),
            inset 0 0 10px rgba(0, 255, 136, 0.2);
    }

    75% {
        opacity: 0.5;
        border-color: rgba(0, 255, 136, 0.6);
        filter: blur(1px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.4);
        border-color: transparent;
        filter: blur(2px);
    }
}

/* Enhanced pulsing effect for the dot */
@keyframes dotPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 0 20px var(--accent-color),
            0 0 40px rgba(0, 255, 136, 0.6);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        box-shadow:
            0 0 30px var(--accent-color),
            0 0 60px rgba(0, 255, 136, 0.9),
            0 0 80px rgba(0, 255, 136, 0.5);
    }
}

.wifi-dot {
    animation: dotPulse 1.8s ease-in-out infinite;
}

/* Add a ripple effect for extra visual appeal */
.wifi-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    animation: ripple 1.8s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Broadcast Message Boxes */
.broadcast-message-box {
    position: absolute;
    right: 20px;
    width: 800px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    min-width: 220px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0.8;
}

/* Active state - green glow */
.broadcast-message-box.active {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(0, 255, 136, 0.12);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 255, 136, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 60px rgba(0, 255, 136, 0.25);
}

.broadcast-message-box:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Hover effect - only visible when not active */
/* .broadcast-message-box:not(.active):hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    opacity: 0.6;
} */




.broadcast-message-box p {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: color 0.3s ease;
}

/* Text color change when active */
.broadcast-message-box.active p {
    color: var(--accent-color);
}



/* Stagger animation for each box */
.broadcast-message-box:nth-child(1) {
    animation-delay: 0.2s;
    top: 15%;
}

.broadcast-message-box:nth-child(2) {
    animation-delay: 0.4s;
    top: 25%;
}

.broadcast-message-box:nth-child(3) {
    animation-delay: 0.6s;
    top: 35%;
}

.broadcast-message-box:nth-child(4) {
    animation-delay: 0.8s;
    top: 45%;
}



/* Participant avatar */
.participant-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.avatar-icon {
    font-size: var(--font-size-3xl);
    opacity: 0.6;
}

.participant-name {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Meet controls */
.meet-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meet-control-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: var(--font-size-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.meet-control-btn:hover {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-2px);
}

.meet-control-btn.end {
    background: linear-gradient(135deg,
            rgba(255, 59, 48, 0.3) 0%,
            rgba(255, 59, 48, 0.2) 100%);
    border-color: rgba(255, 59, 48, 0.5);
}

.meet-control-btn.end:hover {
    background: linear-gradient(135deg,
            rgba(255, 59, 48, 0.4) 0%,
            rgba(255, 59, 48, 0.3) 100%);
}

/* Active state for meet-box - green glow with interface */
.meet-box.active {
    opacity: 1;
    transform: translateX(-50%);

    /* Green glassmorphism */
    background: linear-gradient(135deg,
            rgba(0, 255, 136, 0.15) 0%,
            rgba(0, 255, 136, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    /* Green glowing border */
    border-color: rgba(0, 255, 136, 0.6);

    /* Green glow shadows */
    box-shadow:
        0 12px 40px rgba(0, 255, 136, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 255, 136, 0.4);
}

/* Active participant boxes get green accent */
.meet-box.active .participant-box {
    border-color: rgba(0, 255, 136, 0.3);
}

.meet-box.active .participant-avatar {
    border-color: rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg,
            rgba(0, 255, 136, 0.15) 0%,
            rgba(0, 255, 136, 0.05) 100%);
}

.meet-box.active .meet-control-btn {
    border-color: rgba(0, 255, 136, 0.3);
}


/* Bot-Broadcast Dashboard Styles - Dark Mode Wireframe */
.bot-broadcast-dashboard {
    position: absolute;
    transform: translateX(-90%);
    /* top: 60%; */
    bottom: 0;
    width: 80vw;
    background: var(--secondary-bg);
    /* border: 1px solid rgba(0, 255, 136, 0.3); */
    border-radius: 12px;
    box-shadow:
        0 0 10px rgba(0, 255, 136, 0.2),
        0 0 12px rgba(0, 255, 136, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 1;
    z-index: 100;
    display: grid;
    grid-template-columns: 200px 1fr;
    overflow: hidden;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    border-right: 1px solid rgba(0, 255, 136, 0.3);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    margin-bottom: var(--spacing-sm);
}

.sidebar-logo-text {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
}

.sidebar-subtitle {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-xs);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
}

.sidebar-item:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-color);
}

.sidebar-item.active {
    background: rgba(0, 255, 136, 0.15);
    color: var(--accent-color);
    font-weight: 500;
}

.sidebar-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--accent-color);
    border-radius: 0 2px 2px 0;
}

.sidebar-item-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.sidebar-badge {
    margin-left: auto;
    background: rgba(0, 255, 136, 0.2);
    color: var(--accent-color);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.sidebar-section-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: var(--spacing-md) 0 var(--spacing-xs) 0;
    padding-left: var(--spacing-xs);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(0, 255, 136, 0.05);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-user:hover {
    background: rgba(0, 255, 136, 0.1);
}

.sidebar-user-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(0, 255, 136, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--primary-bg);
    font-weight: 600;
}

.sidebar-user-info {
    flex: 1;
    min-width: 0;
}

.sidebar-user-name {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-user-email {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Dashboard Content Area */
.dashboard-content-wrapper {
    display: flex;
    flex-direction: column;
}

.dashboard-container {
    padding: var(--spacing-md);
    font-family: var(--font-primary);
    color: #e0e0e0;
}

.dashboard-header {
    margin-bottom: var(--spacing-md);
}

.dashboard-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item {
    transition: color 0.2s ease;
}

.breadcrumb-item:hover {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.breadcrumb-item.active {
    color: var(--accent-color);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
}

.dashboard-tabs {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    /* border-bottom: 1px solid rgba(0, 255, 136, 0.2); */
    overflow-x: auto;
}

.dashboard-tab {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dashboard-tab:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

.dashboard-tab.active {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    color: #ffffff;
}

.dashboard-table {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr 1.2fr 0.8fr;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    background: rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr 1.2fr 0.8fr;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    font-size: 11px;
    transition: background 0.2s ease;
}

.table-row:hover {
    background: rgba(0, 255, 136, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.col-id {
    font-family: 'Courier New', monospace;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 4px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.status-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-done {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.action-btn {
    padding: 4px 10px;
    background: transparent;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 4px;
    color: var(--accent-color);
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    color: #ffffff;
}

.dashboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-top: var(--spacing-sm); */
    /* border-top: 1px solid rgba(0, 255, 136, 0.2); */
}

.results-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.pagination {
    display: flex;
    gap: var(--spacing-xs);
}

.pagination-btn {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    color: #ffffff;
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .bot-broadcast-dashboard {
        grid-template-columns: 160px 1fr;
    }

    .sidebar-logo-text {
        font-size: var(--font-size-base);
    }

    .table-header,
    .table-row {
        grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr 1fr 0.7fr;
    }
}

@media (max-width: 768px) {
    .bot-broadcast-dashboard {
        display: none;
    }
}


/* Dashboard Video Stream Section */
.dashboard-video-stream {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: var(--spacing-md); */
    /* padding: var(--spacing-md); */
    /* background: rgba(0, 0, 0, 0.2); */
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.stream-section,
.transcript-section {
    background: rgba(0, 0, 0, 0.3);
    /* border: 1px solid rgba(0, 255, 136, 0.2); */
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.stream-section{
    background: transparent;
}

.transcript-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.transcript-icon {
    font-size: var(--font-size-lg);
}


.transcript-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* .live-badge {
    margin-left: auto;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    animation: livePulse 2s ease-in-out infinite;
} */

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.transcript-toggle {
    margin-left: auto;
    background: transparent;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 4px;
    padding: 4px 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.transcript-toggle:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-color);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    flex-grow: 1;
    /* background-color: red; */
}

.video-tile {
   
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.8) 0%, rgba(30, 30, 40, 0.8) 100%);
    /* border: 1px solid rgba(0, 255, 136, 0.2); */
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-tile:hover {
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.video-tile.bot-tile {
    border-color: rgba(0, 255, 136, 0.4);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.avatar-large {
    font-size: 48px;
    opacity: 0.6;
}

.video-label {
    position: absolute;
    bottom: var(--spacing-xs);
    left: var(--spacing-xs);
    background: rgba(0, 0, 0, 0.213);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    /* border: 1px solid rgba(0, 255, 136, 0.3); */
}



.video-tile:nth-child(1) {
    grid-column: 1 / span 3;
    grid-row: 1 / span 3;
}

.video-tile:nth-child(2) {
    grid-column: 4;
    grid-row: 1;
}

.video-tile:nth-child(3) {
    grid-column: 4;
    grid-row: 2;
}

.video-tile:nth-child(4) {
    grid-column: 4;
    grid-row: 3;
}

/* Video Shared Screen Styling */
.video-shared-screen {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shared-screen-video {
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.shared-screen-video.loaded {
    opacity: 1;
}

/* Video tile styling */
.video-tile {
    border-radius: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* .video-tile:hover {
    transform: scale(1.02);
} */

.video-label {
    position: absolute;
    bottom: var(--spacing-xs);
    left: var(--spacing-xs);
    right: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    backdrop-filter: blur(10px);
    border-radius: var(--spacing-xs);
    color: var(--text-primary);
    font-size: var(--font-size-xs);
    font-weight: 500;
    text-align: center;
    z-index: 1;
}

/* Loading state */
.video-shared-screen::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: videoLoading 1s linear infinite;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-shared-screen.video-loaded::before {
    opacity: 0;
}

@keyframes videoLoading {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* Add shimmer effect to presentation content */
.presentation-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: shimmer 3s infinite;
}

/* Transcript Feed */
.transcript-feed {
    padding: var(--spacing-md);
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.transcript-feed::-webkit-scrollbar {
    width: 6px;
}

.transcript-feed::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.transcript-feed::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 136, 0.3);
    border-radius: 3px;
}

.transcript-feed::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 136, 0.5);
}

.transcript-message {
    background: rgba(0, 0, 0, 0.2);
    /* border: 1px solid rgba(0, 255, 136, 0.1); */
    border-radius: 6px;
    padding: var(--spacing-sm);
    transition: all 0.2s ease;
    animation: messageSlideIn 0.3s ease-out;
    opacity: 0;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

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

.transcript-message.visible {
    opacity: 1;
}

.transcript-message:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
}

.transcript-message.bot-message {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
}

.message-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.message-text.typing::after {
    content: '▋';
    animation: blinkCursor 0.8s infinite;
    color: var(--accent-color);
    margin-left: 2px;
}

@keyframes blinkCursor {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}


/* Typing indicator for pending messages */
.typing-indicator {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: var(--spacing-xs);
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}



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

.speaker-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-color);
}

.bot-message .speaker-name {
    color: var(--accent-color);
}

.message-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.message-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .dashboard-video-stream {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .transcript-feed {
        max-height: 200px;
    }
}


/* ******************************************************************************************************************* */
/* Use Less Section */
.use-less {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-bg);
}

.use-less-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.use-less-visual {
    display: flex;
    justify-content: center;
}

.automation-demo {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 400px;
    width: 100%;
}

.demo-step {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.demo-step.active {
    opacity: 1;
    border-color: var(--accent-color);
    background: rgba(0, 255, 136, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.step-icon {
    font-size: var(--font-size-xl);
}

.step-content p {
    color: var(--text-primary);
    font-weight: 500;
}

.use-less-text h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
}

.use-less-text p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Approach Section */
.approach {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-bg);
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-content h3 {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
}

.approach-text {
    text-align: left;
}

.approach-text p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* ******************************************************************************************************************* */
/* FAQ Section */

.section-heading {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
        margin: 40px 0 30px 0;
        padding: 0 20px;
    }
}

.faq {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: 500;
    padding: var(--spacing-xl) 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-icon {
    font-size: var(--font-size-xl);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: var(--spacing-xl);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Problem/Solution Section */
.problem-solution-container {
    /* position: relative; */
    display: flex;

    justify-content: center;
    padding: 20px 20px;
    /* background-color: red; */
}

.problem-box,
.solution-box {
    /* background: white; */
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    width: 600px;
    height: fit-content;
    /* position: absolute; */
}

.problem-box {
    background: #FCE7F0;
    padding-right: 50px;
    position: relative;


}

.arrow-image {
    width: 60px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    position: absolute;
    right: -65px;
    top: 0;
    /* transform: translateY(-50%); */
    z-index: 10;
}

/* Optional: Add hover effect */
.arrow-image:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.solution-box {
    background: #D0F8EE;
    transform: translateX(-50px);
    margin-top: 60px;

}

.box-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.emoji {
    font-size: 20px;
}

.box-title {
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

.box-content {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.arrow-connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .problem-solution-container {
        flex-direction: column;
        gap: 20px;
    }

    .arrow-connector {
        transform: rotate(90deg);
    }

    .problem-box,
    .solution-box {
        max-width: 100%;
        width: 100%;
    }
}

/* ******************************************************************************************************************* */
/* Reviews Section */
.reviews-section {
    background: var(--primary-bg);
    color: #fff;
    padding: 120px 20px 140px;
    position: relative;
    overflow: hidden;
    /* background-color: #00cc6a; */
}

.reviews-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.reviews-header {
    text-align: center;
    /* margin-bottom: 80px; */
}

.stars {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 8px;
}

.reviews-title {
    font-size: 120px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin: 0;
    /* background-color: red; */
}



.reviews-field {
    position: relative;
    height: clamp(1600px, 110vw, 2200px);
    /* margin-bottom: 200px; */
    /* overflow: hidden; */
    pointer-events: none;
    /* padding: 0 clamp(40px, 6vw, 140px); */
}


.review-card {
    position: absolute;
    top: var(--top, 50%);
    left: var(--left, 50%);
    width: clamp(220px, 18vw, 320px);
    padding: 40px;
    background: linear-gradient(155deg, rgba(12, 24, 40, 0.5) 0%, rgba(18, 30, 48, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    box-shadow:
        0 36px 66px rgba(3, 10, 24, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(52px);
    -webkit-backdrop-filter: blur(52px);
    transform-origin: center;
    animation: driftCycle var(--duration, 32s) linear infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
    pointer-events: auto;
}

/* .review-card::before {
    content: '';
    position: absolute;
    inset: -40% -30% 20% -50%;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.22), transparent 60%);
    opacity: 0.75;
    transform: rotate(32deg);
    transition: opacity 0.45s ease;
    mix-blend-mode: screen;
} */

.review-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}


.review-card:hover {
    animation-play-state: paused;
    box-shadow:
        0 38px 70px rgba(3, 10, 24, 0.6),
        0 20px 40px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 0 60px rgba(0, 255, 136, 0.2);
    border-color: rgba(255, 255, 255, 0.32);
    z-index: 100;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}


.review-card:hover::before {
    opacity: 1;
}

@keyframes driftCycle {
    0% {
        transform: translate3d(calc(var(--driftX, 70vw) * -1.1), calc(var(--sway, 48px) * -0.9), 0) rotate(-9deg) scale(0.86);
        opacity: 0;
    }

    12.5% {
        transform: translate3d(calc(var(--driftX, 70vw) * -0.85), calc(var(--sway, 48px) * -0.6), 0) rotate(-6deg) scale(0.9);
        opacity: 0.85;
    }

    25% {
        transform: translate3d(calc(var(--driftX, 70vw) * -0.55), calc(var(--sway, 48px) * -0.35), 0) rotate(-3deg) scale(0.95);
        opacity: 0.95;
    }

    37.5% {
        transform: translate3d(calc(var(--driftX, 70vw) * -0.25), calc(var(--sway, 48px) * -0.15), 0) rotate(-1deg) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1.04);
        opacity: 1;
    }

    62.5% {
        transform: translate3d(calc(var(--driftX, 70vw) * 0.3), calc(var(--sway, 48px) * 0.25), 0) rotate(2deg) scale(1.01);
        opacity: 0.95;
    }

    75% {
        transform: translate3d(calc(var(--driftX, 70vw) * 0.6), calc(var(--sway, 48px) * 0.55), 0) rotate(4deg) scale(0.97);
        opacity: 0.75;
    }

    87.5% {
        transform: translate3d(calc(var(--driftX, 70vw) * 0.9), calc(var(--sway, 48px) * 0.9), 0) rotate(6deg) scale(0.9);
        opacity: 0.45;
    }

    100% {
        transform: translate3d(calc(var(--driftX, 70vw) * 1.1), calc(var(--sway, 48px) * 1.25), 0) rotate(7deg) scale(0.85);
        opacity: 0;
    }
}

.card-1 {
    --top: 3%;
    --left: 6%;
    --driftX: 58vw;
    --duration: 27s;
    --delay: -5s;
    --sway: 70px;
}

.card-2 {
    --top: 7%;
    --left: 28%;
    --driftX: 36vw;
    --duration: 22s;
    --delay: -14s;
    --sway: 54px;
}

.card-3 {
    --top: 10%;
    --left: 54%;
    --driftX: 48vw;
    --duration: 31s;
    --delay: -9s;
    --sway: 66px;
}

.card-4 {
    --top: 5%;
    --left: 78%;
    --driftX: 64vw;
    --duration: 35s;
    --delay: -21s;
    --sway: 60px;
}

.card-5 {
    --top: 12%;
    --left: 92%;
    --driftX: 28vw;
    --duration: 24s;
    --delay: -3s;
    --sway: 74px;
}

.card-6 {
    --top: 19%;
    --left: 10%;
    --driftX: 44vw;
    --duration: 29s;
    --delay: -17s;
    --sway: 62px;
}

.card-7 {
    --top: 24%;
    --left: 34%;
    --driftX: 58vw;
    --duration: 33s;
    --delay: -6s;
    --sway: 72px;
}

.card-8 {
    --top: 22%;
    --left: 60%;
    --driftX: 32vw;
    --duration: 26s;
    --delay: -12s;
    --sway: 56px;
}

.card-9 {
    --top: 27%;
    --left: 82%;
    --driftX: 52vw;
    --duration: 30s;
    --delay: -18s;
    --sway: 68px;
}

.card-10 {
    --top: 30%;
    --left: 4%;
    --driftX: 38vw;
    --duration: 21s;
    --delay: -2s;
    --sway: 64px;
}

.card-11 {
    --top: 38%;
    --left: 24%;
    --driftX: 62vw;
    --duration: 28s;
    --delay: -11s;
    --sway: 76px;
}

.card-12 {
    --top: 42%;
    --left: 50%;
    --driftX: 46vw;
    --duration: 25s;
    --delay: -27s;
    --sway: 70px;
}

.card-13 {
    --top: 37%;
    --left: 72%;
    --driftX: 58vw;
    --duration: 34s;
    --delay: -8s;
    --sway: 60px;
}

.card-14 {
    --top: 44%;
    --left: 16%;
    --driftX: 30vw;
    --duration: 32s;
    --delay: -15s;
    --sway: 82px;
}

.card-15 {
    --top: 48%;
    --left: 90%;
    --driftX: 64vw;
    --duration: 36s;
    --delay: -5s;
    --sway: 74px;
}

.card-16 {
    --top: 52%;
    --left: 6%;
    --driftX: 42vw;
    --duration: 24s;
    --delay: -9s;
    --sway: 78px;
}

.card-17 {
    --top: 56%;
    --left: 32%;
    --driftX: 60vw;
    --duration: 33s;
    --delay: -13s;
    --sway: 62px;
}

.card-18 {
    --top: 60%;
    --left: 58%;
    --driftX: 36vw;
    --duration: 29s;
    --delay: -19s;
    --sway: 80px;
}

.card-19 {
    --top: 54%;
    --left: 84%;
    --driftX: 52vw;
    --duration: 26s;
    --delay: -7s;
    --sway: 66px;
}

.card-20 {
    --top: 62%;
    --left: 12%;
    --driftX: 68vw;
    --duration: 31s;
    --delay: -23s;
    --sway: 72px;
}

.card-21 {
    --top: 68%;
    --left: 38%;
    --driftX: 44vw;
    --duration: 28s;
    --delay: -4s;
    --sway: 86px;
}

.card-22 {
    --top: 72%;
    --left: 64%;
    --driftX: 56vw;
    --duration: 35s;
    --delay: -16s;
    --sway: 74px;
}

.card-23 {
    --top: 74%;
    --left: 2%;
    --driftX: 48vw;
    --duration: 27s;
    --delay: -10s;
    --sway: 82px;
}

.card-24 {
    --top: 70%;
    --left: 88%;
    --driftX: 34vw;
    --duration: 22s;
    --delay: -6s;
    --sway: 78px;
}

.card-25 {
    --top: 76%;
    --left: 20%;
    --driftX: 62vw;
    --duration: 30s;
    --delay: -18s;
    --sway: 70px;
}

.card-26 {
    --top: 82%;
    --left: 46%;
    --driftX: 40vw;
    --duration: 24s;
    --delay: -12s;
    --sway: 84px;
}

.card-27 {
    --top: 86%;
    --left: 72%;
    --driftX: 54vw;
    --duration: 29s;
    --delay: -5s;
    --sway: 76px;
}

.card-28 {
    --top: 90%;
    --left: 8%;
    --driftX: 66vw;
    --duration: 32s;
    --delay: -21s;
    --sway: 88px;
}

.card-29 {
    --top: 94%;
    --left: 58%;
    --driftX: 38vw;
    --duration: 26s;
    --delay: -15s;
    --sway: 80px;
}

.card-30 {
    --top: 98%;
    --left: 84%;
    --driftX: 52vw;
    --duration: 34s;
    --delay: -9s;
    --sway: 74px;
}



@media (max-width: 900px) {
    .reviews-field {
        height: auto;
        margin-bottom: 80px;
        pointer-events: auto;
    }

    .review-card {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 24px;
        animation: none;
        opacity: 1;
    }
}




.review-number {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.review-author {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 150px;
    /* margin-top: 80px; */
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 80px;
    font-weight: 300;
    margin: 0;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plus {
    color: #fff;
    font-size: 60px;
    vertical-align: super;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 60px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .card-1,
    .card-2,
    .card-3 {
        transform: rotate(0deg);
        margin-top: 0;
        animation: floatMobile 6s ease-in-out infinite;
    }

    @keyframes floatMobile {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    .reviews-stats {
        flex-direction: column;
        gap: 50px;
    }

    .stat-number {
        font-size: 50px;
    }
}

/* ******************************************************************************************************************* */
/* Footer */
.footer {
    background: var(--primary-bg);
    padding: var(--spacing-2xl) 0;
    /* background-color: green; */
    height: auto;
    /* background-color: green; */
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: greenyellow; */
    height: fit-content;
    border-top: 1px solid var(--border-color);
    margin-top: 200px;
    box-shadow: 0 -40px 120px rgba(0, 255, 136, 0.3);
    ;

}

.footer-upper-card {
    background: rgba(26, 26, 26, 0.4);
    border-radius: 24px;
    padding: 60px 40px;
    overflow: hidden;
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 400px;
    width: 80vw;
    z-index: 10;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -200px;
}

/* .footer-upper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.12) 100%
    );
    border-radius: 24px;
    pointer-events: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-upper-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.25) 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
} */

/* Grid Background */
.grid-background {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 400px;
    height: 400px;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.2) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg);
    opacity: 0.6;
    pointer-events: none;
    animation: gridPulse 3s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: perspective(500px) rotateX(60deg) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: perspective(500px) rotateX(60deg) scale(1.05);
    }
}

/* Get Started Content */
.get-started-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
    position: relative;
    gap: 40px;
}

.get-started-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}

.get-started-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.get-started-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.get-started-btn {
    background: var(--accent-color);
    color: var(--primary-bg);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.get-started-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    background: var(--accent-hover);
}

.get-started-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 968px) {
    .get-started-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .get-started-text h3 {
        font-size: 1.5rem;
    }

    .get-started-text p {
        font-size: 1rem;
    }

    .get-started-action {
        align-items: center;
    }

    .get-started-note {
        text-align: center;
    }

    .grid-background {
        width: 300px;
        height: 300px;
        bottom: -40px;
        right: -40px;
    }
}

@media (max-width: 640px) {
    .footer-upper-card {
        height: auto;
        min-height: 200px;
        padding: 40px 30px;
    }

    .get-started-text h3 {
        font-size: 1.3rem;
    }

    .get-started-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .grid-background {
        display: none;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    padding: 60px var(--spacing-xl) 40px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    font-size: 28px;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--accent-color);
}

/* Managed by Rolaa Section */
.managed-by-section {
    padding: 40px var(--spacing-xl) 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.managed-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 20%,
            rgba(255, 255, 255, 0.1) 80%,
            transparent 100%);
    margin-bottom: 32px;
}

.managed-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.managed-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.managed-brand {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color) 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 2px;
}

.managed-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 20px 0;
}

.managed-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.managed-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.managed-email:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.managed-email svg {
    flex-shrink: 0;
}

.managed-social {
    display: flex;
    gap: 12px;
}

.managed-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.managed-social-link:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive Managed Section */
@media (max-width: 768px) {
    .managed-by-section {
        padding: 32px var(--spacing-lg) 24px;
    }

    .managed-brand {
        font-size: 24px;
    }

    .managed-tagline {
        font-size: 12px;
    }

    .managed-contact {
        gap: 12px;
    }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 40px var(--spacing-lg);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 20px var(--spacing-lg);
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}