* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #f2f2f2;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #000000;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #87CEEB 62%, #DC143C 38%);
    border-radius: 4px;
}

.navbar {
    background: linear-gradient(90deg, rgba(135, 206, 235, 0.7) 62%, rgba(220, 20, 60, 0.7) 38%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(135, 206, 235, 0.2);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateY(0);
    opacity: 1;
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar.visible {
    transform: translateY(0);
    opacity: 1;
}

.containe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
}

.containe img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid #ffffff;
    transition: transform 0.3s ease;
}

.containe img:hover {
    transform: scale(1.1) rotate(5deg);
}

.logoo {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.logoo:hover {
    color: #000000;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.left {
    margin-left: 20px;
    font-size: 30px;
    color: #87CEEB;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.right ul {
    display: flex;
    list-style-type: none;
    gap: 15px;
}

.right ul li {
    font-size: 20px;
}

.container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category {
    text-align: center;
    margin: 60px 0 40px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #87CEEB 62%, #DC143C 38%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(135, 206, 235, 0.2);
    position: relative;
    overflow: hidden;
}

.category::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.category h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.category p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.tool-category {
    margin: 40px 0;
}

.tool-section {
    margin: 40px 0;
}

h2 {
    font-size: 2.5rem;
    margin: 40px 0 30px 0;
    text-align: center;
    background: linear-gradient(45deg, #87CEEB 62%, #DC143C 38%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

h2:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(135, 206, 235, 0.3));
}

.tool-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
    padding: 0 20px;
}

.tool-info-para {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 30px;
    height: auto;
    min-height: 350px;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tool-info-para::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #87CEEB 62%, #DC143C 38%, #87CEEB 62%);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tool-info-para:hover::before {
    opacity: 1;
}

.tool-info-para:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.2);
}

.tool-info-para img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #87CEEB;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto 20px auto;
}

.tool-info-para:hover img {
    border-color: #DC143C;
    transform: rotate(10deg) scale(1.1);
}

.tool-info-para h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #87CEEB;
    text-align: center;
    transition: color 0.3s ease;
}

.tool-info-para:hover h3 {
    color: #DC143C;
}

.tool-info-para p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f2f2f2;
    text-align: center;
    margin-bottom: 20px;
    flex-grow: 1;
}

.bn30 {
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(45deg, #87CEEB 62%, #DC143C 38%);
    padding: 12px 30px;
    border-radius: 50px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
    margin: 20px auto 0 auto;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.bn30::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.bn30:hover::before {
    left: 100%;
}

.bn30:hover {
    background: linear-gradient(-45deg, #87CEEB 62%, #DC143C 38%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.bn30 .text {
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Search Styles */
.search {
    width: 100%;
    max-width: 500px;
    margin: 40px auto;
    position: relative;
    display: flex;
}

.searchTerm {
    width: 100%;
    border: 3px solid #87CEEB;
    border-right: none;
    padding: 15px 20px;
    height: 50px;
    border-radius: 25px 0 0 25px;
    outline: none;
    color: #f2f2f2;
    background-color: rgba(26, 26, 26, 0.8);
    font-size: 16px;
    transition: all 0.3s ease;
}

.searchTerm:focus {
    border-color: #DC143C;
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.5);
    background-color: rgba(26, 26, 26, 0.9);
}

.searchButton {
    width: 60px;
    height: 50px;
    border: 3px solid #87CEEB;
    background: linear-gradient(45deg, #87CEEB 62%, #DC143C 38%);
    color: #ffffff;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchButton:hover {
    background: linear-gradient(-45deg, #87CEEB 62%, #DC143C 38%);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

/* Accent Elements */
.accent-line {
    height: 4px;
    background: linear-gradient(90deg, #87CEEB 62%, #DC143C 38%);
    margin: 20px 0;
    border-radius: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .tool-info {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    body {
        padding: 80px 10px 0 10px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .containe {
        padding: 0 15px;
        flex-direction: row;
        height: 60px;
    }
    
    .logoo {
        font-size: 20px;
        position: static;
        margin: 0;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links li a {
        font-size: 14px;
        padding: 5px 10px;
    }
    
    .category h1 {
        font-size: 2.5rem;
    }
    
    .category p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .tool-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 30px 0;
        padding: 0 10px;
    }
    
    h2 {
        font-size: 2rem;
        margin: 30px 0 20px 0;
    }
}

@media screen and (max-width: 768px) {
    .containe {
        flex-direction: column;
        height: auto;
        gap: 10px;
        padding: 10px 15px;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .logoo {
        font-size: 18px;
        order: 1;
    }
    
    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        order: 2;
    }
    
    .nav-links li a {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    body {
        padding-top: 120px; /* More space for collapsed navbar */
    }
    
    .tool-info {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
}

@media screen and (max-width: 600px) {
    .category h1 {
        font-size: 2rem;
    }
    
    .tool-info-para {
        min-height: 300px;
        padding: 20px;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .containe {
        padding: 8px 10px;
    }
    
    .nav-links li a {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    body {
        padding-top: 100px;
    }
}

/* Additional Eye-Catching Elements */
.glow-effect {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #87CEEB, 0 0 10px #87CEEB, 0 0 15px #87CEEB;
    }
    to {
        text-shadow: 0 0 10px #DC143C, 0 0 20px #DC143C, 0 0 30px #DC143C;
    }
}

/* Interactive Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.08) 0%, transparent 50%);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

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

/* Enhanced Button Styles */
button {
    position: relative;
    overflow: hidden;
}

button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

button:active::after {
    width: 300px;
    height: 300px;
}

/* Color Scheme Variables for Easy Customization */
:root {
    --skyblue: #87CEEB;
    --red: #DC143C;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #f2f2f2;
    --skyblue-percentage: 62%;
    --red-percentage: 38%;
}

/* Smooth Transitions for All Interactive Elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

/* Focus States for Accessibility */
a:focus, button:focus, input:focus {
    outline: 3px solid #87CEEB;
    outline-offset: 2px;
}

/* Additional Visual Enhancements */
.tool-section {
    position: relative;
    padding: 40px 0;
}

.tool-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #87CEEB 62%, #DC143C 38%);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Modern Card Design Enhancement */
.tool-info-para {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Improved Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

p {
    line-height: 1.7;
    font-weight: 400;
}

/* Navbar Auto-Hide JavaScript - Add this script to your HTML */
/*
<script>
let lastScrollTop = 0;
const navbar = document.querySelector('.navbar');
let isScrolling = false;

window.addEventListener('scroll', function() {
    if (!isScrolling) {
        window.requestAnimationFrame(function() {
            const scrollTop = window.pageYOffset || document.documentElement.scrollTop;
            
            if (scrollTop > lastScrollTop && scrollTop > 100) {
                // Scrolling down & past 100px
                navbar.classList.add('hidden');
                navbar.classList.remove('visible');
            } else if (scrollTop < lastScrollTop) {
                // Scrolling up
                navbar.classList.remove('hidden');
                navbar.classList.add('visible');
            }
            
            // Show navbar when at top
            if (scrollTop <= 50) {
                navbar.classList.remove('hidden');
                navbar.classList.add('visible');
            }
            
            lastScrollTop = scrollTop <= 0 ? 0 : scrollTop;
            isScrolling = false;
        });
    }
    isScrolling = true;
});

// Initialize navbar as visible
document.addEventListener('DOMContentLoaded', function() {
    navbar.classList.add('visible');
});
</script>
 */