 /* =========================================
       APP DOWNLOAD SECTION (ISOLATED)
       ID: #app-iso-section
       ========================================= */

    #app-iso-section {
        /* Variables */
        --app-bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
        --app-accent: #f472b6; 
        --app-text-white: #ffffff;
        --app-text-muted: #94a3b8;
        --app-btn-bg: #000000;
        --app-btn-hover: #1f2937;
        
        font-family: 'Inter', sans-serif;
        background: var(--app-bg-gradient);
        
        /* Dimensions & Layout */
        width: 100%;
        max-width: 1200px; 
        margin: 0 auto; /* Center the card */
        padding: 34px 20px; 
        
        /* 3D Look & Borders */
        border-radius: 32px; /* High border radius */
        border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle stroke */
        
        /* Layered Shadows for 3D Effect */
        box-shadow: 
            0 50px 100px -20px rgba(0, 0, 0, 0.5), /* Deep atmospheric shadow */
            0 30px 60px -30px rgba(0, 0, 0, 0.6),  /* Closer grounded shadow */
            inset 0 1px 0 rgba(255, 255, 255, 0.15); /* Top lighting highlight */

        color: var(--app-text-white);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #app-iso-section * { box-sizing: border-box; }

    /* Background decoration */
    #app-iso-section::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .app-container {
        width: 100%;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
        gap: 20px;
        position: relative;
        z-index: 1;
    }

    /* --- LEFT CONTENT --- */
    .app-content {
        max-width: 600px;
        padding-left: 20px;
    }

    .app-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #e2e8f0;
        padding: 4px 12px;
        border-radius: 99px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 12px;
        backdrop-filter: blur(4px);
    }

    .app-title {
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 800;
        line-height: 1.1;
        margin: 0 0 12px 0;
        background: linear-gradient(to right, #fff, #c7d2fe);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .app-desc {
        font-size: 1rem;
        line-height: 1.5;
        color: var(--app-text-muted);
        margin-bottom: 24px;
        max-width: 450px;
    }

    .app-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
    .app-buttons1 {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    /* Store Button Style */
    .store-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: var(--app-btn-bg);
        color: white;
        padding: 8px 16px;
        border-radius: 10px;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        border: 1px solid rgba(255,255,255,0.15);
        min-width: 140px;
    }

    .store-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3);
        border-color: rgba(255,255,255,0.3);
    }

    .store-icon {
        width: 22px;
        height: 22px;
    }

    .store-text {
        display: flex;
        flex-direction: column;
        line-height: 1;
    }

    .store-text small { font-size: 0.6rem; opacity: 0.8; margin-bottom: 2px; text-transform: uppercase; }
    .store-text span { font-size: 0.85rem; font-weight: 600; }

    /* --- RIGHT IMAGE (Phone Mockup) --- */
    .app-image-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 400px; /* Reduced height to fit 468px total */
    }

    /* Glow behind phone */
    .app-glow {
        position: absolute;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: blur(40px);
        z-index: 0;
    }

    .phone-frame {
        width: 200px; /* Scaled down width */
        height: 400px; /* Scaled down height */
        background: #0f172a;
        border-radius: 30px;
        padding: 8px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
        border: 5px solid #1e293b;
        position: relative;
        overflow: hidden;
        z-index: 2;
        /* Floating Animation */
        animation: floatPhone 6s ease-in-out infinite;
    }

    /* Notch */
    .phone-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 20px;
        background: #1e293b;
        border-radius: 0 0 12px 12px;
        z-index: 10;
    }

    .phone-screen {
        width: 100%;
        height: 100%;
        background-color: #fff;
        border-radius: 22px;
        overflow: hidden;
        position: relative;
    }

    .phone-img {
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }

    /* Floating Badge */
    .app-float-badge {
        position: absolute;
        bottom: 60px;
        left: 0px; /* Tucked closer */
        background: rgba(30, 41, 59, 0.9);
        backdrop-filter: blur(12px);
        padding: 8px 14px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        display: flex;
        align-items: center;
        gap: 8px;
        animation: floatBadge 5s ease-in-out infinite;
        animation-delay: 1s;
        z-index: 3;
    }

    .badge-icon {
        background: #10b981;
        color: white;
        padding: 5px;
        border-radius: 50%;
        display: flex;
    }

    .badge-text strong { display: block; font-size: 0.8rem; color: #fff; }
    .badge-text span { font-size: 0.65rem; color: #94a3b8; }

    @keyframes floatPhone {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @keyframes floatBadge {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(8px); }
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 900px) {
        #app-iso-section { padding: 50px 20px; }
        
        .app-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 30px;
        }

        .app-content { margin: 0 auto; padding-left: 0; }
        .app-desc { margin-left: auto; margin-right: auto; }
        .app-buttons { justify-content: center; }
        
        .app-image-wrapper { height: 350px; margin-top: 10px; }
        .phone-frame { width: 175px; height: 350px; }
        
        .app-float-badge { 
            left: 50%; 
            transform: translateX(-50%); 
            bottom: -10px; 
            width: max-content;
            background: rgba(30, 41, 59, 0.95);
        }
        
        @keyframes floatBadge {
            0%, 100% { transform: translate(-50%, 0); }
            50% { transform: translate(-50%, 6px); }
        }
    }




    /* nav bar */
        /* =========================================
           RESET & VARIABLES
           ========================================= */
        :root {
            --bg-body: #ffffff;
            --text-main: #171717;
            --text-muted: #525252;
            --text-light: #9ca3af;
            --border-color: #e5e5e5;
            --bg-hover: #f3f4f6;
            --primary-gradient-start: #5b2dd8;
            --primary-gradient-end: #db2777;
            
            /* Custom Colors for Mobile Resources */
            --ws-navy: #1e3a8a;
            --ws-bright-blue: #3b82f6;

            --nav-height: 80px; 
            --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg-body);
            color: var(--text-main);
            min-height: 100vh;
            padding-top: var(--nav-height); 
        }

        a { text-decoration: none; color: inherit; }
        button { border: none; background: none; font-family: inherit; cursor: pointer; }

        /* =========================================
           UTILITIES
           ========================================= */
        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .justify-center { justify-content: center; }
        .gap-11 { gap: 2rem;  } 
        .gap-2 { gap: 0.5rem; }
        .gap-3 { gap: 0.75rem; }
        .gap-4 { gap: 1rem; }
        .gap-8 { gap: 2rem; }
        .gap-10 { gap: 2.5rem; }
        .gap-20 { gap: 0.3rem; }
        
        .hidden { display: none !important; }
        .invisible { visibility: hidden; }
        .relative { position: relative; }
        .absolute { position: absolute; }
        .fixed { position: fixed; }
        .w-full { width: 100%; }
        .h-full { height: 100%; }
        
        .font-bold { font-weight: 700; }
        .font-semibold { font-weight: 600; }
        .font-medium { font-weight: 500; }
        .text-sm { font-size: 0.875rem; line-height: 1.25rem; }
        .text-xs { font-size: 0.75rem; line-height: 1rem; }
        .text-xl { font-size: 1.25rem; line-height: 1.75rem; }
        .text-5xl { font-size: 3rem; line-height: 1; }
        
        .text-neutral-900 { color: var(--text-main); }
        .text-neutral-600 { color: var(--text-muted); }
        .text-neutral-500 { color: #737373; }
        .text-neutral-400 { color: var(--text-light); }
        .text-white { color: #ffffff; }
        
        /* Custom Text Colors */
        .text-ws-navy { color: var(--ws-navy); }
        .text-ws-blue { color: var(--ws-bright-blue); }

        .bg-gradient-brand { background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%); }
        .text-gradient { background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

        .transition-all { transition: all 0.2s ease; }
        .transition-colors { transition: color 0.2s ease, background-color 0.2s ease; }
        .transition-transform { transition: transform 0.2s ease; }
        .transition-opacity { transition: opacity 0.2s ease; }

        /* =========================================
           NAVBAR STYLES
           ========================================= */
        #main-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--nav-height);
            z-index: 10000;
            border-bottom: 1px solid var(--border-color);
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .nav-container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; height: 100%; }
        @media (min-width: 640px) { .nav-container { padding: 0 1.5rem; } }
        @media (min-width: 1024px) { .nav-container { padding: 0 0rem; } }

        .nav-content { display: flex; align-items: center; justify-content: space-between; height: 100%; }

        .nav-logo { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; text-decoration: none; }
        
        /* LOGO SIZING LOGIC */
        .nav-logo img { 
            height: 1.62rem; /* Mobile Logo Height (Smaller/Lighter) */
            width: auto; 
            object-fit: contain; 
            display: block; 
            transition: height 0.3s ease; 
        }
        @media (min-width: 768px) { 
            .nav-logo img { 
                height: 2.4rem; /* Desktop Logo Height (Different/Larger) */
            } 
        }

        /* Desktop Tabs */
        .tab-btn { display: flex; align-items: center; gap: 0.25rem; border-radius: 9999px; padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500; color: black; transition: all 0.2s; }
        .tab-btn:hover, .tab-btn[data-active="true"] { background-color: var(--bg-hover); color: var(--text-main); }
        .tab-btn[data-active="true"] .chevron-icon { transform: rotate(180deg); }

        /* --- DESKTOP Resource Box Highlight --- */
        .tab-btn.resource-box {
            border: 1px solid var(--text-main);
            color: var(--text-main);
            font-weight: 700;
            /* border-radius: 0.25rem; */
            padding: 0.4rem 0.6rem;
        }
        .tab-btn.resource-box:hover,
        .tab-btn.resource-box[data-active="true"] {
            background-color: #000000;
            color: #ffffff;
            border-color: #000000;
        }

        .nav-actions { display: none; align-items: center; gap: 1rem; }
        @media (min-width: 768px) { .nav-actions { display: flex; } }

        .btn-ghost { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
        .btn-ghost:hover { color: var(--text-main); }
        .btn-primary { border-radius: 9999px; padding: 0.625rem 1.7rem; font-size: 0.875rem; font-weight: 500; color: white; box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.2); transition: transform 0.2s ease, box-shadow 0.2s ease; }
        .btn-primary:hover { transform: scale(1.05); }

        /* Mobile Toggle */
        #mobile-menu-btn { display: flex; color: var(--text-muted); padding: 0.25rem; border-radius: 0.375rem; }
        #mobile-menu-btn:hover { color: var(--text-main); background-color: var(--bg-hover); }
        @media (min-width: 768px) { #mobile-menu-btn { display: none; } }

        /* =========================================
           DESKTOP DROPDOWN OVERLAY
           ========================================= */
        #overlay-content { opacity: 0; transform: translateY(8px); position: absolute; left: 0; top: calc(100% + 20px); width: 850px; max-width: calc(100vw - 2rem); border-radius: 0.75rem; border: 1px solid var(--border-color); background-color: #ffffff; padding: 1.5rem; box-shadow: var(--shadow-xl); z-index: 10001; transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; }
        #overlay-content.visible { opacity: 1; transform: translateY(0); visibility: visible; }

        #nub { position: absolute; left: 0; top: 0; height: 1rem; width: 1rem; background-color: #ffffff; border-left: 1px solid var(--border-color); border-top: 1px solid var(--border-color); transform: translate(-50%, -50%) rotate(45deg); border-top-left-radius: 2px; transition: left 0.25s ease-in-out; }
        .overlay-bridge { position: absolute; top: -20px; left: 0; right: 0; height: 20px; }

        @keyframes navSlideInRight { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes navSlideInLeft { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
        .animate-enter-right { animation: navSlideInLeft 0.25s ease-out forwards; }
        .animate-enter-left { animation: navSlideInRight 0.25s ease-out forwards; }

        .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        .divide-x > * + * { border-left: 1px solid var(--border-color); }

        .dropdown-card { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.5rem; border-radius: 0.5rem; transition: background-color 0.2s; }
        .dropdown-card:hover { background-color: #f9fafb; }
        .dropdown-card img { height: 3rem; width: 4rem; object-fit: cover; border-radius: 0.375rem; opacity: 0.9; transition: opacity 0.2s; }
        .dropdown-card:hover img { opacity: 1; }
        .dropdown-card h4 { font-size: 0.875rem; font-weight: 600; color: var(--text-main); transition: color 0.2s; }
        .dropdown-card:hover h4 { color: var(--primary-gradient-start); }
        .dropdown-card p { font-size: 0.75rem; color: #737373; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        /* Rich Course Card (Desktop) */
        .course-card { display: flex; gap: 1rem; align-items: flex-start; padding: 0.75rem; border-radius: 0.5rem; transition: background-color 0.2s; }
        .course-card:hover { background-color: #f9fafb; }
        .course-img-wrapper { position: relative; flex-shrink: 0; }
        .course-img { height: 5rem; width: 7rem; object-fit: cover; border-radius: 0.5rem; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
        .course-badge { position: absolute; bottom: 4px; right: 4px; background-color: rgba(0,0,0,0.75); color: white; font-size: 0.65rem; padding: 2px 6px; border-radius: 4px; font-weight: 500; }
        .course-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.25rem; transition: color 0.2s; }
        .course-card:hover .course-info h4 { color: var(--primary-gradient-start); }
        .course-info p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .course-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.7rem; color: #9ca3af; font-weight: 500; }
        .course-meta span { display: flex; align-items: center; gap: 0.25rem; }

        /* =========================================
           MOBILE STYLES
           ========================================= */
        #mobile-menu {
            position: fixed;
            top: var(--nav-height);
            left: 0;
            width: 100%;
            /* Changed height from fixed calculation to auto so it hugs content */
            height: auto;
            max-height: calc(100vh - var(--nav-height) - 1rem); /* Prevents overflow */
            background-color: #ffffff;
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--shadow-xl);
            overflow-y: auto;
            z-index: 9999; 
            padding: 1.5rem;
            /* padding-bottom reduced to look tighter */
            padding-bottom: 1.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
            pointer-events: none;
        }
        
        #mobile-menu.open { opacity: 1 !important; visibility: visible !important; transform: translateY(0) !important; pointer-events: auto !important; display: block !important; }

        .mobile-group { border-bottom: 1px solid #f3f4f6; padding-bottom: 0.75rem; margin-bottom: 0.75rem; }
        .mobile-group-btn { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 0.5rem 0; font-size: 1rem; font-weight: 600; color: var(--text-main); }
        .mobile-content { padding-left: 1rem; padding-top: 0.25rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out; }
        .mobile-group[data-open="true"] .mobile-content { max-height: 1000px; }
        .mobile-group[data-open="true"] .mobile-group-btn .chevron-icon { transform: rotate(180deg); }
        .mobile-link { display: block; padding: 0.5rem 0; font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s; }
        .mobile-link:hover { color: var(--primary-gradient-start); }

        /* --- MOBILE RESOURCES SPECIFICS --- */
        #mobile-resources-wrapper { position: relative; }

        /* Smaller Box for Mobile Resources Button */
        #mobile-resources-btn {
    display: flex;
    align-items: center;
    border: 1px solid var(--text-main);
    color: #000000;
    font-weight: 700;
    /* border-radius: 5rem; */
    padding: 0.2rem 0.3rem;
    font-size: 0.75rem;
    transition: all 0.2s;
        }
        #mobile-resources-btn.active {
            background-color: #000000;
            color: #ffffff;
            border-color: #000000;
        }

        /* CENTERED Mobile Dropdown */
        #mobile-resources-dropdown {
            position: fixed; /* Fixed to viewport to center properly */
            top: calc(var(--nav-height) + 12px);
            left: 50%;
            /* Center horizontally and slightly scale down for animation start */
            transform: translateX(-50%) scale(0.95);
            
            width: 94vw; /* Almost full width */
            max-width: 24rem; /* But capped for larger phones */
            max-height: 75vh;
            
            background-color: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            box-shadow: var(--shadow-xl);
            z-index: 10001;
            overflow-y: auto;
            
            transform-origin: top center;
            opacity: 0; 
            visibility: hidden; 
            pointer-events: none;
            transition: all 0.2s ease;
        }
        #mobile-resources-dropdown.active { 
            transform: translateX(-50%) scale(1);
            opacity: 1; 
            visibility: visible; 
            pointer-events: auto; 
        }
        
        #mobile-resources-btn .chevron-icon { transition: transform 0.2s; }

        /* Adjusted Nub Position */
        .mobile-res-nub { 
            position: absolute; 
            right: 3.5rem; /* Point towards the button area roughly */
            top: -5px; 
            height: 0.75rem; 
            width: 0.75rem; 
            background-color: #ffffff; 
            border-left: 1px solid var(--border-color); 
            border-top: 1px solid var(--border-color); 
            transform: rotate(45deg); 
            display: block;
        }

        /* Mobile Tabs Styling */
        .mobile-tabs {
            display: flex;
            border-bottom: 1px solid var(--border-color);
            background-color: #f9fafb;
        }
        .mobile-tab-btn {
            flex: 1;
            padding: 0.75rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-muted);
            text-align: center;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }
        .mobile-tab-btn.active {
            color: var(--ws-navy);
            border-bottom-color: var(--ws-bright-blue);
            background-color: #ffffff;
        }
        
        .mobile-tab-content {
            padding: 0.75rem;
            display: none;
            flex-direction: column;
            gap: 0.75rem;
        }
        .mobile-tab-content.active {
            display: flex;
        }

        /* Mobile Detailed Card */
        .mobile-course-card { display: flex; gap: 0.75rem; padding: 0.75rem; border-radius: 0.5rem; background-color: #ffffff; border: 1px solid transparent; }
        .mobile-course-card:hover { background-color: #fafafa; border-color: #e5e5e5; }
        .mobile-course-img { height: 3.5rem; width: 3.5rem; object-fit: cover; border-radius: 0.375rem; flex-shrink: 0; }
        
        .mobile-course-info h4 { 
            font-size: 0.85rem; 
            font-weight: 700; 
            color: var(--ws-navy); 
            margin-bottom: 0.1rem; 
        }
        .mobile-course-info p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.3; margin-bottom: 0.25rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .mobile-course-meta { display: flex; gap: 0.5rem; font-size: 0.65rem; color: #9ca3af; font-weight: 500; }
        
        .active-link { color: var(--ws-bright-blue) !important; }

        @media (min-width: 768px) {
            .md\:flex { display: flex !important; }
            .md\:hidden { display: none !important; }
        }
        
        .content-spacer { max-width: 56rem; margin: 0 auto; padding: 2rem; }
        .skeleton-block { height: 16rem; border-radius: 0.75rem; background-color: var(--bg-hover); border: 1px solid var(--border-color); margin-bottom: 2rem; }
    



        /* button design  */


        /* Renamed from Uiverse.io by Spacious74 */

.action-btn {
  font-size: 1.4em;
  padding: 0.6em 0.8em;
  border-radius: 0.5em;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  box-shadow: 2px 2px 3px #000000b4;
}

.glow-wrapper {
  position: relative;
  padding: 3px;
  background: linear-gradient(90deg, #03a9f4, #f441a5);
  border-radius: 0.9em;
  transition: all 0.4s ease;
}

.glow-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 0.9em;
  z-index: -10;
  filter: blur(0);
  transition: filter 0.4s ease;
}

.glow-wrapper:hover::before {
  background: linear-gradient(90deg, #03a9f4, #f441a5);
  filter: blur(1.2em);
}

.glow-wrapper:active::before {
  filter: blur(0.2em);
}




/* another button  */


/* Renamed from Uiverse.io by gharsh11032000 */

.motion-pill-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: greenyellow;
  box-shadow: 0 0 0 2px greenyellow;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.motion-pill-btn svg {
  position: absolute;
  width: 24px;
  fill: greenyellow;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.motion-pill-btn .icon-right {
  right: 16px;
}

.motion-pill-btn .icon-left {
  left: -25%;
}

.motion-pill-btn .pulse-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: greenyellow;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.motion-pill-btn .btn-label {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.motion-pill-btn:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.motion-pill-btn:hover .icon-right {
  right: -25%;
}

.motion-pill-btn:hover .icon-left {
  left: 16px;
}

.motion-pill-btn:hover .btn-label {
  transform: translateX(12px);
}

.motion-pill-btn:hover svg {
  fill: #212121;
}

.motion-pill-btn:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px greenyellow;
}

.motion-pill-btn:hover .pulse-bg {
  width: 220px;
  height: 220px;
  opacity: 1;
}


.force-white,
.force-white span,
.force-white i {
  color: #ffffff !important;
}

.force-white i svg {
  stroke: #ffffff !important;
}



/* 3rd  */

/* Renamed version */

.ripple-btn {
  background: transparent;
  position: relative;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgb(40, 144, 241);
  border-radius: 25px;
  outline: none;
  overflow: hidden;
  color: rgb(40, 144, 241);
  transition: color 0.3s 0.1s ease-out;
  text-align: center;
}

.ripple-btn .btn-text {
  margin: 10px;
}

.ripple-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  border-radius: 50%;
  display: block;
  width: 20em;
  height: 20em;
  left: -5em;
  text-align: center;
  transition: box-shadow 0.5s ease-out;
  z-index: -1;
}

.ripple-btn:hover {
  color: #fff;
  border: 1px solid rgb(40, 144, 241);
}

.ripple-btn:hover::before {
  box-shadow: inset 0 0 0 10em rgb(40, 144, 241);
}



/* 4th code  */


.del {
  position: relative;
  top: 0;
  left: 0;
  width: 160px;
  height: 50px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.del div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .5), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  letter-spacing: 1px;
  color: #000;
  z-index: 1;
  transition: .6s;
}

.del:hover div {
  letter-spacing: 4px;
  color: #fff;
}

.del::after,
.del::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.del::after {
  transform: translate(15px, 15px);
  width: 35px;
  height: 35px;
  background: #000;
  backdrop-filter: blur(5px);
  border-radius: 10px;
}

.del:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}




.skew-fill-btn {
  width: 6.5em;
  height: 2.3em;
  margin: 0.5em;
  background: black;
  color: white;
  border: none;
  border-radius: 0.625em;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.skew-fill-btn:hover {
  color: black;
}

.skew-fill-btn::after {
  content: "";
  background: white;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
}

.skew-fill-btn:hover::after {
  transform: skewX(-45deg) scale(1, 1);
  transition: all 0.5s;
}

