﻿:root {
    --primary: #0a0e23;
    --secondary: #141a3a;
    --accent: #ff6f00;
    --accent-light: #ff8f33;
    --accent-dark: #e65c00;
    --text: #ffffff;
    --text-secondary: #b8c2d9;
    --card-bg: #1e2347;
    --glass: rgba(30, 35, 71, 0.7);
    --gradient: linear-gradient(135deg, #ff6f00 0%, #ff3e00 100%);
    --gradient-hover: linear-gradient(135deg, #ff8f33 0%, #ff5722 100%);
    --shadow-light: rgba(255, 111, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-heavy: rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    width: 100%;
    font-size: 16px;
}





/* Container and Layout Improvements */
.container, .container-fluid {
    padding: 0;
    width: 100%;
    margin: 0 auto;
}

/* Hero Slider Enhanced */
.slider-container {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 0.8s ease;
}

    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at 70% 50%, rgba(255, 111, 0, 0.08) 0%, rgba(10, 14, 35, 0.95) 70%);
        z-index: 1;
    }

    .slide.active {
        opacity: 1;
        transform: translateX(0);
    }

.slide-content {
    width: 55%;
    z-index: 2;
    padding-right: 3rem;
    animation: slideInLeft 0.8s ease-out;
}

    .slide-content h1 {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
        letter-spacing: -0.02em;
    }

    .slide-content h2 {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(1.9rem, 3vw, 2rem);
        font-weight: 500;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
        letter-spacing: -0.02em;
    }

    .slide-content p {
        font-size: clamp(1rem, 2vw, 1.25rem);
        color: var(--text-secondary);
        margin-bottom: 2.5rem;
        line-height: 1.6;
        max-width: 90%;
        font-weight: 400;
    }

.slide-image {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

    .slide-image img {
        max-width: 90%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 10px 30px rgba(255, 111, 0, 0.1);
        transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
        transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .slide-image:hover img {
        transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 15px 40px rgba(255, 111, 0, 0.2);
    }

    .slide-image::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
        filter: blur(80px);
        z-index: -1;
        opacity: 0.15;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        animation: pulse 4s ease-in-out infinite;
    }

/* Enhanced CTA Button */
.cta-button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: all 0.8s;
    }

    .cta-button:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 111, 0, 0.5);
        background: var(--gradient-hover);
    }

        .cta-button:hover::before {
            left: 100%;
        }

    .cta-button:active {
        transform: translateY(-1px) scale(1.02);
    }

/* Slider Dots Enhanced */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

    .dot::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient);
        transition: left 0.4s;
        border-radius: 50%;
    }

    .dot.active {
        transform: scale(1.3);
        background-color: transparent;
        border-color: var(--accent);
    }

        .dot.active::before {
            left: 0;
        }

    .dot:hover {
        transform: scale(1.2);
        background-color: rgba(255, 255, 255, 0.5);
    }

/* Features Section Enhanced */
.features {
    padding: 6rem 2%;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

    .features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 25% 25%, rgba(255, 111, 0, 0.05) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(255, 111, 0, 0.05) 0%, transparent 50%);
        z-index: 0;
    }

    .features > * {+


























































































        position: relative;
        z-index: 1;
    }

    .features h2 {
        font-family: 'Poppins', sans-serif;
        font-size: calc(1vw + 25px);
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: white;
        position: relative;
        display: inline-block;
        letter-spacing: -0.02em;
    }

        /* Dono lines (upar aur neeche) banani */
        .features h2::before,
        .features h2::after {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform 0.4s ease-out;
        }

        /* Neeche wali line */
        .features h2::after {
            bottom: -12px;
            transform-origin: right;
        }

        /* Upar wali line */
        .features h2::before {
            top: -12px;
            transform-origin: left;
        }

        /* Hover par dono line show */
        .features h2:hover::before,
        .features h2:hover::after {
            transform: scaleX(1);
        }


    .features p.subtitle {
        color: var(--text-secondary);
        margin-bottom: 5rem;
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
        font-weight: 400;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(30, 35, 71, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity:0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 111, 0, 0.05) 0%, transparent 100%);
        z-index: 0;
        transition: opacity 0.5s;
    }

    .feature-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(255, 111, 0, 0.1);
        border-color: rgba(255, 111, 0, 0.3);
    }

        .feature-card:hover::before {
            opacity:1;
        }

    .feature-card > * {
        position: relative;
        z-index: 1;
    }

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* Configurator Section Enhanced */
.configurator {
    background: rgba(30, 35, 71, 0.9);
    backdrop-filter: blur(15px);
    padding: 6rem 5%;
    border-radius: 30px;
    margin: 0 5% 8rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

    .configurator::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -150px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
        filter: blur(100px);
        opacity: 0.08;
        z-index: 0;
    }

    .configurator > * {
        position: relative;
        z-index: 1;
    }

    .configurator h2 {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(2rem, 3vw, 2.8rem);
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: white;
        position: relative;
        display: inline-block;
        letter-spacing: -0.02em;
    }

        .configurator h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(255, 111, 0, 0.3);
        }

    .configurator p.subtitle {
        color: var(--text-secondary);
        margin-bottom: 4rem;
        font-size: clamp(1rem, 2vw, 1.2rem);
        max-width: 700px;
        line-height: 1.6;
        font-weight: 400;
    }

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
}

.option-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .option-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 111, 0, 0.1), transparent);
        transition: left 0.6s;
    }

    .option-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 111, 0, 0.4);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

        .option-item:hover::before {
            left: 100%;
        }

    .option-item input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        width: 24px;
        height: 24px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        margin-right: 1.5rem;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        cursor: pointer;
        flex-shrink: 0;
    }

        .option-item input[type="radio"]:checked {
            border-color: var(--accent);
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255, 111, 0, 0.3);
        }

            .option-item input[type="radio"]:checked::after {
                content: '';
                position: absolute;
                top: 3px;
                left: 3px;
                width: 14px;
                height: 14px;
                background: var(--gradient);
                border-radius: 50%;
                animation: radioScale 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            }

.option-label {
    flex-grow: 1;
    font-weight: 500;
    font-size: 1.1rem;
    color: white;
}

.option-value {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.3rem;
    min-width: 60px;
    text-align: right;
    font-family: 'Poppins', sans-serif;
}

.disclaimer {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 800px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

    .disclaimer span {
        color: white;
        font-weight: 600;
    }

/* Demo Section Enhanced */
.demo-section {
    background-color: transparent;
    padding: 8rem 5%;
    margin-bottom:3px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

    .demo-section::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
        filter: blur(120px);
        opacity: 0.08;
        z-index: 0;
    }

    .demo-section::after {
        content: '';
        position: absolute;
        bottom: -200px;
        left: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
        filter: blur(120px);
        opacity: 0.05;
        z-index: 0;
    }

    .demo-section > * {
        position: relative;
        z-index: 1;
    }

    .demo-section h2 {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(2.5rem, 4vw, 4rem);
        font-weight: 800;
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
        background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.02em;
        cursor: pointer;
    }

        /* Top line (overline) */
        .demo-section h2::before {
            content: '';
            position: absolute;
            top: -10px; /* distance above text */
            left: 50%;
            transform: translateX(-50%);
            width: 0%;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(255, 111, 0, 0.3);
            transition: width 0.4s ease-in-out;
        }

        /* Bottom line (underline) */
        .demo-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px; /* distance below text */
            left: 50%;
            transform: translateX(-50%);
            width: 0%;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
            box-shadow: 0 2px 10px rgba(255, 111, 0, 0.3);
            transition: width 0.4s ease-in-out;
        }

        /* Hover effect: expand both lines */
        .demo-section h2:hover::before,
        .demo-section h2:hover::after {
            width: 100%;
        }


        

    .demo-section p {
        color: var(--text-secondary);
        max-width: 700px;
        margin: 0 auto 4rem;
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        line-height: 1.7;
        font-weight: 400;
        text-align:left;
    }

.demo-button {
    background: transparent;
    color: white;
    border: 2px solid var(--accent);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.2);
    text-transform: none;
    letter-spacing: 0.5px;
}

    .demo-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient);
        transition: all 0.6s;
        z-index: -1;
    }

    .demo-button:hover {
        color: white;
        border-color: transparent;
        box-shadow: 0 15px 40px rgba(255, 111, 0, 0.4);
        transform: translateY(-3px) scale(1.05);
    }

        .demo-button:hover::before {
            left: 0;
        }

/* Footer Enhanced */
footer {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(circle at 20% 20%, rgba(255, 111, 0, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 111, 0, 0.05) 0%, transparent 50%);
        z-index: 0;
    }

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 600;
}

    .footer-col h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 50px;
        height: 3px;
        background: var(--gradient);
        border-radius: 2px;
    }

.footer-about p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-size: 1rem;
}

.footer-about .social-links {
    display: flex;
    gap: 1rem;
}

    .footer-about .social-links a {
        color: var(--text-secondary);
        background: rgba(255, 255, 255, 0.05);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

        .footer-about .social-links a:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 20px rgba(255, 111, 0, 0.3);
            border-color: var(--accent);
        }

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 1rem;
    }

        .footer-col ul li a {
            color: var(--text-secondary);
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

            .footer-col ul li a:hover {
                color: var(--accent);
                padding-left: 8px;
                transform: translateX(5px);
            }

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

    .footer-bottom p {
        color: var(--text-secondary);
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

    .legal-links a {
        color: white !important;
        font-size: 0.9rem;
        transition: color 0.3s;
        text-decoration: none;
    }

        .legal-links a:hover {
            color: var(--accent);
        }



.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--text, #fff);
    position: relative;
    /*display: inline-block;*/ /* ✅ zaroori hai */
    padding: 10px 0; /* ✅ space for lines */
    cursor: pointer;
}

    /* top + bottom lines */
    .section-title::before,
    .section-title::after {
        content: '';
        position: absolute;
        left: 29%;
        width: 44%;
        height: 3px;
        background: var(--gradient, linear-gradient(90deg, #ff3b3b, #00eaff));
        border-radius: 3px;
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    /* Top line */
    .section-title::before {
        top: 0; /* title ke upar line */
        transform-origin: left;
    }

    /* Bottom line */
    .section-title::after {
        bottom: 0; /* title ke neeche line */
        transform-origin: right;
    }

    /* Hover effect */
    .section-title:hover::before,
    .section-title:hover::after {
        transform: scaleX(1);
    }




.demo-grid {
    display: grid;
    max-width: 1500px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding:30px;
}

.demo-card {
    background: rgba(30, 35, 71, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow);
    position: relative;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(5px);
}



.demo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.demo-card.face-detection:hover {
    border-color: rgba(255, 111, 0, 0.5);
}

.demo-card.mask-detection:hover {
    border-color: rgba(255, 143, 51, 0.5);
}

.demo-card.object-detection:hover {
    border-color: rgba(230, 92, 0, 0.5);
}

.demo-card.anomaly-detection:hover {
    border-color: rgba(255, 62, 0, 0.5);
}

.video-container {
    position: relative;
    padding-top: 60%;
    background: #000;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

    .video-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8) 100%);
        z-index: 1;
        pointer-events: none;
    }

    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.demo-card:hover .video-container video {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.demo-card:hover .play-btnind {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btnind i {
    color: white;
    font-size: 1.5rem;
    margin-left: 4px;
}

.demo-content {
    padding: 1.5rem;
    position: relative;
}

.demo-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .demo-title.face-detection {
        background: var(--gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .demo-title.mask-detection {
        background: var(--gradient-light);
        -webkit-background-clip: text;
        background-clip: text;
        color:rgb(277, 111, 55);
    }

    .demo-title.object-detection {
        background: var(--gradient-dark);
        -webkit-background-clip: text;
        background-clip: text;
        color: rgb(277, 111, 55);
    }

    .demo-title.anomaly-detection {
        background: linear-gradient(135deg, #ff3e00 0%, #cc2e00 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.demo-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    padding: 0.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

    .demo-icon.face-detection {
        background: var(--gradient);
    }

    .demo-icon.mask-detection {
        background:rgba(277, 111, 55) ;
    }

    .demo-icon.object-detection {
        background: rgba(277, 111, 55);
    }

    .demo-icon.anomaly-detection {
        background: linear-gradient(135deg, #ff3e00 0%, #cc2e00 100%);
    }

.demo-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 4.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .stat::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--accent);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .stat:hover::before {
        transform: translateX(0);
    }

    .stat:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
    }

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .stat-value.accuracy {
        color: var(--accent);
    }

    .stat-value.speed {
        color: var(--accent-light);
    }

    .stat-value.fps {
        color: var(--accent-dark);
    }

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.features-section {
    background: var(--glass);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    margin: 6rem 0;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

    .feature:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.btn-accent {
    background: var(--gradient);
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-accent:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 111, 0, 0.4);
    }

/* Buttons */
.btnind {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btnind-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

    .btnind-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
    }

.btnind-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 1rem;
}

    .btnind-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }


@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: ;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-50%) scale(1.1);
        opacity: 0.25;
    }
}

@keyframes radioScale {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    /* Reorder slider elements for mobile */
    .slide {
        flex-direction: column;
        padding: 1.5rem 5%;
        text-align: center;
    }

    .slide-content {
        width: 100%;
        padding-right: 0;
        margin-top: 1rem; /* Reduced space between image and text */
        order: 2;
    }

        /* Make text smaller */
        .slide-content h2 {
            font-size: 1.4rem !important;
            margin-bottom: 0.5rem;
        }

        .slide-content p {
            font-size: 0.7rem !important;
            margin-bottom: 0.5rem;
        }

    .slide-image {
        margin-top:10px;
        width: 100%;
        order: 1;
        margin-bottom: 0.5rem;
        position: relative; /* Needed for absolute positioning of dots */
    }

    /* Move dots inside image container */
    .slider-dots {
        margin-top: 0.5rem;
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        padding: 5px 10px;
        border-radius: 20px;
    }

        .slider-dots .dot {
            width: 8px;
            height: 8px;
            margin: 0 4px;
        }

    /* Make button smaller */
    .slide-content .cta-button {
      
        font-size: 0.85rem;
        margin-top: 1rem;
    }

    .slide-image img {
        max-width: 95%;
        border-radius: 10px;
    }

    /* Adjust the gradient overlay */
    .slide::before {
        background: radial-gradient(ellipse at 50% 20%, rgba(255, 111, 0, 0.05) 0%, rgba(10, 14, 35, 0.9) 60%);
    }

    /* Hide the pulse animation on mobile if it's too distracting */
    .slide-image::after {
        display: none;
    }
}
@media (max-width: 480px) {
    .slider-container {
        min-height: 550px;
        padding-top: 80px;
    }

    .slide {
        padding: 1.5rem 4%;
    }

    .slide-content h1 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        line-height: 1.2;
    }

    .slide-content p {
        font-size: clamp(0.85rem, 4vw, 1rem);
    }

    .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.85rem;
    }

    .features {
        padding: 4rem 2%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem 1.2rem;
    }

    .configurator {
        margin: 0 2% 4rem;
        padding: 3rem 2%;
    }

    .options-grid {
        gap: 1.2rem;
    }

    .option-item {
        padding: 1.2rem;
    }

    .demo-section {
        padding: 4rem 2%;
    }

    .footer-container {
        padding: 0;
    }
}

@media (min-width:300px) and (max-width:400px){
    .slide {
        padding:0px;
        position:absolute;
        top:5px;
    }
}
/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .slider-container {
        height: 85vh;
        min-height: 650px;
    }

    .slide {
        padding: 0 4%;
    }

    .slide-content {
        width: 100%;
        
    }

        .slide-content h1 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
        }

        .slide-content p {
            font-size: clamp(1rem, 2vw, 1.2rem);
        }

    .slide-image {
        width: 42%;
    }

    .features {
        padding: 6rem 4%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .configurator {
        margin: 0 4% 6rem;
        padding: 5rem 4%;
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-section {
        padding: 6rem 4%;
    }
}

/* Large Screen Optimization */
@media (min-width: 1400px) {
    .slider-container {
        max-height: 1000px;
    }

    .slide {
        padding: 0 8%;
    }

    .features {
        padding: 5rem 5%;
    }

    .configurator {
        margin: 0 8% 8rem;
    }

    .demo-section {
        padding: 5rem 5%;
    }

    .footer-container {
        padding: 0 4rem;
    }
}

/* High DPI Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .slide-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .slide {
        transition: opacity 0.3s ease;
    }

    .slide-image::after {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    : root {
        --primary: #0a0e23;
        --secondary: #141a3a;
        --card-bg: #1e2347;
    }
}

/* Print Styles */
@media print {
    .slider-container, .demo-section, footer {
        display: none;
    }

    .features,
    .configurator {
        background: white !important;
        color: black !important;
    }

    .feature-card {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}
/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .how-it-works {
        padding: 2rem 1rem;
    }

    .step {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
        /* Show content by default on mobile */
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        /* Show by default on mobile */
        transform: scale(1) !important;
    }

    .step-content {
        max-width: 100%;
        padding: 2rem;
        /* Show by default on mobile */
        transform: scale(1) !important;
    }

        .step-content h3 {
            /* Show by default on mobile */
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        .step-content p {
            /* Show by default on mobile */
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

    .step-line {
        /* Show full line on mobile */
        height: 100% !important;
    }

    .steps {
        gap: 3rem;
    }

    .control-buttons {
        flex-direction: column;
        align-items: center;
        /* Hide animation controls on mobile */
        display: none;
    }

    .btn {
        width: 200px;
        justify-content: center;
         padding: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .step-content {
        padding: 1.5rem;
    }

        .step-content h3 {
            font-size: 1.3rem;
        }

    .steps {
        gap: 2rem;
    }
    .btn {
        width: 200px;
        justify-content: center;
        padding: 1rem;
    }
}