
        button {
            margin-top: 10px;
            padding: 10px 20px;
            background-color: #007BFF;
            color: white;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        button:hover {
            background-color: #0056b3;
        }
		
		
		        .output-box {
            background: #1e1e1e;
            color: #c7f0d8;
            padding: 20px;
            border-radius: 8px;
            font-family: 'Courier New', Courier, monospace;
            white-space: pre-wrap;
            line-height: 1.6;
            margin-top: 20px;
            overflow-x: auto;
        }
		
		
		body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #f4f6fa, #e0ecff);
    color: #333;
}

header {
    background: #1e3a8a;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header h1 a {
    color: white;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
}

/* Container for basic forms/pages */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Headings */
h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Form elements */
label {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

input[type=text], textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

input[type=submit], .download-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

input[type=submit]:hover, .download-btn:hover {
    background-color: #1d4ed8;
}

textarea {
    height: 180px;
    resize: vertical;
    background: #f0f0f0;
    cursor: pointer;
}

.output-box {
    margin-bottom: 30px;
    position: relative;
}

.copy-message {
    display: none;
    position: absolute;
    top: -30px;
    right: 10px;
    background-color: #4caf50;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
}

/* Info box styling */
.info-box {
    background: #eef2ff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-box h3 {
    margin-top: 0;
    color: #1e3a8a;
}

.info-box p {
    font-size: 15px;
    line-height: 1.6;
}

/* Scroll to top button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #2563eb;
    color: white;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
    background-color: #1e40af;
}

/* Tools section */
.tools-container {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
}

.tools-container h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1e3a8a;
    text-align: center;
    text-shadow: 1px 1px 2px #ccc;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.tool-card {
    background: white;
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tool-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.tool-card p {
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
    margin: 10px 0 20px;
}

.details-btn {
    background-color: #1e3a8a;
    color: white;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.details-btn:hover {
    background-color: #3b5bdb;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 15px 10px;
    margin-top: 60px;
}

footer a {
    color: #cbd5e1;
    margin: 0 10px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
        display: none;
        flex-direction: column;
        background-color: #1e3a8a;
        padding: 10px 0;
        text-align: center;
    }

    nav a {
        margin: 10px 0;
        display: block;
    }

    nav.active {
        display: flex;
    }
}
