﻿/* -----------------------------------------------------------
    ROOT VARIABLES — ULTRA CYBER MODERN
----------------------------------------------------------- */
:root {

  
   
  /*  --text-dim: #b0b0b0;*/
   /* --primary: #00eaff;*/
    /* CHANGED: Accent color now matches primary color */
   /* --accent: #00eaff;*/
  /*  --deep: #0a0a0a;*/
  /*  --radius: 24px;
    --radius-small: 16px;*/
    /* CHANGED: Neon shadow is now pure cyan */
   /* --neon: 0 0 25px rgba(0,255,255,0.6), 0 0 45px rgba(0,255,255,0.4);*/
}

/* -----------------------------------------------------------
    GLOBAL & GRID
----------------------------------------------------------- */
/*body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text-color);
    overflow-x: hidden;
}*/

.jirlee-solution-bg-grid {
    position: fixed;
    inset: 0;
    z-index: -10;
    opacity: 0.42;
    animation: gridMove 18s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-350px);
    }
}

/* -----------------------------------------------------------
    CONTAINER & MAIN CARD (MODIFIED)
----------------------------------------------------------- */
.jirlee-solution-container {
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
}

.main-solution-ultra-card {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: #0A2120;
    border-radius: 24px;
    padding: 2.8rem;
    box-shadow: 0 0 15px rgba(0,255,255,0.6), 0 0 45px rgba(0,255,255,0.4);
    backdrop-filter: blur(22px);
    animation: fadeIn 1.3s ease;
    overflow: hidden;
    /* ADDED: Simple border instead of animated one */
    border: 1px solid rgba(0, 255, 255, 0.25);
}

/* REMOVED: .main-solution-ultra-card::before */

/* REMOVED: @keyframes rotateGlow */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* -----------------------------------------------------------
    TITLE & INTRO SECTION (RE-ALIGNED)
----------------------------------------------------------- */
.jirlee-solution-title-text {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 3.1rem);
    font-weight: 900;
    background: linear-gradient(90deg, #00eaff, #00eaff, #00eaff);
   /* background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));*/
    background-size: 220%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleMove 5s linear infinite;
    margin-bottom: 2.5rem;
}

@keyframes titleMove {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

.description-solution-section {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    align-items: center;
}

.description-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.description-solution-text {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #e7e7e7;
}

/* -----------------------------------------------------------
    MOTION IMAGE (Colors Changed)
----------------------------------------------------------- */
.motion-solution-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    /* CHANGED: Shadow is now pure cyan */
    box-shadow: 0 0 15px rgba(0,255,255,0.35), 0 0 40px rgba(0,255,255,0.25);
}

    .motion-solution-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(1.15) contrast(1.1) saturate(1.2);
        transition: 0.6s ease;
    }

    .motion-solution-image:hover img {
        transform: scale(1.12);
        filter: brightness(1.35) contrast(1.2);
    }

    .motion-solution-image::before {
        content: "";
        position: absolute;
        inset: 0;
        /* CHANGED: Gradient flow is now pure cyan */
        background: linear-gradient(120deg, transparent 0%, rgba(0,255,255,0.15) 45%, rgba(0,255,255,0.18) 55%, transparent 100% );
        mix-blend-mode: screen;
        animation: energyFlow 5s linear infinite;
        pointer-events: none;
    }

@keyframes energyFlow {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}

.motion-solution-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    /* CHANGED: Inset shadow is now pure cyan */
    box-shadow: inset 0 0 30px rgba(0,255,255,0.28), inset 0 0 55px rgba(0,255,255,0.22);
    animation: pulseFrame 3.8s ease-in-out infinite alternate;
}

@keyframes pulseFrame {
    from {
        opacity: 0.5;
        filter: blur(3px);
    }

    to {
        opacity: 1;
        filter: blur(6px);
    }
}

/* -----------------------------------------------------------
    ULTRA BIG BUTTON (ADVANCED)
----------------------------------------------------------- */
.ultra-solution-btn-wrapper {
    text-align: left;
    margin-top: 1rem;
}

.ultra-solution-big-btn {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background: linear-gradient(135deg, #00eaff ,  #00eaff);
    color: #000;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0,255,255,0.6);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .ultra-solution-big-btn:hover {
        transform: translateY(-8px);
        filter: brightness(1.3);
        box-shadow: 0 0 20px rgba(0,255,255,0.8);
    }

    /* ADVANCED SHINE/GLOSS EFFECT ON HOVER (Kept) */
    .ultra-solution-big-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.45), transparent );
        transform: skewX(-25deg);
        transition: left 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .ultra-solution-big-btn:hover::before {
        left: 120%;
    }


/* -----------------------------------------------------------
    NEW: FEATURES SECTION
----------------------------------------------------------- */
.solution-features-section {
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding-top: 3rem;
}

.solution-features-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg,  #00eaff,  #00eaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-section-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.feature-solution-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-solution-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    /* REMOVED: .feature-solution-card::before (border animation) */

    .feature-solution-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 35px rgba(0,255,255,0.35);
    }

    /* REMOVED: .feature-solution-card:hover::before */

    .feature-solution-card h3 {
        margin: 0 0 0.7rem 0;
        font-size: 1.15rem;
        font-weight: 700;
        background: linear-gradient(90deg,  #00eaff,   #00eaff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .feature-solution-card p {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #b0b0b0;
    }

/* -----------------------------------------------------------
    NEW: CONCLUSION SECTION
----------------------------------------------------------- */
.conclusion-solution-text {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    /* CHANGED: Border top is now cyan */
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding-top: 2.5rem;
    font-style: italic;
}

/* -----------------------------------------------------------
    RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 750px) {
    .description-solution-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ultra-solution-btn-wrapper {
        text-align: center;
    }

    .main-solution-ultra-card {
        padding: 1.5rem;
    }

    .feature-solution-cards-grid {
        grid-template-columns: 1fr;
    }
}
