  :root {
            --primary: #4361ee;
            --primary-dark: #3a56d4;
            --secondary: #4cc9f0;
            --text: #2b2d42;
            --light-bg: #f8f9fa;
            --card-bg: #ffffff;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--light-bg);
            color: var(--text);
            line-height: 1.6;
        }
        .header-gradient {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }
        .logo {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(135deg, #ffffff, #e0e0e0);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-flex;
            align-items: center;
        }
        .logo-icon {
            margin-right: 10px;
            font-size: 1.8rem;
        }
        .container-xl {
            max-width: 1000px;
        }
        .tool-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            background-color: var(--card-bg);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .text-area-container {
            position: relative;
            margin-bottom: 2rem;
        }
        .text-counter {
            position: absolute;
            right: 15px;
            bottom: 15px;
            background-color: rgba(255,255,255,0.9);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #6c757d;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .btn-tool {
            border-radius: 8px;
            padding: 0.7rem 1.2rem;
            font-weight: 500;
            transition: all 0.2s ease;
            margin: 0.3rem;
            flex: 1 0 30%;
            border: none;
            color: white;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn-tool:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        }
        .btn-tool i {
            margin-right: 0.6rem;
            font-size: 1.1rem;
        }
        .result-card {
            border-left: 4px solid var(--primary);
            background-color: var(--card-bg);
        }
        .copy-btn {
            border-radius: 8px;
            padding: 0.5rem 1.2rem;
            transition: all 0.2s;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border: none;
            color: white;
        }
        .copy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 3px;
        }
        .clear-btn {
            border-radius: 8px;
            padding: 0.7rem 1.5rem;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border: 1px solid #dee2e6;
            font-weight: 500;
        }
        .clear-btn:hover {
            background: linear-gradient(135deg, #e9ecef, #dee2e6);
        }
        .tool-category {
            margin-bottom: 2rem;
        }
        .tool-category-title {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        
        /* Navbar styles */
        .navbar-custom {
            background: transparent;
        }
        .navbar-custom .nav-link {
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: all 0.3s;
            border-radius: 6px;
        }
        .navbar-custom .nav-link:hover {
            color: white;
            background: rgba(255,255,255,0.1);
        }
        .navbar-toggler {
            border: 1px solid rgba(255,255,255,0.3);
            padding: 0.25rem 0.5rem;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 768px) {
            .btn-tool {
                flex: 1 0 45%;
                padding: 0.6rem 1rem;
            }
            .logo {
                font-size: 1.3rem;
            }
            .logo-icon {
                font-size: 1.5rem;
            }
            .navbar-custom .nav-link {
                padding: 0.5rem 0;
            }
        }
        
        /* Added only this one media query for better mobile buttons */
        @media (max-width: 576px) {
            .btn-tool {
                flex: 1 0 100%;
            }
        }
        
        /* SEO Content Section */
        .seo-content {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .seo-content h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        .seo-content h3 {
            color: var(--primary-dark);
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        
        
        
        
        /*terms-and-conditions.html*/
        
        
        /* Content */
.terms-content {
    padding: 40px 0;
}

.terms-content h3 {
    font-size: 20px;
    margin-top: 30px;
    font-weight: 600;
}

.terms-content p,
.terms-content ul {
    font-size: 15px;
    margin-top: 10px;
}

.terms-content ul {
    padding-left: 20px;
}

.terms-content a {
    color: #0d6efd;
    text-decoration: none;
}

.terms-content a:hover {
    text-decoration: underline;
}

        
        .privacy h2 {
    font-size: 20px;
    font-weight: 700;
}
        
