/* Search Bar Styles */
        .search-container {
            margin: 30px auto 20px;
            max-width: 600px;
        }

        .search-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: white;
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 5px 20px;
            transition: all 0.3s ease;
        }

        .search-wrapper:focus-within {
            box-shadow: 0 6px 30px rgba(102, 126, 234, 0.3);
            transform: translateY(-2px);
        }

        .search-icon {
            color: #667eea;
            font-size: 18px;
            margin-right: 15px;
        }

        .search-input {
            flex: 1;
            border: none;
            outline: none;
            padding: 15px 10px;
            font-size: 16px;
            background: transparent;
            color: #333;
        }

        .search-input::placeholder {
            color: #999;
        }

        .search-clear {
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            padding: 5px 10px;
            font-size: 16px;
            transition: color 0.2s;
        }

        .search-clear:hover {
            color: #667eea;
        }

        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: #666;
            display: none;
        }

        .no-results h3 {
            margin-top: 15px;
            color: #333;
        }

        .no-results i {
            font-size: 4rem;
            color: #ddd;
        }

        /* Tool Card Styles */
        .tools-grid {
            padding: 60px 0;
            background: #fff;
        }

        .tool-card {
            background: white;
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .tool-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
        }

        .tool-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        .tool-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #2c3e50;
        }

        .tool-card p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
        }

        .badge-new {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* Gradient Styles */
        :root {
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
            --gradient-6: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
            --gradient-7: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            --gradient-8: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            --gradient-9: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            --gradient-10: linear-gradient(135deg, #ff6e7f 0%, #bfe9ff 100%);
            --gradient-11: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
            --gradient-12: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-13: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        /* Premium Section */
        .premium-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 80px 0;
            color: white;
        }

        .premium-section h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .btn-premium {
            background: white;
            color: #667eea;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-premium:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-premium i {
            margin-right: 8px;
        }

        /* Testimonial Section */
        .testimonial-section {
            padding: 80px 0;
            background: #f8f9fa;
            text-align: center;
        }

        .testimonial-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .hero-section {
            padding: 3rem 0 4rem;
            text-align: center;
            color: #0a0a0a;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .search-container {
                margin: 20px auto 15px;
                padding: 0 15px;
            }

            .search-input {
                font-size: 14px;
                padding: 12px 10px;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .premium-section h3 {
                font-size: 1.8rem;
            }

            .testimonial-section h2 {
                font-size: 1.8rem;
            }
        }