body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: #0B0F1A;
    user-select: none;
    color: white;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
}

/* LEFT TEXT */
.content {
    max-width: 500px;
}

.content h1 {
    font-size: 50px;
}

.content span {
    background: linear-gradient(90deg, #7C3AED, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content p {
    color: #9CA3AF;
    margin: 20px 0;
}

/* BUTTON */
button {
    padding: 12px 25px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    color: white;
    cursor: pointer;
    font-family: 'Outfit';
    transition: 0.5s;
}

button:hover{
    scale: 1.1;
}


.image img {
    border-radius: 10px;
    width: 800px;
    max-width: 100%;
}

/* GLOW BACKGROUND EFFECT */
.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.4), transparent);
    right: 100px;
    top: 100px;
    z-index: -1;
}

.features {
    padding: 80px;
    background: #0B0F1A;
    color: white;
}

/* TEXT */
.subtitle {
    color: #A78BFA;
    margin-bottom: 10px;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* GRID */
.feature-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* CARD */
.card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(124,58,237,0.3);
}

/* ICON */
.icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.purple { background: #7C3AED; }
.blue { background: #3B82F6; }
.orange { background: #F59E0B; }
.green { background: #10B981; }

/* TEXT */
.card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.card p {
    font-size: 13px;
    color: #9CA3AF;
}

/* VIDEO CARD */
.video-card {
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-top: 20px;
}

.showcase {
    text-align: center;
    padding: 20px 20px;
    background: #0B0F1A;
    color: white;
}

.showcase h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.sub {
    color: #9CA3AF;
    margin-bottom: 40px;
}

/* PHONES ROW */
/* PHONES ROW */
.phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; 
    flex-wrap: nowrap; 
    margin-top: 40px;
    padding-bottom: 20px;
}

.phones img {
    width: 180px;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); 
}





.phones img:hover {
    transform: scale(1.05) translateY(-15px);
    opacity: 1;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.4); 
    cursor: pointer;
}

.showcase-box {
    position: relative;
    border-radius: 25px;
    padding: 30px;
    background: #0B0F1A;
    z-index: 1;
}

/* Gradient Border Layer */
.showcase-box::before {
    content: "";
    position: absolute;
    inset: -1px; /* border thickness */
    border-radius: 25px;

    background: linear-gradient(135deg, 
        #0B0F1A,
        #7C3AED, 
        #EC4899, 
        #22D3EE,
        #0B0F1A
    );

    z-index: -1;
    filter: blur(10px); /* glow softness */
    opacity: 0.20;
}

.testimonials {
    background: #0B0F1A;
    color: white;
    margin: 20px
}

.title {
    text-align: center;
    margin-bottom: 40px;
}

/* CARDS */
.cards-testimonial {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.card-testimonial {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 20px;
    width: 300px;
    backdrop-filter: blur(10px);
}

.quote {
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 20px;
}

/* USER */
.user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user h4 {
    margin: 0;
    font-size: 14px;
}

.user span {
    font-size: 12px;
    color: #9CA3AF;
}

.stars {
    margin-left: auto;
    color: #FBBF24;
}

/* CTA BOX 🔥 */
.cta {
    margin-top: 60px;
    padding: 25px 40px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: linear-gradient(135deg, #1A1F2E, #0B0F1A);
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 0 40px rgba(124,58,237,0.3);
}

/* LEFT */
.cta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* .icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
} */

/* RIGHT BUTTONS */
.cta-right {
    display: flex;
    gap: 15px;
}

.download {
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    color: white;
    cursor: pointer;
}

.demo {
    padding: 12px 20px;
    border-radius: 25px;
    background: transparent;
    border: 1px solid #444;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {

    /* HERO SECTION */
    .hero {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .content h1 {
        font-size: 32px;
    }



    .image img {
        width: 100%;
        margin-top: 20px;
    }

    /* FEATURES */
    .features {
        padding: 40px 20px;
    }

    .feature-container {
        grid-template-columns: 1fr; /* single column */
    }
    .showcase-box {
        margin: 0;
        padding: 0;
    }

    /* SHOWCASE */
    /* SHOWCASE (Horizontal Swipe Carousel) */
    .phones {
        overflow-x: auto; /* Allow horizontal scrolling */
        flex-wrap: nowrap;
        padding: 30px 20px 50px 20px; 
        justify-content: flex-start;
        gap: 20px;
        
        /* Smooth snapping */
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        user-select: none;
        scrollbar-width: none; 
        -ms-overflow-style: none; 
    }

    /* Hide scrollbar for Chrome/Safari */
    .phones::-webkit-scrollbar {
        display: none;
    }

    .phones img {
        min-width: 220px; 
        width: 65vw; 
        scroll-snap-align: center; 
    }
    
    .phones img.mid, 
    .phones img.side {
        transform: scale(1);
        opacity: 1;
    }
    
    .phones img:hover {
        transform: scale(1.02) translateY(-5px); 
    }

    /* TESTIMONIALS */
    .cards-testimonial {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .card {
        width: 100%;
        min-width: 250px;
        max-width: 250px;
    }



    /* CTA BOX */
    /* 1. FIX THE PARENT CONTAINER (Add this inside the media query) */
    .testimonials {
        width: 100%;
        margin: 0;
    }

    /* Update this section in your desktop styles */
.cta-left {
    display: flex;
    flex-direction: column;  /* Forces icon and text to stack vertically */
    align-items: center;      /* Centers the icon and text horizontally */
    text-align: center; 
}

.cta .icon {
    display: none;
}


    /* 2. FIX THE CTA ALIGNMENT (Replace your old .cta block with this) */
   
    .cta {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        width: 80%;
        min-width: 250px;
        box-sizing: border-box; /* Keeps padding inside the 95% width */
        margin-left: auto; /* Centers the box */
        margin-right: auto; /* Centers the box */
        margin-top: 40px;
        margin-bottom: 10px /* Gives some breathing room from the section above */
    }

    .cta-right {
        flex-direction: column;
        width: 100%;
    }

    .download, .demo {
        width: 100%;
    }
}

.contact-section {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: #fff;
    font-family: 'Nunito', sans-serif;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT SIDE */
.contact-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #7c3aed, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 15px;
}

/* RIGHT SIDE FORM */
.contact-form {
    padding: 30px;
    border-radius: 20px;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

/* BUTTON */
.contact-form button {
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: #fff;

    background: linear-gradient(90deg, #7c3aed, #06b6d4);
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}


.custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.alert-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    width: 300px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: pop 0.4s ease;
}

.alert-box .icon {
    font-size: 40px;
    color: #4CAF50;
}

.alert-box h3 {
    margin: 10px 0;
}

.alert-box p {
    font-size: 14px;
    opacity: 0.8;
}

.alert-box button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #4CAF50;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

@keyframes pop {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
