/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
html{
    scroll-behavior: smooth;
}

:root {
    /* Dark Theme (Default) */
    --bg-primary: #0a0a0a;
    --bg-secondary: rgba(255, 255, 255, 0.02);
    --text-primary: #ffffff;
     --text-secondary: #d0d0d0;
     --text-muted: #b6b8bd;
     --highlight-color-muted: #515561;
    --card-bg: rgba(255, 255, 255, 0.02);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-color-solid: rgba(255, 255, 255, 1);
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #f5f5f5;
    --bg-secondary: rgba(0, 0, 0, 0.02);
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
      --text-muted: #888888;
    --border-color: rgba(0, 0, 0, 0.08);
    --card-bg: rgba(255, 255, 255, 0.8);
     --border-color: rgba(0, 0, 0, 0.08);
    --border-color-solid: rgba(0, 0, 0, 0.3);
    
    
}




body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    background: var(--bg-primary);
}



/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color-solid);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    cursor: pointer;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
    
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color-solid);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ===== RESPONSIVE HEADER ===== */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
    .header {
        padding: 1rem 1.5rem;
        height: 70px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .header-right {
        gap: 1rem;
    }
}

/* Tablets & Large Phones */
@media (max-width: 768px) {
    .header {
        padding: 0.8rem 1.2rem;
        height: 65px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .header-right {
        gap: 0.8rem;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .header {
        padding: 0.6rem 0.8rem;
        height: 60px;
    }

    .logo {
        font-size: 1rem;
    }

    .header-right {
        gap: 0.5rem;
    }
}
/* ===== BOOKING BUTTON (From Uiverse) ===== */
.booking-btn button {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: #515561;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    height: 45px;
    width: 110px;
   
}

.booking-btn button span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

.booking-btn button svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

.booking-btn button:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

.booking-btn button:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.booking-btn button:hover span {
    transform: translateX(5em);
}

.booking-btn button:active {
    transform: scale(0.95);
    
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }
    to {
        transform: translateY(-0.1em);
    }
}

/* ===== TOGGLE SWITCH (From Uiverse) ===== */
.ui-switch {
    --switch-bg: rgb(135, 150, 165);
    --switch-width: 48px;
    --switch-height: 20px;
    --circle-diameter: 32px;
    --circle-bg: #515561;
    --circle-inset: calc((var(--circle-diameter) - var(--switch-height)) / 2);
    display: inline-block;
}



/* ===== THEME VARIABLES ===== */




.ui-switch input {
    display: none;
}

.slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: var(--switch-width);
    height: var(--switch-height);
    background: var(--switch-bg);
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    display: block;
}

.slider .circle {
    top: calc(var(--circle-inset) * -1);
    left: 0;
    width: var(--circle-diameter);
    height: var(--circle-diameter);
    position: absolute;
    background: var(--circle-bg);
    border-radius: inherit;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjAiIHdpZHRoPSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiCiAgICAgICAgZD0iTTkuMzA1IDEuNjY3VjMuNzVoMS4zODlWMS42NjdoLTEuMzl6bS00LjcwNyAxLjk1bC0uOTgyLjk4Mkw1LjA5IDYuMDcybC45ODItLjk4Mi0xLjQ3My0xLjQ3M3ptMTAuODAyIDBMMTMuOTI3IDUuMDlsLjk4Mi45ODIgMS40NzMtMS40NzMtLjk4Mi0uOTgyek0xMCA1LjEzOWE0Ljg3MiA0Ljg3MiAwIDAwLTQuODYyIDQuODZBNC44NzIgNC44NzIgMCAwMDEwIDE0Ljg2MiA0Ljg3MiA0Ljg3MiAwIDAwMTQuODYgMTAgNC44NzIgNC44NzIgMCAwMDEwIDUuMTM5em0wIDEuMzg5QTMuNDYyIDMuNDYyIDAgMDExMy40NzEgMTBhMy40NjIgMy40NjIgMCAwMS0zLjQ3MyAzLjQ3MkEzLjQ2MiAzLjQ2MiAwIDAxNi41MjcgMTAgMy40NjIgMy40NjIgMCAwMTEwIDYuNTI4ek0xLjY2NSA5LjMwNXYxLjM5aDIuMDgzdi0xLjM5SDEuNjY2em0xNC41ODMgMHYxLjM5aDIuMDg0di0xLjM5aC0yLjA4NHpNNS4wOSAxMy45MjhMMy42MTYgMTUuNGwuOTgyLjk4MiAxLjQ3My0xLjQ3My0uOTgyLS45ODJ6bTkuODIgMGwtLjk4Mi45ODIgMS40NzMgMS40NzMuOTgyLS45ODItMS40NzMtMS40NzN6TTkuMzA1IDE2LjI1djIuMDgzaDEuMzg5VjE2LjI1aC0xLjM5eiIgLz4KPC9zdmc+");
    background-repeat: no-repeat;
    background-position: center center;
    transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 1px 3px 0px rgba(0,0,0,0.12);
}

.slider .circle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    border-radius: inherit;
    transition: all 500ms;
    opacity: 0;
}

.ui-switch input:checked+.slider .circle {
    left: calc(100% - var(--circle-diameter));
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjAiIHdpZHRoPSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiCiAgICAgICAgZD0iTTQuMiAyLjVsLS43IDEuOC0xLjguNyAxLjguNy43IDEuOC42LTEuOEw2LjcgNWwtMS45LS43LS42LTEuOHptMTUgOC4zYTYuNyA2LjcgMCAxMS02LjYtNi42IDUuOCA1LjggMCAwMDYuNiA2LjZ6IiAvPgo8L3N2Zz4=");
}

.ui-switch input:active+.slider .circle::before {
    transition: 0s;
    opacity: 1;
    width: 0;
    height: 0;
}



/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0a0a0a;
    padding: 2rem 0;
    padding: 6rem 0rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

.hero .container {
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 450px;
}

/* ===== RECORDING INDICATOR ===== */
.recording-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

.recording-dot {
    width: 12px;
    height: 12px;
    background: #ff3b30;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

.recording-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    letter-spacing: 2px;
}

/* Recording dot pulse animation */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== HERO CONTENT ===== */
.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

.hero-content h1 .highlight {
    color: #515561;
    position: relative;
}



.hero-subtext {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
}
.timer-display {
    font-size: 0.85rem;
    font-weight: 500;
    color: #b0b0b0;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-variant-numeric: tabular-nums;
    min-width: 80px;
    text-align: center;
}



#camera-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    position: relative;
    margin: 0 auto;
}

#camera-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}






#camera-container {
    width: 100%;
    max-width: 500px;
    height: 450px;
    margin: 0 auto;
    
}

#camera-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 2rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

.hero .container {
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 450px;
}

/* ===== RECORDING INDICATOR ===== */
.recording-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

.recording-dot {
    width: 12px;
    height: 12px;
    background: #ff3b30;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.recording-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* Recording dot pulse animation */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== HERO CONTENT ===== */
.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.hero-content h1 .highlight {
    color: var(--highlight-color-muted);
    position: relative;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.timer-display {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-variant-numeric: tabular-nums;
    min-width: 80px;
    text-align: center;
}

/* ===== CAMERA CONTAINER ===== */
#camera-container {
    width: 100%;
    max-width: 650px;
    height: 350px;
    margin: 0 auto;
}

#camera-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 992px) {
    .hero {
        padding: 5rem 0 2rem;
    }

    .hero-grid {
        gap: 2.5rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    #camera-container {
       height: 300px;
        max-width: 550px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0 2rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        align-items: center;
        order: 2;
    }

    .hero-visual {
        order: 1;
        min-height: 300px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-content h1 {
        margin-top: -20px;
        font-size: 2.8rem;
        letter-spacing: -0.5px;
    }

    .hero-content h1 br {
        display: none;
    }

    .hero-subtext {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero-subtext br {
        display: none;
    }

    .recording-indicator {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: -80px;
    }

    .recording-dot {
        width: 10px;
        height: 10px;
    }

    .recording-text {
        font-size: 0.7rem;
    }

    .timer-display {
        font-size: 0.75rem;
        padding: 0.2rem 0.8rem;
        min-width: 65px;
    }

    #camera-container {
        margin-top: -80px;
        height: 280px;
        max-width: 750px;

    }

     .btn-primary {
        padding: 0.8rem 2.2rem;
        font-size: 0.9rem;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 auto;
        position: relative;
        z-index: 10;
        margin-top: -10px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .hero {
        padding: 70px 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h1 .highlight::after {
        bottom: 2px;
        height: 4px;
    }

    .hero-subtext {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.7rem 1.8rem;
        font-size: 0.85rem;
    }

    .hero-visual {
        min-height: 250px;
        max-width: 320px;
    }

    #camera-container {
        height: 200px;
        max-width: 300px;
    }

    .recording-indicator {
        gap: 5px;
    }

    .recording-text {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .timer-display {
        font-size: 0.65rem;
        padding: 0.15rem 0.6rem;
        min-width: 55px;
    }

    .recording-dot {
        width: 8px;
        height: 8px;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-visual {
        max-width: 260px;
        min-height: 200px;
    }

    #camera-container {
        height: 200px;
        max-width: 480px;
    }

    .btn-primary {
        padding: 0.6rem 1.4rem;
        font-size: 0.75rem;
    }
}



















/* ===== SEE WORK BUTTON ===== */
.btn-primary {
    display: inline-block;
    background: #515561;
    color: #fff;
    padding: 1rem 2.8rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px #373a42;
}

.btn-primary:hover i {
    transform: translateX(6px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 4.5 rem;
        letter-spacing: -2px;
        text-align: center;
        overflow: hidden;
    }

    .hero-content h1 .highlight::after {
        bottom: 4px;
        height: 5px;
    }

    .hero-subtext {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-subtext br {
        display: none;
    }

    .btn-primary {
        padding: 0.8rem 2.2rem;
        font-size: 0.9rem;
    }

    .recording-indicator {
        margin-bottom: 2rem;
    }
}




/* ===== TIMELINE SECTION ===== */
.timeline {
    padding: 2rem 0;
    width: 1220px;
    background: #0a0a0a;
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;

    img {
        height: 350px;
        border: 1px solid rgba(255, 255, 255, 1);
        border-radius: 25px 25px 0px 0px;
        border-bottom: 0px; 
        width: 1220px;
    }
}

.timeline-container {
    border-bottom: solid 1px rgba(255, 255, 255, 1);
    margin-top: -100px;
    overflow: hidden;
    width: 1260px;
    display: flex;
    justify-content: center;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .timeline {
        width: 100%;
        padding: 1rem 0;
    }
    
    .timeline-container {
        width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
        margin-top: 20px;
        border-right: 0px;

    }
    
    .timeline img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}



/* ===== FEATURE SECTION ===== */
.feature-section {
    padding: 80px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-primary);
}

/* ===== SECTION LABEL ===== */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    
    background: var(--bg-primary);
}

.label-line {
    width: 30px;
    height: 1px;
    background: #515561;
}

.label-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== FEATURE HEADING ===== */
.feature-heading {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 3rem;
    color: var(--text-primary); /* Change from #ffffff to variable */
}

.feature-heading .highlight {
    color: var(--highlight-color-muted); /* Change from #515561 to variable */
    position: relative;
}

.feature-grid {
    position: relative;
}


.feature-grid img {
    width: 1200px;
    border: 0.5px solid var(--border-color-solid); /* Change from rgba to variable */
    max-width: 100%;
    display: block;
}
.feature-grid .desktop-img {
    width: 1200px;
    border: 0.5px solid var(--border-color-solid);
}

.feature-grid .mobile-img {
    width: 100%;
    height: auto;
    border: 0.5px solid var(--border-color-solid);
}


/* Mobile */
@media (max-width: 768px) {
    .feature-grid .desktop-img {
        display: none;
    }
    
    .feature-grid .mobile-img {
        display: block !important;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .feature-grid .desktop-img {
        display: block;
    }
    
    .feature-grid .mobile-img {
        display: none !important;
    }
}



/* ===== CATEGORY DROPDOWN ===== */
.work-section{
    border-top: 1px solid #f3f3f3;
    padding: 0 35px;
    padding-top: 50px;
}
/* ===== WORK SECTION ===== */
.work-section {
    border-top: 1px solid var(--border-color-solid);
    padding: 0 35px;
    padding-top: 50px;
    background: var(--bg-primary);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.left-work {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.left-work .feature-heading {
    margin-bottom: 0;
}

/* ===== CATEGORY DROPDOWN ===== */
.category-dropdown {
    position: relative;
    display: inline-block;
    min-width: 220px;
    cursor: pointer;
    margin-bottom: 50px;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

/* ===== DROPDOWN HEADER ===== */
.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    user-select: none;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.dropdown-header:hover {
    border-color: #a1a5b0;
    background: rgba(65, 105, 225, 0.05);
}

.dropdown-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-selected {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.dropdown-arrow {
    margin-left: auto;
    color: #666;
    font-size: 0.8rem;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.category-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    list-style: none;
    padding: 0.5rem;
    margin: 0;
    background: rgba(20, 20, 30, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.category-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== DROPDOWN ITEMS ===== */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(65, 105, 225, 0.1);
}

.dropdown-item.active {
    background: rgba(65, 105, 225, 0.15);
}

.dropdown-item .item-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 24px;
    transition: color 0.3s ease;
}

.dropdown-item .item-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.dropdown-item:hover .item-name {
    color: var(--text-primary);
}

.dropdown-item.active .item-name {
    color: var(--highlight-color-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .work-section {
        padding: 0 20px;
        padding-top: 40px;
    }
    
    .left-work .feature-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .work-section {
        padding: 0 15px;
        padding-top: 30px;
    }
    
    .left-work {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .left-work .feature-heading {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .category-dropdown {
        min-width: 180px;
        margin-bottom: 30px;
        width: 100%;
    }

    .dropdown-header {
        padding: 0.6rem 1rem;
        justify-content: space-between;
    }

    .dropdown-selected {
        font-size: 0.85rem;
    }

    .dropdown-item {
        padding: 0.6rem 0.8rem;
    }

    .dropdown-item .item-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .work-section {
        padding: 0 10px;
        padding-top: 20px;
    }
    
    .left-work .feature-heading {
        font-size: 1.6rem;
    }
    
    .category-dropdown {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    .dropdown-header {
        padding: 0.5rem 0.8rem;
    }
    
    .dropdown-selected {
        font-size: 0.8rem;
    }
    
    .dropdown-label {
        font-size: 0.6rem;
    }
}
.left-work{
    display: flex;
    align-items: center;
    justify-content: space-between;
}





.videos-container{
    width: 1152px;
    height: 1364.43px;
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
}

/* ===== MARQUEE SECTION ===== */
.marquee-section {
    padding: 1.5rem 0;
    background: var(--bg-primary);
    border-top: 1.5px solid var(--border-color-solid);
    border-bottom: 1.5px solid var(--border-color-solid);
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Gradient fade on edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
    transition: background 0.3s ease;
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
    transition: background 0.3s ease;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.marquee-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
    cursor: default;
}

.marquee-item:hover {
    color: var(--highlight-color-muted);
}

/* ===== MARQUEE ANIMATION ===== */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

/* ===== CTA HEADING ===== */
.cta-heading {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.cta-heading .highlight {
    color: var(--highlight-color-muted);
    position: relative;
    transition: color 0.3s ease;
}

/* ===== CTA SUBTEXT ===== */
.cta-subtext {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

/* ===== CTA BUTTON ===== */
.btn-cta {
    display: inline-block;
    background: #515561;
    color: #fff;
    padding: 1rem 2.8rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    background:#515561;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px #363941;
}

.btn-cta:hover i {
    transform: translateX(6px);
}

/* ===== CTA TAGLINE ===== */
.cta-tagline {
    font-size: 0.9rem;
    color: #f6f6f6;
    margin-top: 2rem;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-heading {
        font-size: 3rem;
    }

    .cta-subtext {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-heading {
        font-size: 2.5rem;
    }

    .cta-heading .highlight::after {
        bottom: 4px;
        height: 4px;
    }
}

/* ===== CTA FOOTER ===== */
.cta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.footer-logo {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}
@media (max-width: 992px) and (min-width: 769px) {
    .cta-footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.section-header {
    margin-bottom: 3rem;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header .label-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
}

.section-header h2 .highlight {
    color: #b6b8bd;
}

/* ===== VIDEO GRID ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* ===== VIDEO CARD ===== */
.video-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeIn 0.5s ease;
}

.video-card[style*="display: none"] {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.video-card:hover {
    border-color: var(--highlight-color-muted);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-card video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    background: #000;
}

.video-card h4 {
    padding: 1rem 1.2rem 0.3rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.video-card p {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

/* ===== FADE IN ANIMATION ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}
#testimonial-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

#testimonial-grid .video-card {
    display: block !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    background: transparent;
    border: none;
    box-shadow: none;
    animation: none !important;
    flex: 0 0 auto;
}

#testimonial-grid video {
    height: 400px;
    width: 300px;
    padding: 30px;
    object-fit: cover;
    border-radius: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: block !important;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    #testimonial-grid {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    #testimonial-grid video {
        height: 350px;
        width: 260px;
        padding: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    #testimonial-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    #testimonial-grid .video-card {
        width: 100%;
        max-width: 320px;
        display: block !important;
    }
    
    #testimonial-grid video {
        height: 320px;
        width: 100%;
        max-width: 300px;
        padding: 15px;
        display: block !important;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    #testimonial-grid {
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
    
    #testimonial-grid .video-card {
        max-width: 260px;
    }
    
    #testimonial-grid video {
        height: 250px;
        max-width: 250px;
        padding: 10px;
    }
}

/* toggle debugging */
/* ===== ONLY DISABLE COLOR/BACKGROUND TRANSITIONS ===== */
.theme-switching * {
    transition-property: none !important;
}

/* Keep other transitions (transform, box-shadow, etc.) */
.feature-card {
    transition: transform 0.3s ease, 
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.video-card {
    transition: transform 0.3s ease, 
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

/* Color transitions (these will be disabled during theme switch) */
body,
.hero,.hero-grid,.logo,
.feature-section,
.cta-section,
.marquee-section,.header,.hero-left,.recording-indicator,.timeline-container,.timeline,.timer-display,.cta-footer,.cta-section,.container {
    transition: background-color 0.3s ease, 
                border-color 0.3s ease;
}

.hero-content h1,
.cta-heading,
.feature-heading,
.cta-subtext,
.hero-subtext,
.footer-logo,
.footer-copy,
.marquee-item.header,.hero-left,.recording-indicator,.timeline-container,.cta-section, .cta-footer,.container {
    transition: color 0.3s ease;
}