  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #FF3366;
            --secondary-color: #4A00E0;
            --dark-color: #333;
            --gray-color: #666;
            --light-gray: #f5f5f5;
            --gradient-pink: linear-gradient(135deg, #FF3366, #FF6B95);
            --gradient-purple: linear-gradient(135deg, #8E2DE2, #4A00E0);
            --gradient-blue: linear-gradient(135deg, #4facfe, #00f2fe);
            --gradient-orange: linear-gradient(135deg, #fa709a, #fee140);
            --gradient-green: linear-gradient(135deg, #43e97b, #38f9d7);
            --gradient-dark: linear-gradient(135deg, #141E30, #243B55);
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        /* Header Styles - Updated Color */
        .category-header {
            background: var(--gradient-dark); 
            color: white;
            padding: 80px 0 60px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
}
        
        .header-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .category-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .category-subtitle {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
            font-weight: 300;
        }
        .category-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .stat-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .stat-content h4 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .stat-content p {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Main Content Container */
        .category-main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Tools Section */
        .tools-section {
            margin-bottom: 80px;
        }
        
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-color);
            margin-bottom: 40px;
        }
        
        /* Tools Cards Grid */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }
        
        /* Tool Card */
        .tool-card {
            position: relative;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            opacity: 1;
            transform: none;
        }
        
        .tool-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow-hover);
        }
        .tool-title-link {
        color: inherit;       /* Use parent color instead of blue */
        text-decoration: none; /* Remove underline */
        }
        .tool-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background:Black;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .tool-image {
            position: relative;
            overflow: hidden;
            height: 200px;
        }
        
        .tool-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            background: var(--gradient-blue);
            color: white;
            transition: transform 0.5s ease;
        }
        
        .tool-card:hover .tool-placeholder {
            transform: scale(1.05);
        }
        
        /* Removed overlay and link from image placeholder */
        
        .tool-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        /* Use This Tool Button - Replaced Tag */
        .use-tool-btn {
        display: block;          /* inline-block ❌ */
        margin: 0 auto 15px;     /* auto = horizontal center */
        background: var(--gradient-pink);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        width: fit-content;     
}
        
        .use-tool-btn:hover {
            transform: translateY(-2px);
            box-shadow:  0 10px 20px rgba(255, 51, 102, 0.3);
            color: white;
        }
        
        .tool-content h4 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .tool-content p {
            color: var(--gray-color);
            margin-bottom: 20px;
            font-size: 0.95rem;
            flex-grow: 1;
        }
        
        .tool-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .tool-feature {
            background: var(--light-gray);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            color: var(--dark-color);
        }
        
        .tool-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--light-gray);
        }
        
        .tool-rating {
            font-weight: 600;
            color: #FFC107;
        }
        
        .tool-meta span:not(.tool-rating) {
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        /* View All Button */
        .view-all-btn {
            display: inline-block;
            background: var(--gradient-pink);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            margin-bottom: 30px;
            font-size: 1rem;
        }
        
        .view-all-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
            color: white;
        }
        
        /* Category Description - Moved to bottom */
        .category-description {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 60px;
            margin-bottom: 40px;
            box-shadow: var(--box-shadow);
        }
        
        .description-title {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .description-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray-color);
        }
        
        .description-content p {
            margin-bottom: 20px;
        }
        
        .description-highlights {
            background: rgba(142, 45, 226, 0.05);
            border-left: 4px solid var(--secondary-color);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin-top: 30px;
        }
        
        .description-highlights h4 {
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .description-highlights ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .description-highlights li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .description-highlights li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .category-title {
                font-size: 3rem;
            }
            
            .tools-grid {
                gap: 25px;
            }
        }
        
        @media (max-width: 992px) {
            .category-header {
                padding: 60px 0 40px;
            }
            
            .category-title {
                font-size: 2.5rem;
            }
            
            .category-subtitle {
                font-size: 1.1rem;
            }
            
            .tools-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-content h4 {
                font-size: 1.5rem;
            }
            
            .category-description {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .category-title {
                font-size: 2.2rem;
            }
            
            .category-subtitle {
                font-size: 1rem;
            }
            
            .category-stats {
                justify-content: center;
                gap: 20px;
            }
            
            .stat-item {
                flex-direction: column;
                text-align: center;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .tool-content {
                padding: 20px;
            }
            
            .tool-image {
                height: 180px;
            }
            
            .use-tool-btn {
                align-self: center;
            }
        }
        
        @media (max-width: 576px) {
            .category-title {
                font-size: 1.8rem;
            }
            
            .tools-grid {
                grid-template-columns: 1fr;
            }
            
            .category-description {
                padding: 20px;
            }
            
            .description-title {
                font-size: 1.5rem;
            }
            
            .tool-content h4 {
                font-size: 1.1rem;
            }
            
            .tool-image {
                height: 200px;
            }
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: white;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, transform 0.3s;;
            z-index: 1000;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(142, 45, 226, 0.4);
        }
        
        /* Button Container for Use Tool Button */
        .btn-container {
            margin-bottom: 15px;
        }
