﻿/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Slider fade + slide animation */
.carousel-slide {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

    .carousel-slide.active {
        opacity: 1;
    }

/* Button hover micro animation */
.btn-primary {
    transition: all 0.3s ease;
    display: inline-block;
}

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
    }

/* Nav links underline animation */
.nav-links a {
    position: relative;
    transition: color 0.3s;
}

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: #a855f7;
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

/* Feature cards hover lift */
.feature-card, .product-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .feature-card:hover, .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #05050A;
    color: #EDEDF5;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --glow-purple: #a855f7;
    --glow-blue: #3b82f6;
    --glow-pink: #ec4899;
    --card-bg: rgba(18, 18, 28, 0.7);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* navbar (glass) */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.25);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7, #3b82f6, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

    .nav-links a {
        text-decoration: none;
        color: #cbd5e6;
        font-weight: 500;
        transition: 0.2s;
    }

        .nav-links a:hover {
            color: #a855f7;
            text-shadow: 0 0 6px rgba(168, 85, 247, 0.5);
        }

.btn-nav {
    background: linear-gradient(105deg, #a855f7, #3b82f6);
    border: none;
    padding: 0.55rem 1.4rem;
    border-radius: 2rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .btn-nav:hover {
        transform: scale(1.02);
        box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
    }

.btn-primary {
    background: linear-gradient(95deg, #a855f7, #3b82f6);
    padding: 0.9rem 2rem;
    border-radius: 2.5rem;
    font-weight: 700;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 8px 18px rgba(59,130,246,0.2);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 28px -8px rgba(168,85,247,0.5);
    }

/* Hero */
.hero {
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero h1 {
        font-size: 3.8rem;
        font-weight: 800;
        background: linear-gradient(135deg, #ffffff, #c084fc, #60a5fa);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto 2rem auto;
        color: #a0aec0;
    }

/* Section common */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(145deg, #f0f0ff, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.section-sub {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== ENHANCED ATTRACTIVE SLIDER ========== */
.slider-section {
    background: radial-gradient(circle at 20% 30%, #0a0a14, #05050A);
    padding: 3rem 0 5rem;
}

.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(168,85,247,0.2);
    transition: box-shadow 0.3s;
}

    .slider-wrapper:hover {
        box-shadow: 0 35px 50px -20px rgba(168,85,247,0.4), 0 0 0 1px rgba(168,85,247,0.5);
    }

.carousel-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 480px;
}

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s;
    }
/* glassmorphic caption with glow */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3) 70%, transparent);
    backdrop-filter: blur(8px);
    padding: 2rem 2rem 1.8rem;
    border-top: 1px solid rgba(168,85,247,0.4);
    transform: translateY(0);
    transition: 0.3s;
}

    .slide-caption h3 {
        font-size: 1.8rem;
        font-weight: 700;
        background: linear-gradient(120deg, #fff, #c084fc);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-bottom: 0.3rem;
    }

    .slide-caption p {
        color: #d1d5db;
        font-size: 1rem;
    }
/* slider buttons - elegant */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 20, 35, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168,85,247,0.5);
    color: white;
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.25s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .carousel-btn:hover {
        background: #a855f7;
        border-color: white;
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 0 15px rgba(168,85,247,0.8);
    }

.prev {
    left: 20px;
}

.next {
    right: 20px;
}
/* animated dots */
.dots {
    text-align: center;
    margin-top: 1.8rem;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #4b4b66;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        width: 32px;
        background: linear-gradient(90deg, #a855f7, #3b82f6);
        box-shadow: 0 0 8px #a855f7;
    }
/* autoplay indicator (optional) */
.slider-autoplay-badge {
    position: absolute;
    bottom: 20px;
    right: 25px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border-radius: 30px;
    padding: 5px 12px;
    font-size: 0.7rem;
    color: #cbd5e6;
    z-index: 10;
    pointer-events: none;
}

/* features, product grid, steps, testimonial same as before but keep consistent */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 1.8rem;
    padding: 2rem 1.8rem;
    transition: all 0.3s;
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-8px);
        border-color: var(--glow-purple);
        box-shadow: 0 20px 30px -12px rgba(168,85,247,0.3);
    }

.feature-icon {
    font-size: 2.6rem;
    background: linear-gradient(145deg, #a855f7, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #0c0c14;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #262636;
}

    .product-card:hover {
        transform: scale(1.03);
        box-shadow: 0 20px 25px -12px rgba(168,85,247,0.4);
        border-color: #a855f7;
    }

    .product-card img {
        width: 59%;
        height: 154px;
        object-fit: cover;
    }

.product-info {
    padding: 1.5rem;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.step {
    background: rgba(20,20,35,0.7);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 2rem;
    text-align: center;
    width: 260px;
    border: 1px solid rgba(168,85,247,0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testi-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.testi-card {
    min-width: 100%;
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(168,85,247,0.3);
}

.testi-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 2px solid #a855f7;
}

.stars {
    color: #fbbf24;
    margin: 0.8rem 0;
}

.testi-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testi-btn {
    background: #1e1e2a;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: white;
    cursor: pointer;
}

.cta-block {
    background: linear-gradient(115deg, #0a0a0f, #12121c);
    border-radius: 3rem;
    text-align: center;
    padding: 3rem;
    border: 1px solid rgba(168,85,247,0.5);
}

footer {
    border-top: 1px solid #1e1e2c;
    padding: 3rem 0 2rem;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.social-icons a {
    color: #9ca3af;
    font-size: 1.5rem;
    margin-left: 1.2rem;
    transition: 0.2s;
}

    .social-icons a:hover {
        color: #c084fc;
    }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .carousel-slide {
        height: 320px;
    }

    .slide-caption h3 {
        font-size: 1.2rem;
    }

    .slide-caption p {
        font-size: 0.8rem;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) {
    .elementor-2717 .elementor-element.elementor-element-f6ee0eb {
        --content-width: 1100px;
    }
}

.elementor-2717 .elementor-element.elementor-element-f6ee0eb {
    --display: flex;
    --flex-direction: row;
    --container-widget-width: initial;
    --container-widget-height: 100%;
    --container-widget-flex-grow: 1;
    --container-widget-align-self: stretch;
    --flex-wrap-mobile: wrap;
    --gap: 0px 0px;
    --row-gap: 0px;
    --column-gap: 0px;
    --margin-top: 0px;
    --margin-bottom: -85px;
    --margin-left: 0px;
    --margin-right: 0px;
}

.e-con.e-flex > .e-con-inner {
    align-content: var(--align-content);
    align-items: var(--align-items);
    align-self: auto;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-wrap: var(--flex-wrap);
    justify-content: var(--justify-content);
}
