 :root {
            --bg-color: #0f172a;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --accent: #38bdf8;
            --nav-bg: rgba(15, 23, 42, 0.95);
            --border: rgba(255, 255, 255, 0.1);
            --card-bg: #1e293b;
            --input-bg: #0f172a;
            --login-bg: #1e293b; 
            --login-text: #f8fafc;
            --signup-bg: #f8fafc;
            --signup-text: #020617;
            --modal-overlay: rgba(0, 0, 0, 0.85);
            --success: #10b981;
            --sidebar-width: 280px;
        }

        [data-theme="light"] {
            --bg-color: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --accent: #0ea5e9;
            --nav-bg: rgba(255, 255, 255, 0.95);
            --border: rgba(0, 0, 0, 0.08);
            --card-bg: #ffffff;
            --input-bg: #ffffff;
            --login-bg: #e2e8f0; 
            --login-text: #475569;
            --signup-bg: #ffffff;
            --signup-text: #1e293b;
            --modal-overlay: rgba(0, 0, 0, 0.6);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
        body { background: var(--bg-color); color: var(--text-main); transition: 0.3s; min-height: 100vh; overflow-x: hidden; }

        .navbar {
            display: flex; justify-content: space-between; align-items: center;
            padding: 0 8%; height: 75px; background: var(--nav-bg);
            border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .logo { font-size: 1.4rem; font-weight: 800; text-decoration: none; color: var(--text-main); }
        .logo span { color: var(--accent); }
        .nav-links { display: flex; list-style: none; gap: 1.5rem; align-items: center; }
        .nav-link { text-decoration: none; color: var(--text-main); font-weight: 600; font-size: 0.9rem; cursor: pointer; }
        
        .dropdown { position: relative; }
        .dropdown-menu {
            position: absolute; top: 100%; left: 0; background: var(--card-bg);
            border: 1px solid var(--border); list-style: none; min-width: 220px;
            display: none; border-radius: 8px; padding: 10px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li a { padding: 10px 20px; display: block; text-decoration: none; color: var(--text-muted); font-size: 0.85rem; }

        .nav-right { display: flex; align-items: center; gap: 1rem; }
        .whatsapp-btn { background: #25d366; color: white; padding: 8px 18px; border-radius: 50px; text-decoration: none; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
        .hamburger { display: none; font-size: 1.4rem; cursor: pointer; color: var(--text-main); }

        .sidebar {
            position: fixed; top: 0; left: -110%; width: var(--sidebar-width); height: 100vh;
            background: var(--card-bg); z-index: 2500; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 20px; border-right: 1px solid var(--border);
            display: flex; flex-direction: column; overflow-y: auto;
        }
        .sidebar.active { left: 0; }
        .sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
        .close-sidebar { font-size: 1.5rem; cursor: pointer; color: var(--text-main); }
        .sidebar-link { text-decoration: none; color: var(--text-main); font-size: 1rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; padding: 12px 10px; border-radius: 8px; cursor: pointer; }
        .sidebar-link:hover { background: var(--border); }
        .sidebar-dropdown { display: none; margin-left: 20px; border-left: 2px solid var(--accent); padding-left: 10px; }
        .sidebar-dropdown.show { display: block; }
        .sidebar-sublink { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; display: block; padding: 8px 0; }
        .whatsapp-side { display: none; background: #25d366 !important; color: white !important; margin-top: 20px; justify-content: center; align-items: center; gap: 8px; border-radius: 8px; padding: 12px; }
        .sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2400; display: none; backdrop-filter: blur(3px); }

        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: var(--modal-overlay); z-index: 5000;
            display: none; justify-content: center; align-items: center;
            backdrop-filter: blur(5px);
        }
        .auth-card { background: var(--card-bg); padding: 30px; border-radius: 16px; width: 95%; max-width: 440px; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.2); max-height: 90vh; overflow-y: auto; }
        .close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.4rem; cursor: pointer; color: var(--text-muted); }
        .brand { text-align: center; margin-bottom: 25px; }
        .brand i { font-size: 2.5rem; color: var(--accent); margin-bottom: 10px; }
        .brand h2 { font-size: 1.5rem; font-weight: 800; }

        .form-group { position: relative; margin-bottom: 15px; display: flex; flex-direction: column; gap: 5px; }
        .phone-input-container { display: flex; gap: 5px; }
        input { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; background: var(--input-bg); color: var(--text-main); outline: none; }
        .verify-btn { position: absolute; right: 5px; top: 5px; padding: 7px 12px; border-radius: 6px; background: var(--accent); color: white; border: none; cursor: pointer; font-size: 0.8rem; font-weight: 600; height: 36px; }
        .btn-submit { width: 100%; padding: 14px; background: var(--accent); color: white; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; margin-top: 10px; }
        .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
        .toggle-link { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--text-muted); }
        .toggle-link span { color: var(--accent); cursor: pointer; font-weight: 700; }
        .forgot-link { display: block; text-align: right; margin-top: -10px; margin-bottom: 10px; font-size: 0.8rem; color: var(--accent); cursor: pointer; text-decoration: none; }

        .hidden { display: none; }
        .swal2-container { z-index: 6000 !important; }

        @media (max-width: 1010px) { .nav-links, #theme-toggle { display: none; } .hamburger { display: block; } }
        @media (max-width: 450px) { .navbar .whatsapp-btn { display: none; } .whatsapp-side { display: flex; } }
        /* --- ULTRA-RESPONSIVE NAVBAR & SIDEBAR --- */

/* 1. General Mobile Fixes (Standard) */
@media (max-width: 450px) {
    .navbar { padding: 0 5%; }
    .logo { font-size: 1.1rem; }
}

/* 2. Small Mobile (300px and below) */
@media (max-width: 300px) {
    .navbar { height: 60px; padding: 0 8px; }
    .logo { font-size: 0.9rem; }
    .nav-right { gap: 0.4rem; }
    .hamburger { font-size: 1.1rem; }
    
    /* Adjust sidebar width for tiny screens */
    :root { --sidebar-width: 85vw; }
}

/* 3. Extreme Small (250px and below) - Resolving your specific issue */
@media (max-width: 250px) {
    .logo span { display: none; } /* Hide 'Flare', keep 'Thought' logo only */
    .navbar { padding: 0 5px; gap: 2px; }
    
    /* Force Sidebar to be full width so it's usable */
    .sidebar { 
        width: 100vw !important; 
        left: -100vw; 
    }
    .sidebar.active { left: 0; }
    
    .nav-right button { font-size: 0.9rem; }
}

/* 4. Tiny Screens (150px and below) */
@media (max-width: 150px) {
    .logo { display: none; } /* Only show icons to prevent overlap */
    .navbar { justify-content: space-around; }
    
    /* Shrink the auth buttons at the top if they exist */
    [style*="justify-content:flex-end"] {
        justify-content: center !important;
        padding: 5px !important;
        flex-direction: column;
        align-items: center;
    }
    [onclick*="openAuth"] {
        width: 100%;
        font-size: 0.7rem;
        padding: 5px !important;
    }
}

/* Fix for Sidebar items to prevent text overflow */
.sidebar-link, .sidebar-sublink {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}







            /* --- ENHANCED HERO SECTION --- */
       /* --- STYLISH IMAGE & HERO --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 8%;
    background: var(--bg-color);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Stylish Image Section (Non-Square) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The "Blob" background behind the image */
.blob-shape {
    position: absolute;
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, var(--accent), #6366f1);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); /* Stylish slanted shape */
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.floating-img {
    width: 100%;
    max-width: 500px;
    animation: floatVertical 5s ease-in-out infinite;
}

@keyframes floatVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- TEXT CONTENT STYLES --- */
.badge {
    padding: 5px 15px;
    background: rgba(56, 189, 248, 0.15);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    margin-bottom: 25px;
}

.hero-content p b { color: var(--accent); }

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item { font-weight: 600; color: var(--text-main); font-size: 0.95rem; }
.feature-item i { color: var(--accent); margin-right: 8px; }

/* --- RESPONSIVENESS (Down to 150px) --- */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { order: 2; margin-top: 40px; }
    .hero-features { justify-items: center; }
}

@media (max-width: 300px) {
    .hero { padding: 40px 10px; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-features { display: none; } /* Clear space for tiny screens */
    .glass-card { padding: 10px; }
}

@media (max-width: 150px) {
    .hero-visual, .hero-content p, .badge, .btn-outline { display: none !important; }
    .hero-content h1 { font-size: 1.1rem; }
    .btn-main { width: 100%; font-size: 0.75rem; padding: 10px; }
}
/* --- BUTTON STYLING --- */
.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-main {
    padding: 16px 36px;
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -5px rgba(56, 189, 248, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    padding: 16px 36px;
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover States */
.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(56, 189, 248, 0.6);
    filter: brightness(1.1);
}

.btn-outline:hover {
    background: var(--border);
    border-color: var(--text-muted);
    transform: translateY(-3px);
}

/* Active Click Effect */
.btn-main:active, .btn-outline:active {
    transform: translateY(0);
}

/* --- BUTTON RESPONSIVENESS --- */
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .btn-main, .btn-outline {
        width: 100%;
        padding: 14px;
    }
}

@media (max-width: 150px) {
    .btn-main {
        font-size: 0.8rem;
        padding: 10px;
        border-radius: 6px;
    }
    .btn-outline {
        display: none !important; /* Hide secondary button to save space */
    }
}








/*servuices section*/





        /* --- SERVICES SECTION --- */
        .services {
            padding: 100px 8%;
            background: var(--bg-color);
            text-align: center;
        }

        .section-header { margin-bottom: 60px; }
        .section-header h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--text-main); }
        .section-header h2 span { color: var(--accent); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 28px;
            border: 1px solid var(--border);
            text-align: left;
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Hover Effect for Card */
        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        /* --- THE ICON (Always Visible & Animated) --- */
        .card-icon {
            width: 70px;
            height: 70px;
            background: rgba(56, 189, 248, 0.1); /* Uses your accent color with opacity */
            color: var(--accent); /* Uses your root accent */
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            font-size: 2.2rem;
            margin-bottom: 25px;
            transition: 0.4s ease;
            animation: softPulse 3s infinite ease-in-out; /* Continuous animation */
        }

        /* Continuous Pulse Animation */
        @keyframes softPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(56, 189, 248, 0); }
            50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(56, 189, 248, 0.2); }
        }

        /* Icon Behavior on Hover (Doesn't Hide) */
        .service-card:hover .card-icon {
            background: var(--accent);
            color: var(--bg-color); /* Contrast color from your root */
            transform: rotate(10deg) scale(1.1);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-main);
        }

        .service-card p {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .learn-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--accent);
            text-decoration: none;
            font-weight: 700;
            transition: 0.3s;
        }

        .learn-more:hover { gap: 15px; text-decoration: underline; }

        /* --- RESPONSIVENESS --- */
        @media (max-width: 150px) {
            .service-card { padding: 15px; }
            .service-card p, .learn-more { display: none; }
            .card-icon { width: 45px; height: 45px; font-size: 1.3rem; }
            .service-card h3 { font-size: 0.9rem; }
        }
        /* --- UNIVERSAL GRID SETTINGS --- */
.services-grid {
    display: grid;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

/* --- TARGET: 360px (Standard Small Mobile) --- */
@media (max-width: 360px) {
    .services { padding: 40px 15px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 30px 20px; border-radius: 20px; }
    .service-card h3 { font-size: 1.2rem; }
    .service-card p { font-size: 0.9rem; line-height: 1.5; }
    .card-icon { width: 55px; height: 55px; font-size: 1.6rem; }
}

/* --- TARGET: 300px (Very Narrow Mobile) --- */
@media (max-width: 300px) {
    .services { padding: 30px 10px; }
    .section-header h2 { font-size: 1.5rem; }
    .service-card { padding: 20px 15px; }
    .service-card p { font-size: 0.85rem; margin-bottom: 15px; }
    .card-icon { width: 50px; height: 50px; font-size: 1.4rem; margin-bottom: 15px; }
}

/* --- TARGET: 280px (Galaxy Fold / Ultra Small) --- */
@media (max-width: 280px) {
    .section-header h2 { font-size: 1.3rem; }
    .service-card h3 { font-size: 1.1rem; }
     
    .learn-more { font-size: 0.85rem; }
    .card-icon { width: 45px; height: 45px; font-size: 1.2rem; }
}

/* --- TARGET: 200px (The "Extreme" Limit) --- */
@media (max-width: 200px) {
    /* We hide the long descriptions here to prevent huge scrolling */
    .service-card p { display: none; }
    .services { padding: 20px 5px; }
    .section-header .badge { font-size: 0.6rem; padding: 4px 8px; }
    .section-header h2 { font-size: 1rem; }
    .service-card { padding: 15px 8px; border-radius: 12px; text-align: center; }
    .service-card h3 { font-size: 0.85rem; letter-spacing: 0; }
    .card-icon { width: 40px; height: 40px; font-size: 1.1rem; margin: 0 auto 10px auto; }
    .learn-more { font-size: 0.75rem; justify-content: center; }
}










/*portfolio*/



       /* --- BASE PORTFOLIO STYLING --- */
        .portfolio {
            padding: 60px 8%;
            background: var(--bg-color);
            transition: background 0.3s ease;
            width: 100%;
        }

        .section-header { 
            text-align: center; 
            margin-bottom: 50px; 
        }

        .portfolio-grid {
            display: grid;
            /* Laptop/Desktop: Dynamic columns that don't get too big */
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .project-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .project-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .project-img {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 10; /* Better proportion for laptops */
            overflow: hidden;
            background: #1a1a1a;
        }

        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .project-card:hover .project-img img {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(3px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.4s ease;
        }

        .project-card:hover .project-overlay { opacity: 1; }

        .view-btn {
            width: 45px; height: 45px;
            background: #fff;
            color: #0f172a;
            border-radius: 50%;
            display: flex;
            align-items: center; justify-content: center;
            transition: 0.3s;
        }

        .project-info { 
            padding: 20px; 
            flex-grow: 1;
        }

        .project-info h3 { color: var(--text-main); margin-bottom: 8px; font-size: 1.15rem; }
        .project-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

        /* --- RESPONSIVENESS --- */

        /* Laptop Optimization */
        @media (min-width: 1024px) {
            .portfolio-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
        }

        /* 300px to 201px */
        @media (max-width: 300px) {
            .portfolio { padding: 40px 10px; }
            .project-info h3 { font-size: 1rem; }
            .project-info p { font-size: 0.8rem; }
        }

        /* BELOW 200px: Text hides, Images arrange themselves */
        @media (max-width: 200px) {
            .portfolio { padding: 20px 5px; }
            .section-header h2 { font-size: 1.1rem; }
            .badge { display: none; }
            
            /* HIDE TEXT CONTENT */
            .project-info { display: none !important; }
            
            /* ADJUST IMAGES */
            .portfolio-grid { 
                grid-template-columns: 1fr; /* Stack images */
                gap: 10px; 
            }
            .project-img { aspect-ratio: 1 / 1; } /* Square looks better when tiny */
            .project-card { border-radius: 10px; }
        }

      

        /* Extra Large Screens */
        @media (min-width: 1400px) {
            .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
        }
        /* 2. Target: 330px to 280px (Fluid Mobile) */
@media (max-width: 340px) {
    .portfolio {
        padding: 40px 15px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .project-card {
        width: 100%;
        border-radius: 18px;
    }
    .project-info h3 {
        font-size: 1.1rem;
    }
    .project-info p {
        font-size: 0.85rem;
    }
}

/* 3. Target: Below 200px (Text Hides, Images Arrange) */
@media (max-width: 200px) {
    .portfolio {
        padding: 20px 5px;
    }
    .section-header h2 {
        font-size: 1rem;
    }
    .badge {
        display: none; /* Hide top badge to save space */
    }

    /* Hide the text content as requested */
    .project-info {
        display: none !important;
    }

    /* Adjust the grid for tiny screens */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* Make images square for a cleaner look when tiny */
    .project-img {
        aspect-ratio: 1 / 1;
    }
    
    .project-card {
        border-radius: 10px;
    }
}

/* 4. Extra Small: 150px */
@media (max-width: 150px) {
    .section-header h2 {
        font-size: 0.85rem;
    }
    .portfolio {
        padding: 10px 2px;
    }
}



  /* --- GRID LOGIC TO KEEP CARDS SIDE-BY-SIDE --- */
.portfolio-grid {
    display: grid;
    /* This ensures cards stay side-by-side on laptop (up to 4 in a row) */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; /* Makes all cards equal height */
}

/* --- VIEW ALL CARD STYLING --- */
.view-all-card {
    background: linear-gradient(135deg, var(--accent), #1e293b) !important;
    border: none !important;
    display: flex;
}

.view-all-link {
    text-decoration: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.view-all-content {
    text-align: center;
    color: #fff;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    color: #fff;
    transition: 0.3s;
}

.view-all-card:hover .icon-circle {
    background: #fff;
    color: var(--accent);
}

/* --- RESPONSIVE FIXES --- */

/* Laptop: Force side-by-side if screen is wide enough */
@media (min-width: 1024px) {
    .portfolio-grid {
        /* Adjusting min-width to 250px ensures the "View All" fits on the same row */
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* 330px & 280px: Stack vertically as screen is too narrow for 2 cards */
@media (max-width: 340px) {
    .portfolio-grid { grid-template-columns: 1fr; }
}

/* Below 200px: Hide Text, Icon Card becomes a Square */
@media (max-width: 200px) {
    .view-all-content h3 { display: none !important; }
    .view-all-card { aspect-ratio: 1 / 1; }
    .project-info { display: none !important; }
    .portfolio-grid { gap: 10px; }
}





/*empowering bussiness*/







.editorial-growth {
    padding: 100px 5%;
    background: var(--bg-color);
    color: var(--text-main);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.editorial-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* --- HEADER --- */
.glitch-text { font-size: clamp(2rem, 8vw, 4.5rem); font-weight: 900; margin-bottom: 40px; }
.glitch-text span { color: var(--accent); }

/* --- MAIN LAYOUT --- */
.editorial-main {
    position: relative;
    display: block; /* Allows content to flow naturally */
}

/* --- CENTER IMAGE (Floating) --- */
.center-visual-box {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 50px auto;
    position: relative;
    z-index: 10;
}

.floating-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    position: relative;
    animation: float-center 6s ease-in-out infinite;
    border: 1px solid var(--border-color);
}

.floating-card img { width: 100%; display: block; }

.blue-glow-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    z-index: -1;
}

/* --- CONTENT WRAP --- */
.editorial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.modern-body p { margin-bottom: 25px; line-height: 1.8; font-size: 1.15rem; color: var(--text-muted); }
.lead { font-size: 1.3rem !important; color: #fff !important; }

/* --- INTERACTIVE BENTO (Blue Border) --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 60px 0;
}

.bento-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.bento-item:hover, .bento-item:active {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    transform: translateY(-8px);
}

.bento-item i { color: var(--accent); font-size: 1.8rem; margin-bottom: 15px; display: block; }

/* --- WHATSAPP --- */
.editorial-actions { margin-top: 50px; display: flex; justify-content: center; }
.btn-whatsapp { 
    background: #25D366; color: #fff; padding: 18px 40px; border-radius: 60px; 
    text-decoration: none; font-weight: 800; display: flex; align-items: center; gap: 15px;
}

/* --- ANIMATIONS (2.5s) --- */
[data-animate="slow-cross-right"] { animation: scr 2.5s ease-out forwards; }
[data-animate="slow-cross-left"] { animation: scl 2.5s ease-out forwards; }
@keyframes scr { 0% { opacity: 0; transform: translateY(50px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes scl { 0% { opacity: 0; transform: scale(0.8); opacity: 0; } 100% { opacity: 1; transform: scale(1); } }
@keyframes float-center { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* --- RESPONSIVE LOGIC --- */

/* Below 190px Logic */
@media (max-width: 220px) {
    .modern-body, .editorial-actions, .bento-grid, .modern-badge { display: none !important; }
    .micro-headings { display: block !important; margin: 20px 0; }
    .micro-headings h2 { font-size: 0.9rem; color: var(--accent); font-weight: 900; margin-bottom: 5px; }
    .glitch-text { font-size: 1.2rem; }
    .editorial-growth { padding: 20px 5px; }
}

/* Below 970px: Content still covers around image because it's center-stacked */
@media (max-width: 970px) {
    .center-visual-box { max-width: 90%; }
}












/* --- ROOT INTEGRATION --- */






.process-section {
    padding: 100px 5%;
    background: var(--bg-color);
    color: var(--text-main);
    overflow: hidden;
}

.process-container {
    max-width: 1100px;
    margin: 0 auto;
}

.process-header { text-align: center; margin-bottom: 80px; }
.process-intro { color: var(--text-muted); font-size: 1.2rem; max-width: 600px; margin: 20px auto; }

/* --- ROADMAP LAYOUT --- */
.roadmap-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    transform: translateX(-50%);
}

.roadmap-step {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.step-card {
    width: 42%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    transition: 0.4s ease;
    cursor: pointer;
}

/* Side switching logic for Desktop */
.roadmap-step:nth-child(even) { justify-content: flex-start; }
.roadmap-step:nth-child(odd) { justify-content: flex-end; }

/* --- BLUE HOVER GLOW --- */
.step-card:hover {
    border-color: var(--accent);
    background: rgba(56, 189, 248, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.step-card h3 { color: var(--accent); margin-bottom: 15px; font-size: 1.4rem; }
.step-card p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

/* --- RESPONSIVE LOGIC --- */

/* Below 970px: Single Column (Image/Visual Logic equivalent) */
@media (max-width: 970px) {
    .roadmap-line { left: 30px; }
    .step-number { left: 30px; transform: translateX(-50%); }
    .roadmap-step { justify-content: flex-end !important; }
    .step-card { width: 85%; }
}

/* 320px to 250px */
@media (max-width: 320px) {
    .glitch-text { font-size: 2rem; }
    .step-card { padding: 20px; }
}

/* 190px and Below: Hide Complex Steps, Show Micro-Headings */
@media (max-width: 220px) {
    .roadmap-wrapper, .process-intro, .modern-badge { display: none !important; }
    .micro-headings { display: block !important; margin-top: 20px; text-align: center; }
    .micro-headings h2 { font-size: 1.1rem; color: var(--accent); font-weight: 900; margin-bottom: 8px; }
    .glitch-text { font-size: 1.5rem; }
}





/*Velocity*/





.infra-velocity { padding: 100px 5%; background: var(--bg-color); color: var(--text-main); overflow: hidden; }
.editorial-container { max-width: 1200px; margin: 0 auto; text-align: center; }

/* --- CENTER FOCUS LAYOUT --- */
.glitch-text { font-size: clamp(2.5rem, 7vw, 4rem); font-weight: 900; margin-bottom: 40px; }
.glitch-text span { color: var(--accent); }

.center-visual-box { width: 100%; max-width: 750px; margin: 0 auto 50px auto; position: relative; }
.floating-card { 
    border-radius: 30px; overflow: hidden; border: 1px solid var(--border-color);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8); animation: float-infra 6s ease-in-out infinite;
}
.floating-card img { width: 100%; display: block; filter: saturate(1.2); }

/* --- INTERACTIVE BENTO GRID (Blue Border Hover) --- */
.bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 50px 0; }
.bento-item { 
    background: rgba(255,255,255,0.02); border: 1px solid var(--border-color); 
    padding: 25px; border-radius: 20px; transition: 0.4s; cursor: pointer; text-align: left;
}
.bento-item:hover { 
    border-color: var(--accent); 
    background: rgba(56, 189, 248, 0.05); 
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
    transform: translateY(-8px);
}
.bento-item i { color: var(--accent); font-size: 1.8rem; margin-bottom: 15px; display: block; }

/* --- CONTENT --- */
.editorial-content { max-width: 900px; margin: 0 auto; }
.lead { font-size: 1.3rem; color: #fff; line-height: 1.6; margin-bottom: 25px; }
.editorial-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; font-size: 1.1rem; }

/* --- RESPONSIVE --- */
@media (max-width: 970px) {
    .center-visual-box { max-width: 95%; }
}

@media (max-width: 220px) {
    .editorial-content, .editorial-actions, .bento-grid, .modern-badge 
    .micro-headings { display: block !important; margin-top: 20px; }
    .micro-headings h2 { font-size: 1rem; color: var(--accent); margin: 5px 0; font-weight: 900; }
    .glitch-text { font-size: 1.5rem; }
}

/* --- ANIMATIONS --- */
[data-animate="slow-cross-right"] { animation: scr 2.5s ease-out forwards; }
[data-animate="slow-cross-left"] { animation: scl 2.5s ease-out forwards; }
@keyframes scr { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes scl { 0% { opacity: 0; transform: scale(0.9); } 100% { opacity: 1; transform: scale(1); } }
@keyframes float-infra { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }



/*Support ---------------------*/
  .support-tab-container {
        position: fixed;
        right: 0;
        top: 60%;
        transform: translateY(-50%);
        z-index: 9999;
    }

    .support-slide-btn {
        display: flex;
        align-items: center;
        background: #38bdf8;
        color: #0f172a;
        text-decoration: none;
        border-radius: 30px 0 0 30px;
        padding: 5px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        width: 50px;
        overflow: hidden;
        white-space: nowrap;
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2);
    }

    .icon-box {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .support-text {
        font-weight: 800;
        font-size: 0.85rem;
        margin-left: 15px;
        margin-right: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0;
        transition: 0.3s;
    }

    .support-slide-btn:hover {
        width: 220px;
        color: #ffffff;
    }

    .support-slide-btn:hover .support-text {
        opacity: 1;
    }

    /* --- RESPONSIVE BREAKPOINTS --- */

    /* For 350px and 300px */
    @media (max-width: 350px) {
        .support-tab-container { top: 80%; } /* Move down to avoid overlapping main content */
        .support-slide-btn:hover { width: 180px; } /* Slightly shorter slide */
        .support-text { font-size: 0.7rem; margin-left: 10px; }
    }

    /* For 250px */
    @media (max-width: 250px) {
        .support-slide-btn { 
            width: 45px; 
            padding: 3px; 
        }
        .icon-box { width: 35px; height: 35px; font-size: 1rem; }
        .support-slide-btn:hover { width: 150px; }
    }

    /* For 200px */
    @media (max-width: 200px) {
        .support-tab-container { bottom: 10px; top: auto; right: 5px; }
        .support-slide-btn { border-radius: 50%; width: 40px; height: 40px; } /* Becomes a circle */
        .support-slide-btn:hover { width: 40px; } /* Disable slide because 200px is too narrow */
        .support-text { display: none; } /* Hide text completely */
        .icon-box { background: none; width: 100%; height: 100%; }
    }

    /* For 150px */
    @media (max-width: 150px) {
        .support-tab-container { right: 2px; bottom: 5px; }
        .support-slide-btn { width: 32px; height: 32px; }
        .icon-box { font-size: 0.8rem; }
    }


/*CTA ACTION*/
















  /* --- PREVIOUS STYLES KEPT SAME --- */
    .mega-cta-section { background: #0f172a; padding: 100px 5%; position: relative; overflow: hidden; display: flex; justify-content: center; align-items: center; }
    .ring-container { position: absolute; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; pointer-events: none; }
    .ring { position: absolute; border: 4px solid rgba(56, 189, 248, 0.4); border-radius: 50%; }
    .cyan-glow { width: 450px; height: 450px; box-shadow: 0 0 50px rgba(56, 189, 248, 0.3); }
    .cyan-glow-outer { width: 550px; height: 550px; border-width: 2px; opacity: 0.2; }
    .cta-card-frame { width: 100%; max-width: 1100px; background: #1e293b; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; position: relative; z-index: 10; box-shadow: 0 40px 100px rgba(0,0,0,0.5); opacity: 0; transform: translateY(30px); transition: all 1s ease-out; }
    .cta-grid { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 450px; }
    .panel-left { padding: 60px; background: rgba(30, 41, 59, 0.5); }
    .sub-title { color: #38bdf8; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }
    .status-heading { font-size: 1.4rem; margin: 10px 0; font-weight: 900; }
    .cyan { color: #38bdf8; }
    .panel-left h3 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; font-weight: 800; }
    .panel-left p { color: #94a3b8; margin-bottom: 30px; font-size: 0.95rem; }
    .btn-main { background: #38bdf8; color: #0f172a; padding: 14px 28px; border-radius: 8px; text-decoration: none; font-weight: 800; display: inline-flex; align-items: center; gap: 10px; position: relative; overflow: hidden; }
    .panel-right { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px; }
    .slanted-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.8); clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1); z-index: 1; }
    .content-overlay { position: relative; z-index: 2; }
    .wa-icon { font-size: 4rem; color: #25d366; margin-bottom: 20px; }
    .content-overlay h4 { color: #f1f5f9; margin-bottom: 25px; font-size: 1.1rem; max-width: 250px; }
    .btn-sync { background: #38bdf8; color: #0f172a; padding: 12px 25px; border-radius: 8px; text-decoration: none; font-weight: 800; display: inline-flex; align-items: center; gap: 10px; }

    /* --- NEW MODERN ANIMATIONS --- */

    /* Scroll Trigger Classes */
    .active-section { opacity: 1 !important; transform: translateY(0) !important; }
    .active-section .slanted-bg { clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%); }

    /* Background Ring Pulse */
    .pulse-ring { animation: ring-pulse 4s infinite ease-in-out; }
    .delay-ring { animation-delay: 2s; }
    @keyframes ring-pulse {
        0%, 100% { transform: scale(1); opacity: 0.2; }
        50% { transform: scale(1.1); opacity: 0.4; }
    }

    /* Staggered Text Reveal */
    .reveal { opacity: 0; transform: translateX(-20px); transition: 0.8s ease-out; }
    .active-section .reveal { opacity: 1; transform: translateX(0); }
    .d-1 { transition-delay: 0.2s; }
    .d-2 { transition-delay: 0.4s; }
    .d-3 { transition-delay: 0.6s; }
    .d-4 { transition-delay: 0.8s; }

    /* Shimmer Effect on Main Button */
    .shimmer-effect::after {
        content: ''; position: absolute; top: -50%; left: -100%; width: 50%; height: 200%;
        background: rgba(255,255,255,0.3); transform: rotate(30deg); transition: 0.5s;
    }
    .shimmer-effect:hover::after { left: 150%; }

    /* Floating Icon */
    .bounce-animation { animation: float-wa 3s ease-in-out infinite; }
    @keyframes float-wa {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    /* --- RESPONSIVE MAINTAINED --- */
  /* --- COMPREHENSIVE RESPONSIVE CODE --- */

/* Standard Tablets & Small Laptops */
@media (max-width: 900px) {
    .cta-grid { 
        grid-template-columns: 1fr; 
        min-height: auto;
    }
    .active-section .slanted-bg { 
        clip-path: none; 
        opacity: 0.95;
    }
    .panel-left { padding: 40px 30px; }
}

/* 350px - 300px (Large Mobile) */
@media (max-width: 350px) {
    .panel-left { padding: 30px 20px; }
    .panel-left h3 { font-size: 1.5rem; }
    .status-heading { font-size: 1.1rem; }
    .ring-container { transform: scale(0.7); }
}

/* 240px - 200px (Small Mobile / Feature Phones) */
@media (max-width: 240px) {
    .panel-left, .panel-right { padding: 20px 10px; }
    .panel-left h3 { font-size: 1.2rem; }
    .sub-title { font-size: 0.65rem; }
    .btn-main, .btn-sync { 
        width: 100%; 
        padding: 10px 15px; 
        font-size: 0.8rem; 
        justify-content: center; 
    }
    .wa-icon { font-size: 2.5rem; margin-bottom: 10px; }
    .content-overlay h4 { font-size: 0.9rem; margin-bottom: 15px; }
}

/* 200px and below (Tiny Screens) */
@media (max-width: 200px) {
    .panel-left h3 { font-size: 1rem; }
    .status-heading { font-size: 0.9rem; }
    .panel-left p { font-size: 0.8rem; margin-bottom: 20px; }
    .ring-container { display: none; } /* Hide rings to save space */
    .cta-card-frame { border-radius: 4px; }
}

/* 150px (Minimum Possible Width) */
@media (max-width: 150px) {
    .panel-left, .panel-right { padding: 10px 5px; }
    .panel-left h3 { font-size: 0.85rem; }
    .btn-main, .btn-sync { 
        font-size: 0.7rem; 
        gap: 5px; 
        padding: 8px;
    }
    .btn-main i, .btn-sync i { display: none; } /* Remove icons to save horizontal space */
    .content-overlay h4 { font-size: 0.75rem; }
}
    @media (max-width: 250px) { .panel-left, .panel-right { padding: 15px; } .btn-main, .btn-sync { font-size: 0.75rem; width: 100%; justify-content: center; } .wa-icon { font-size: 2.5rem; } }
    
    
    
    
    
    
    /*footer
[[[[[[[[]]]]]djjjjjjjjjjjhdhbsdhbhdhhdhd]]]*/


   /* --- CORE OBSIDIAN STYLES --- */
    .obsidian-footer {
        background: #000000 !important;
        padding: 100px 5% 40px;
        position: relative;
        overflow: hidden;
    }

    .obsidian-container {
        max-width: 1200px;
        margin: 0 auto;
        color: #ffffff !important;
    }

    .footer-top-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 60px;
        margin-bottom: 80px;
    }

    /* --- NARRATIVE --- */
    .engineering-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: monospace;
        font-size: 0.7rem;
        letter-spacing: 2px;
        color: var(--accent);
        margin-bottom: 20px;
    }

    .pulse-icon {
        width: 8px; height: 8px;
        background: var(--accent);
        border-radius: 50%;
        animation: obsidian-pulse 2s infinite;
    }

    .footer-headline {
        font-size: clamp(1.8rem, 4vw, 3rem);
        font-weight: 900;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .footer-headline span {
        color: transparent;
        -webkit-text-stroke: 1px #ffffff;
    }

    .footer-bio {
        color: #999 !important;
        line-height: 1.7;
        font-size: 0.95rem;
    }

    /* --- NAVIGATION --- */
    .nav-header {
        font-family: monospace;
        font-size: 0.8rem;
        letter-spacing: 3px;
        color: var(--accent);
        margin-bottom: 25px;
    }

    .nav-list { list-style: none; padding: 0; }
    .nav-list li { margin-bottom: 12px; }
    .nav-list a {
        text-decoration: none;
        color: #ffffff !important;
        font-weight: 600;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: 0.3s;
    }

    .nav-list a i { font-size: 0.6rem; color: var(--accent); opacity: 0; transition: 0.3s; }
    .nav-list a:hover { color: var(--accent) !important; transform: translateX(5px); }
    .nav-list a:hover i { opacity: 1; }

    /* --- SOCIAL GRID --- */
    .obsidian-social-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border: 1px solid rgba(255,255,255,0.1);
    }

    .obsidian-link {
        background: #000000;
        padding: 40px 20px;
        text-decoration: none;
        border: 0.5px solid rgba(255,255,255,0.05);
        transition: 0.4s;
        position: relative;
    }

    .obsidian-inner { display: flex; flex-direction: column; align-items: center; gap: 15px; position: relative; z-index: 2; }
    .obsidian-link i { font-size: 1.8rem; color: #fff; transition: 0.4s; }
    .obsidian-text { text-align: center; }
    .obsidian-text .label { display: block; font-family: monospace; font-size: 0.6rem; color: #555; }
    .obsidian-text .value { display: block; font-weight: 800; font-size: 0.85rem; color: #fff; }

    .obsidian-link:hover { background: var(--accent); }
    .obsidian-link:hover i, .obsidian-link:hover .value { color: #00000 !important; }

    /* --- BOTTOM BAR --- */
    .obsidian-bottom {
        margin-top: 60px;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.1);
        display: flex;
        justify-content: space-between;
        font-family: monospace;
        font-size: 0.7rem;
        color: #444;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
        .footer-top-grid { grid-template-columns: 1fr; }
        .obsidian-social-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 350px) {
        .obsidian-social-grid { grid-template-columns: 1fr; }
        .footer-headline { font-size: 1.5rem; }
        .nav-list a { font-size: 0.8rem; }
    }

    @media (max-width: 150px) {
        .engineering-tag, .obsidian-text, .bottom-right { display: none; }
    }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
    .active-obsidian .reveal { opacity: 1; transform: translateY(0); }
    .d-1{ transition-delay: 0.1s; } .d-2{ transition-delay: 0.2s; } .d-3{ transition-delay: 0.3s; }
    .d-4{ transition-delay: 0.4s; } .d-5{ transition-delay: 0.5s; } .d-6{ transition-delay: 0.6s; }

    @keyframes obsidian-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }