:root {
    --primary-color: #2563eb;
    /* Trust blue */
    --secondary-color: #f8fafc;
    /* Light gray */
    --accent-color: #10b981;
    /* Success green */
    --text-color: #1f2937;
    /* Dark gray */
    --bg-color: #ffffff;
    /* Pure white */
    --border-color: #e5e7eb;
    /* Light border */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

ul,
ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

dl dt {
    font-weight: bold;
    margin-top: 1rem;
}

/* Header */
.header {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.header nav a {
    color: var(--text-color);
    margin-left: 1.5rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 700px;
    margin: 1rem auto;
}

.search-container {
    margin-top: 2rem;
}

#tool-search {
    width: 100%;
    max-width: 500px;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

/* Tools Section */
.tools-section {
    padding: 3rem 0;
}

.tools-section h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.tool-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.tool-card {
    display: block;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: var(--text-color);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tool-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tool-card p {
    margin-bottom: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

/* Tool Page Layout - Centered main feature */
.tool-page-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.tool-main-feature {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    margin-bottom: 2rem;
}

.tool-ui {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.horizontal-ads {
    margin: 2rem 0;
}

.tool-articles {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

/* AdSense Banner Styles */
.horizontal-ad {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 728px;
    margin: 0 auto;
}

/* Mobile & Tablet Responsive Design */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .tool-page-container {
        max-width: 700px;
        padding: 0 1rem;
    }

    .tool-main-feature {
        padding: 2rem 1.5rem;
    }

    .tool-ui {
        padding: 1.5rem;
    }

    .tool-articles {
        padding: 1.5rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 0.5rem;
    }

    /* Header Mobile */
    .header {
        padding: 0.75rem 0;
    }

    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .header nav {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header nav a {
        margin: 0;
        font-size: 0.9rem;
    }

    /* Tool Page Mobile */
    .tool-page-container {
        max-width: 100%;
        margin: 1rem auto;
        padding: 0 0.75rem;
    }

    .tool-main-feature {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .tool-main-feature h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .tool-ui {
        padding: 1.25rem;
        margin: 0 auto 1.5rem;
    }

    .tool-ui h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    /* Form Elements Mobile */
    input,
    textarea,
    select {
        padding: 0.875rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    textarea {
        min-height: 100px;
    }

    .btn,
    button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        margin-top: 1rem;
    }

    /* Ads Mobile */
    .horizontal-ads {
        margin: 1.5rem 0;
    }

    .horizontal-ad {
        min-height: 200px;
        padding: 0.75rem;
        margin: 0 auto;
    }

    /* Articles Mobile */
    .tool-articles {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .tool-articles h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }

    .tool-articles h3 {
        font-size: 1.25rem;
        margin-top: 1.25rem;
    }

    /* Breadcrumbs Mobile */
    .breadcrumbs {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* Footer Mobile */
    .footer {
        padding: 1.5rem 0;
        text-align: center;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .tool-main-feature h1 {
        font-size: 1.5rem;
    }

    .tool-ui,
    .tool-articles {
        padding: 1rem;
    }

    .horizontal-ad {
        min-height: 150px;
        padding: 0.5rem;
    }

    .header nav a {
        font-size: 0.8rem;
        padding: 0.25rem;
    }
}

/* Touch Improvements */
@media (hover: none) and (pointer: coarse) {

    .btn,
    button {
        min-height: 44px;
        /* iOS touch target */
    }

    input,
    textarea,
    select {
        min-height: 44px;
    }

    .header nav a {
        padding: 0.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}


.tool-ui label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.tool-ui textarea,
.tool-ui input,
.tool-ui select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.tool-ui textarea {
    min-height: 150px;
    resize: vertical;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    width: 100%;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background: #3730a3;
    color: #fff;
}

.btn:disabled {
    cursor: not-allowed;
    background: #9ca3af;
}

.btn.loading {
    background: #6b7280;
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#tool-output {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    min-height: 100px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

#tool-output pre {
    background-color: #e5e7eb;
    padding: 1rem;
    border-radius: 8px;
    white-space: pre-wrap;
    word-wrap: break-word;
    border: 1px solid var(--border-color);
    color: var(--primary-color);
}

#tool-output h3,
#tool-output h4 {
    margin-top: 0;
}


/* Breadcrumbs */
.breadcrumbs {
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.breadcrumbs a {
    color: #6b7280;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 0.5rem;
}

/* AdSense Placeholders */
.adsense-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    color: #999;
    margin: 2rem auto;
    font-size: 1rem;
}

.adsense-placeholder.leaderboard {
    width: 728px;
    height: 90px;
    max-width: 100%;
}

.adsense-placeholder.large-rectangle {
    width: 336px;
    height: 280px;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 767px) {
    .header nav {
        display: none;
    }
}


@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .tool-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tool-page-container {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 1024px) {
    .tool-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Buttons */
.btn,
button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn:hover,
button:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn.loading,
button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Elements */
input,
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* Mobile UX Enhancements */
@media (max-width: 768px) {

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Better text readability */
    p,
    li {
        line-height: 1.6;
        font-size: 1rem;
    }

    /* Improved spacing */
    .tool-ui>*+* {
        margin-top: 1rem;
    }

    .tool-articles>*+* {
        margin-top: 1rem;
    }

    /* Loading states */
    .btn.loading::after,
    button.loading::after {
        content: "...";
        animation: dots 1.5s infinite;
    }

    @keyframes dots {

        0%,
        20% {
            content: "...";
        }

        40% {
            content: "..";
        }

        60% {
            content: ".";
        }

        80%,
        100% {
            content: "";
        }
    }

    /* Tool output mobile */
    #tool-output {
        margin-top: 1rem;
        padding: 1rem;
        background: var(--secondary-color);
        border-radius: 8px;
        border: 1px solid var(--border-color);
        min-height: 60px;
    }

    /* Better list styling */
    ul,
    ol {
        padding-left: 1.25rem;
    }

    li {
        margin-bottom: 0.75rem;
    }

    /* Improved link styling */
    a {
        word-break: break-word;
    }

    /* Better table handling if any */
    table {
        width: 100%;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
}

/* Tablet specific optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .tool-ui {
        max-width: 500px;
    }

    .horizontal-ad {
        max-width: 600px;
    }

    .btn,
    button {
        width: auto;
        min-width: 120px;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {

    /* Reduce animations for better performance */
    *,
    *::before,
    *::after {
        animation-duration: 0.3s !important;
        transition-duration: 0.2s !important;
    }

    /* Optimize images if any */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Better focus indicators for accessibility */
    .btn:focus,
    button:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 3px solid var(--accent-color);
        outline-offset: 2px;
    }

    /* Improve tap targets */
    a,
    button,
    .btn,
    input,
    select {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better error states */
    .error {
        color: #dc2626;
        background: #fef2f2;
        border: 1px solid #fecaca;
        padding: 0.75rem;
        border-radius: 6px;
        margin: 0.5rem 0;
    }

    /* Success states */
    .success {
        color: #065f46;
        background: #ecfdf5;
        border: 1px solid #a7f3d0;
        padding: 0.75rem;
        border-radius: 6px;
        margin: 0.5rem 0;
    }
}


/* AI Output Styling */
#tool-output {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
    line-height: 1.6;
}

#tool-output h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

#tool-output h4 {
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

#tool-output p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

#tool-output strong {
    color: var(--primary-color);
    font-weight: 600;
}

#tool-output em {
    color: var(--accent-color);
    font-style: italic;
}

#tool-output ul,
#tool-output ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

#tool-output li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

#tool-output .success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
}

#tool-output .error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
}

/* Enhanced AI Response Components */
.score-display {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.score-display h3 {
    margin: 0;
    font-size: 1.25rem;
}

.feedback-section {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.feedback-section h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.feedback-content {
    line-height: 1.7;
}

.ai-response {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    border-left: 4px solid var(--accent-color);
}

.ai-response ul {
    background: var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.ai-response li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.ai-response li::marker {
    color: var(--accent-color);
}

/* Portfolio Homepage Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card ul {
    text-align: left;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.service-price {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Tools Section */
.tools-section {
    padding: 5rem 0;
    background: white;
}

.tools-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tool-category {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.tool-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tool-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tool-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s ease;
}

.tool-link:hover {
    color: var(--primary-color);
}

.tools-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.portfolio-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.portfolio-item p {
    padding: 0 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

.portfolio-tech {
    padding: 0.5rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: 8px;
}

.contact-method strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.project-form {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .tools-categories {
        grid-template-columns: 1fr;
    }
}

/* Terminal Theme Styles - Matching ap0t.com */

/* Terminal Components */
.terminal-container {
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    margin-bottom: 2rem;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.5);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-prompt::before {
    content: "$ ";
    color: var(--accent-color);
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--accent-color);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Neon Effects */
.neon-text {
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
}

.web3-card {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.5);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.web3-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

/* Grid Pattern Background */
.grid-pattern {
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #0077ff;
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #9900ff;
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
    }

    20% {
        clip-path: inset(60% 0 1% 0);
    }

    40% {
        clip-path: inset(25% 0 58% 0);
    }

    60% {
        clip-path: inset(10% 0 90% 0);
    }

    80% {
        clip-path: inset(53% 0 34% 0);
    }

    100% {
        clip-path: inset(66% 0 43% 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(25% 0 58% 0);
    }

    20% {
        clip-path: inset(80% 0 5% 0);
    }

    40% {
        clip-path: inset(20% 0 60% 0);
    }

    60% {
        clip-path: inset(18% 0 75% 0);
    }

    80% {
        clip-path: inset(2% 0 55% 0);
    }

    100% {
        clip-path: inset(60% 0 25% 0);
    }
}

/* Override existing styles for terminal theme */
body {
    background: #000000;
    color: var(--accent-color);
}

/* Navigation */
nav a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #34d399;
}

/* Buttons */
.btn,
button,
a[class*="bg-green"] {
    background: var(--accent-color);
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover,
button:hover,
a[class*="bg-green"]:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Form Elements */
input,
textarea,
select {
    background: #000000;
    border: 1px solid rgba(16, 185, 129, 0.5);
    color: var(--accent-color);
    border-radius: 6px;
    padding: 0.75rem;
    transition: border-color 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Mobile Responsive for Terminal Theme */
@media (max-width: 768px) {
    .terminal-container {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .glitch {
        font-size: 2rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav div:last-child {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
}

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

/* Ensure all sections are properly centered */
section {
    width: 100%;
    margin: 0 auto;
}

.container,
.max-w-7xl {
    width: 100%;
    margin: 0 auto;
}

/* Desktop-specific centering */
@media (min-width: 1024px) {
    body {
        margin: 0 auto;
        max-width: 100vw;
    }

    section {
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .container,
    .max-w-7xl {
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Force center alignment for all grids */
    .services-grid,
    .tools-grid,
    .portfolio-grid,
    .process-grid,
    .contact-grid,
    .footer-grid {
        margin: 0 auto;
        width: 100%;
        max-width: 1200px;
    }

    /* Text centering */
    .text-center {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .text-center h1,
    .text-center h2,
    .text-center h3,
    .text-center p {
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero section specific */
    #home {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        width: 100%;
    }

    #home .relative.z-10 {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
}

/* Utility Classes */
.bg-gradient-to-r {
    background: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-purple-600 {
    --tw-gradient-from: #9333ea;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0));
}

.to-teal-500 {
    --tw-gradient-to: #14b8a6;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.1), rgba(20, 184, 166, 0.1));
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Grid Pattern */
.bg-grid-pattern {
    background-image:
        linear-gradient(rgba(147, 51, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 51, 234, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Navigation Styles */
nav {
    transition: all 0.3s ease;
}

/* Button Styles */
.btn,
button,
a[class*="bg-gradient"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Form Styles */
input,
textarea,
select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

/* Card Hover Effects */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        transform: translate3d(0, -10px, 0);
    }

    70% {
        transform: translate3d(0, -5px, 0);
    }

    90% {
        transform: translate3d(0, -2px, 0);
    }
}

/* Fix Hero Section Centering */
@media (min-width: 1024px) {

    /* Hero section full centering */
    #home {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        width: 100%;
        text-align: center;
    }

    #home .relative.z-10 {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Trust indicators - force center */
    .trust-indicators {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .trust-indicators .flex {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }

    /* Hero title centering */
    .text-7xl,
    .text-5xl,
    .text-4xl {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* Hero subtitle centering */
    .text-xl.sm\\:text-2xl {
        text-align: center !important;
        width: 100% !important;
        max-width: 800px !important;
        margin: 0 auto !important;
    }

    /* Hero stats centering */
    .hero-stats,
    .grid-cols-1.sm\\:grid-cols-3 {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        max-width: 800px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    /* Hero buttons centering */
    .hero-cta,
    .flex.flex-col.sm\\:flex-row {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* Social proof centering */
    .social-proof {
        max-width: 700px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
}

/* Section headers centering */
@media (min-width: 1024px) {
    .text-center {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .text-center h2 {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .text-center p {
        text-align: center !important;
        max-width: 800px !important;
        margin: 0 auto !important;
    }

    /* Section content centering */
    .mb-16 {
        margin-bottom: 4rem !important;
        text-align: center !important;
    }
}

/* Desktop Grid Fixes */
@media (min-width: 1024px) {

    /* Services Grid - Force 3 columns */
    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Tools Grid - Force 4 columns */
    .tools-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1.5rem;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Portfolio Grid - Force 3 columns */
    .portfolio-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Process Grid - Force 4 columns */
    .process-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2rem;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }

    /* Contact Grid - Force 2 columns */
    .contact-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        align-items: start;
    }

    /* Footer Grid - Force 4 columns */
    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2rem;
        width: 100%;
    }

    /* Stats Grids */
    .grid-cols-2.lg\\:grid-cols-4,
    .grid.grid-cols-2.lg\\:grid-cols-4 {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2rem;
    }

    .grid-cols-1.sm\\:grid-cols-3,
    .grid.grid-cols-1.sm\\:grid-cols-3 {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem;
    }

    /* Form Grid */
    .grid-cols-1.sm\\:grid-cols-2,
    .grid.grid-cols-1.sm\\:grid-cols-2 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

/* Override any conflicting responsive classes */
@media (min-width: 1024px) {

    /* Remove mobile overrides */
    .grid-cols-1 {
        grid-template-columns: unset !important;
    }

    .md\\:grid-cols-2 {
        grid-template-columns: unset !important;
    }

    .lg\\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .lg\\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .lg\\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Ensure proper display */
    .services-grid,
    .tools-grid,
    .portfolio-grid,
    .process-grid,
    .contact-grid,
    .footer-grid {
        display: grid !important;
    }

    /* Center all sections */
    section {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Center containers */
    .max-w-7xl {
        max-width: 1400px !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    /* Hero section centering */
    #home .relative.z-10 {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    /* Trust indicators centering */
    .trust-indicators {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* Button centering */
    .hero-cta,
    .flex.flex-col.sm\\:flex-row {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
        width: 100% !important;
    }
}

/* Base Desktop Styles (1024px and up) */
@media (min-width: 1024px) {

    /* Container and spacing */
    .max-w-7xl {
        max-width: 80rem;
        margin: 0 auto;
    }

    .px-4 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    /* Typography */
    .text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }

    .text-5xl {
        font-size: 3rem;
        line-height: 1.1;
    }

    .text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    /* Grid Systems */
    .grid-cols-1.lg\\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }

    .grid-cols-1.md\\:grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .grid-cols-1.lg\\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3rem;
    }

    .grid-cols-1.md\\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
    }

    .grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
    }

    /* Hero Section Desktop */
    .min-h-screen {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0;
    }

    .grid-cols-1.sm\\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Services Section Desktop */
    .service-card {
        padding: 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .service-card .flex-grow {
        flex-grow: 1;
    }

    /* Tools Section Desktop */
    .tool-category-card {
        padding: 2rem;
        height: 100%;
    }

    /* Portfolio Section Desktop */
    .portfolio-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Contact Section Desktop */
    .contact-grid {
        align-items: start;
        gap: 4rem;
    }

    /* Navigation Desktop */
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    /* Button spacing desktop */
    .flex.flex-col.sm\\:flex-row {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .flex.flex-col.sm\\:flex-row a {
        width: auto;
        min-width: 200px;
    }
}

/* Large Desktop (1280px and up) */
@media (min-width: 1280px) {
    .max-w-7xl {
        max-width: 90rem;
    }

    .px-4 {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .text-7xl {
        font-size: 5rem;
    }

    .text-5xl {
        font-size: 3.5rem;
    }

    /* Better spacing for large screens */
    .py-20 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .gap-8 {
        gap: 3rem;
    }

    .p-8 {
        padding: 3rem;
    }
}

/* Ultra-wide Desktop (1536px and up) */
@media (min-width: 1536px) {
    .max-w-7xl {
        max-width: 100rem;
    }

    .text-7xl {
        font-size: 6rem;
    }

    .py-20 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

/* Fix specific desktop layout issues */
@media (min-width: 1024px) {

    /* Hero section improvements */
    .hero-content {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-stats {
        max-width: 800px;
        margin: 0 auto 3rem;
    }

    .hero-cta {
        max-width: 600px;
        margin: 0 auto 3rem;
    }

    .social-proof {
        max-width: 700px;
        margin: 0 auto;
    }

    /* Services section improvements */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
        align-items: stretch;
    }

    .service-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 600px;
    }

    /* Tools section improvements */
    .tools-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
        align-items: stretch;
    }

    .tool-category {
        height: 100%;
        min-height: 300px;
    }

    /* Portfolio improvements */
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
        align-items: stretch;
    }

    .portfolio-item {
        height: 100%;
        min-height: 500px;
    }

    /* Process section improvements */
    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Contact section improvements */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    /* Footer improvements */
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 3rem;
    }

    /* Trust indicators desktop */
    .trust-indicators {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .trust-indicators .divider {
        display: block;
        width: 1px;
        height: 1rem;
        background: #d1d5db;
    }
}

/* Ensure proper flex behavior on desktop */
@media (min-width: 1024px) {
    .flex-col.sm\\:flex-row {
        flex-direction: row;
    }

    .items-center {
        align-items: center;
    }

    .justify-center {
        justify-content: center;
    }

    .justify-between {
        justify-content: space-between;
    }

    .space-x-8>*+* {
        margin-left: 2rem;
    }

    .space-x-6>*+* {
        margin-left: 1.5rem;
    }

    .space-x-4>*+* {
        margin-left: 1rem;
    }
}

/* Desktop-specific component improvements */
@media (min-width: 1024px) {

    /* Card hover effects */
    .group:hover {
        transform: translateY(-8px);
    }

    .group .group-hover\\:scale-110:hover {
        transform: scale(1.1);
    }

    /* Better shadows on desktop */
    .shadow-lg {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .hover\\:shadow-2xl:hover {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    /* Improved gradients on desktop */
    .bg-gradient-to-r {
        background-size: 200% 200%;
        animation: gradientShift 6s ease infinite;
    }

    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }
}

/* Mobile First - Base styles for mobile */
@media (max-width: 640px) {

    /* Navigation */
    .max-w-7xl {
        max-width: 100%;
        padding: 0 1rem;
    }

    /* Hero Section */
    .text-7xl {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }

    .text-5xl {
        font-size: 2rem !important;
    }

    .text-4xl {
        font-size: 1.75rem !important;
    }

    .text-2xl {
        font-size: 1.25rem !important;
    }

    .text-xl {
        font-size: 1.1rem !important;
    }

    /* Hero stats grid */
    .grid-cols-1.sm\\:grid-cols-3 {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    /* Hero buttons */
    .flex.flex-col.sm\\:flex-row {
        flex-direction: column;
        gap: 1rem;
    }

    .flex.flex-col.sm\\:flex-row a {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

    /* Services Section */
    .grid.grid-cols-1.lg\\:grid-cols-3 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Tools Section */
    .grid.grid-cols-1.md\\:grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    /* Portfolio Section */
    .grid.grid-cols-1.lg\\:grid-cols-3 {
        grid-template-columns: 1fr !important;
    }

    /* Process Section */
    .grid.grid-cols-1.md\\:grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Contact Section */
    .grid.grid-cols-1.lg\\:grid-cols-2 {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .grid.grid-cols-1.sm\\:grid-cols-2 {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    .grid.grid-cols-1.md\\:grid-cols-4 {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }

    /* Padding adjustments */
    .py-20 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .p-8 {
        padding: 1.5rem !important;
    }

    .p-6 {
        padding: 1rem !important;
    }

    /* Trust indicators */
    .inline-flex.items-center.bg-white\/80 {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .flex.items-center.space-x-6 {
        flex-direction: column;
        gap: 0.5rem;
    }

    .flex.items-center.space-x-6>*+* {
        margin-left: 0;
    }

    /* Hide dividers on mobile */
    .w-px.h-4 {
        display: none;
    }
}

/* Tablet Portrait - 641px to 768px */
@media (min-width: 641px) and (max-width: 768px) {
    .text-7xl {
        font-size: 3.5rem !important;
    }

    .text-5xl {
        font-size: 2.5rem !important;
    }

    .grid-cols-1.sm\\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .flex.flex-col.sm\\:flex-row {
        flex-direction: row;
        justify-content: center;
    }

    .grid.grid-cols-1.md\\:grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .grid.grid-cols-1.md\\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .text-7xl {
        font-size: 4rem !important;
    }

    .grid.grid-cols-1.lg\\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .grid.grid-cols-1.md\\:grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .grid.grid-cols-1.lg\\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop - 1025px and up */
@media (min-width: 1025px) {
    .grid.grid-cols-1.lg\\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid.grid-cols-1.md\\:grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid.grid-cols-1.lg\\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid.grid-cols-1.md\\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Specific responsive utilities */
@media (max-width: 640px) {
    .sm\\:px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .sm\\:text-4xl {
        font-size: 1.75rem;
    }

    .sm\\:text-5xl {
        font-size: 2rem;
    }

    .lg\\:text-7xl {
        font-size: 2.5rem;
    }

    .sm\\:text-2xl {
        font-size: 1.25rem;
    }

    .lg\\:px-8 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 641px) {
    .sm\\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\\:text-4xl {
        font-size: 2.25rem;
    }

    .sm\\:text-5xl {
        font-size: 3rem;
    }

    .sm\\:text-2xl {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .lg\\:text-7xl {
        font-size: 4.5rem;
    }
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .md\\:flex {
        display: none !important;
    }

    .md\\:hidden {
        display: block !important;
    }

    #mobile-menu {
        background: white;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    #mobile-menu a {
        display: block;
        padding: 0.75rem 1rem;
        color: #374151;
        text-decoration: none;
        border-bottom: 1px solid #f3f4f6;
    }

    #mobile-menu a:hover {
        background: #f9fafb;
        color: #9333ea;
    }
}

@media (min-width: 769px) {
    .md\\:flex {
        display: flex !important;
    }

    .md\\:hidden {
        display: none !important;
    }

    #mobile-menu {
        display: none !important;
    }
}

/* Form responsive styles */
@media (max-width: 640px) {

    input,
    textarea,
    select {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 1rem;
    }

    button[type="submit"] {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Card responsive adjustments */
@media (max-width: 640px) {
    .rounded-3xl {
        border-radius: 1rem;
    }

    .rounded-2xl {
        border-radius: 0.75rem;
    }

    .shadow-lg {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
}

/* Floating shapes responsive */
@media (max-width: 768px) {
    .floating-shapes {
        display: none;
    }
}

/* Stats grid responsive */
@media (max-width: 640px) {
    .grid.grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .grid.grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Navigation responsive improvements */
@media (max-width: 768px) {
    nav .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}

/* Hero section responsive improvements */
@media (max-width: 640px) {
    .min-h-screen {
        min-height: 100vh;
        padding-top: 4rem;
    }

    .relative.z-10 {
        padding: 2rem 1rem;
    }
}

/* Contact form responsive */
@media (max-width: 640px) {
    .space-y-6>*+* {
        margin-top: 1.5rem;
    }

    .grid.grid-cols-1.sm\\:grid-cols-2.gap-6 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Utility Classes for Spacing and Layout */
.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.gap-6 {
    gap: 1.5rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.transform {
    transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1));
}

.hover\:-translate-y-2:hover {
    --tw-translate-y: -0.5rem;
}

.hover\:-translate-y-1:hover {
    --tw-translate-y: -0.25rem;
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
}

/* Color Classes */
.text-gray-900 {
    color: #111827;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-white {
    color: #ffffff;
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-900 {
    background-color: #111827;
}

/* Purple Colors */
.text-purple-600 {
    color: #9333ea;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.bg-purple-600 {
    background-color: #9333ea;
}

.border-purple-200 {
    border-color: #e9d5ff;
}

/* Teal Colors */
.text-teal-600 {
    color: #0d9488;
}

.bg-teal-50 {
    background-color: #f0fdfa;
}

.bg-teal-600 {
    background-color: #0d9488;
}

/* Additional utility classes as needed */
.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.w-full {
    width: 100%;
}

.h-16 {
    height: 4rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.space-x-8>*+* {
    margin-left: 2rem;
}

.hidden {
    display: none;
}

.z-50 {
    z-index: 50;
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

.border-b {
    border-bottom-width: 1px;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile Touch and Performance Optimizations */

/* Touch device improvements */
.touch-device button,
.touch-device .btn,
.touch-device a[class*="bg-gradient"] {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Smooth navbar transitions */
nav {
    transition: all 0.3s ease, transform 0.3s ease;
}

/* Better mobile button sizes */
@media (max-width: 640px) {

    button,
    .btn,
    a[class*="bg-gradient"] {
        min-height: 44px;
        min-width: 44px;
        padding: 0.875rem 1.5rem;
    }

    /* Larger touch targets for mobile */
    nav a {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 640px) {
    body {
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }
}

/* Improved mobile typography */
@media (max-width: 640px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    p {
        line-height: 1.6;
        word-wrap: break-word;
    }
}

/* Mobile-specific animations */
@media (max-width: 768px) {
    .animate-fade-in {
        animation: mobileSlideUp 0.4s ease-out forwards;
    }

    @keyframes mobileSlideUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .floating-shapes {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .bg-gradient-to-r {
        background: #9333ea !important;
    }

    .text-transparent {
        color: #9333ea !important;
    }

    .border-purple-200 {
        border-color: #9333ea !important;
    }
}

/* Dark mode support (if user prefers) */
@media (prefers-color-scheme: dark) {

    /* Keep light theme but improve contrast */
    .text-gray-600 {
        color: #6b7280;
    }

    .text-gray-400 {
        color: #9ca3af;
    }
}

/* Print styles */
@media print {

    nav,
    .floating-shapes,
    .animate-bounce,
    footer {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .bg-gradient-to-r {
        background: #9333ea !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Landscape mobile adjustments */
@media (max-width: 896px) and (orientation: landscape) {
    .min-h-screen {
        min-height: 100vh;
        padding-top: 2rem;
    }

    .py-20 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Very small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .text-7xl {
        font-size: 2rem !important;
    }

    .text-5xl {
        font-size: 1.75rem !important;
    }

    .text-4xl {
        font-size: 1.5rem !important;
    }

    .px-4 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .p-8 {
        padding: 1rem !important;
    }

    .p-6 {
        padding: 0.75rem !important;
    }
}

/* Large screens optimization */
@media (min-width: 1440px) {
    .max-w-7xl {
        max-width: 90rem;
    }

    .text-7xl {
        font-size: 5rem;
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .max-w-7xl {
        max-width: 100rem;
    }
}

/* Focus improvements for accessibility */
button:focus,
.btn:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #9333ea;
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #9333ea;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-to-content:focus {
    top: 6px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Desktop Layout Fixes and Improvements */

/* Ensure proper desktop container behavior */
@media (min-width: 1024px) {

    .container,
    .max-w-7xl {
        max-width: 80rem;
        margin-left: auto;
        margin-right: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Hero section desktop layout */
    #home {
        padding-top: 0;
        display: flex;
        align-items: center;
        min-height: 100vh;
    }

    #home .relative.z-10 {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Section spacing */
    section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    /* Grid improvements */
    .services-grid,
    .tools-grid,
    .portfolio-grid,
    .process-grid,
    .contact-grid,
    .footer-grid {
        width: 100%;
        max-width: none;
    }

    /* Card equal heights */
    .service-card,
    .tool-category,
    .portfolio-item {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .service-card>*:last-child,
    .tool-category>*:last-child {
        margin-top: auto;
    }

    /* Better button layouts */
    .hero-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .hero-cta a {
        flex: 0 0 auto;
        min-width: 200px;
    }

    /* Navigation improvements */
    nav .container {
        max-width: 80rem;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Trust indicators desktop layout */
    .trust-indicators {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .trust-indicators .flex {
        flex-wrap: nowrap;
    }

    .divider {
        width: 1px;
        height: 1rem;
        flex-shrink: 0;
    }

    /* Stats grid improvements */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto 3rem;
    }

    /* Why choose me section */
    .grid.grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        text-align: center;
    }

    /* Usage stats */
    .grid.grid-cols-2.lg\\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    /* Form improvements */
    .contact-grid .bg-white.rounded-2xl {
        height: fit-content;
    }

    .grid.grid-cols-1.sm\\:grid-cols-2.gap-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Large desktop improvements */
@media (min-width: 1280px) {

    .container,
    .max-w-7xl {
        max-width: 90rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }

    section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .services-grid {
        gap: 3rem;
    }

    .tools-grid {
        gap: 2rem;
    }

    .portfolio-grid {
        gap: 3rem;
    }

    .process-grid {
        gap: 3rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .contact-grid {
        gap: 5rem;
    }

    .footer-grid {
        gap: 4rem;
    }
}

/* Ultra-wide desktop */
@media (min-width: 1536px) {

    .container,
    .max-w-7xl {
        max-width: 100rem;
        padding-left: 4rem;
        padding-right: 4rem;
    }

    section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

/* Fix specific desktop issues */
@media (min-width: 1024px) {

    /* Ensure text doesn't get too wide */
    .text-center p {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Better card spacing */
    .p-8 {
        padding: 2.5rem;
    }

    .p-6 {
        padding: 2rem;
    }

    /* Improved shadows and hover effects */
    .shadow-lg {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

    .hover\\:shadow-2xl:hover {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .group:hover {
        transform: translateY(-4px);
    }

    /* Better gradient animations */
    .bg-gradient-to-r {
        background-size: 200% 200%;
    }

    .bg-gradient-to-r:hover {
        animation: gradientShift 3s ease infinite;
    }

    /* Floating shapes on desktop only */
    .floating-shapes {
        display: block;
    }

    /* Better button hover effects */
    .btn:hover,
    button:hover,
    a[class*="bg-gradient"]:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
}

/* Tool Icons */
.tool-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.tool-icon.purple {
    background: #f3e8ff;
    color: #9333ea;
}

.tool-icon.orange {
    background: #ffedd5;
    color: #ea580c;
}

.tool-icon.pink {
    background: #fce7f3;
    color: #db2777;
}

.tool-icon.yellow {
    background: #fef9c3;
    color: #ca8a04;
}

.tool-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}

.tool-icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.tool-icon.red {
    background: #fee2e2;
    color: #dc2626;
}

.tool-icon.gray {
    background: #f3f4f6;
    color: #4b5563;
}

.tool-icon.indigo {
    background: #e0e7ff;
    color: #4f46e5;
}

.tool-icon.rose {
    background: #ffe4e6;
    color: #e11d48;
}