/* css/style.css */
:root {
    --brand: #008d89;
    --ink: #0b1320;
    --muted: #5a6573;
    --bg: #0f1722;
    --card: #121c2a;
    --edge: #203041;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: radial-gradient(1200px 600px at 10% -20%, rgba(0,141,137,0.25), transparent 50%),
                radial-gradient(1200px 600px at 110% 20%, rgba(0,141,137,0.15), transparent 50%),
                var(--bg);
    color: #ffffff;
    scroll-behavior: smooth;
}

.accent { color: var(--brand); }

.card, .contact__form, .quote, .service-card, .about__card,
.pricing-card, .helpdesk-card {
    background: var(--card);
    border: 1px solid rgba(0,205,200,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pricing-card:hover, .helpdesk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,205,200,0.15);
}

/* Menu toggle */
#menu { display: none; }
#menu.hidden { display: none !important; }
#menu:not(.hidden) { display: flex; }
@media (min-width: 768px) {
    #menu { display: flex !important; }
    #menu.hidden { display: flex !important; }
}
#menu-toggle { pointer-events: auto; z-index: 50; }

/* PULSE ANIMATION — ONLY ONE! */
@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 0.8; }
}

.animate-pulse-slow {
    animation: pulse-slow 10s ease-in-out infinite;
}

/* STRONG PULSING ORBS — VISIBLE & BEAUTIFUL */
@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
        box-shadow: 0 0 20px rgba(6, 188, 212, 0.3);
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
        box-shadow: 0 0 60px rgba(6, 188, 212, 0.6);
    }
}

.animate-glow {
    animation: pulse-glow 8s ease-in-out infinite;
}

/* DELAY CLASSES — ONLY ONCE! */
.delay-700 { animation-delay: 0.7s; }
.delay-1300 { animation-delay: 1.3s; }

/* CATEGORY TABS */
.cat-tab {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid #4b5563;
    color: #d1d5db;
    background-color: rgba(27, 43, 52, 0.5);
    cursor: pointer;
}

.cat-tab:hover {
    border-color: #06b6d4;
    color: #06b6d4;
    background-color: rgba(6, 182, 212, 0.1);
}

.cat-tab.active {
    background-color: #06b6d4;
    color: #0f2027;
    border-color: #06b6d4;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: linear-gradient(to right, #06b6d4, #14b8a6);
    color: #0f2027;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* css/style.css */
:root {
    --brand: #008d89;
    --ink: #0b1320;
    --muted: #5a6573;
    --bg: #0f1722;
    --card: #121c2a;
    --edge: #203041;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: radial-gradient(1200px 600px at 10% -20%, rgba(0,141,137,0.25), transparent 50%),
                radial-gradient(1200px 600px at 110% 20%, rgba(0,141,137,0.15), transparent 50%),
                var(--bg);
    color: #ffffff;
    scroll-behavior: smooth;
}

.accent { color: var(--brand); }

.card, .contact__form, .quote, .service-card, .about__card,
.pricing-card, .helpdesk-card {
    background: var(--card);
    border: 1px solid rgba(0,205,200,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pricing-card:hover, .helpdesk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,205,200,0.15);
}

/* Menu toggle */
#menu { display: none; }
#menu.hidden { display: none !important; }
#menu:not(.hidden) { display: flex; }
@media (min-width: 768px) {
    #menu { display: flex !important; }
    #menu.hidden { display: flex !important; }
}
#menu-toggle { pointer-events: auto; z-index: 50; }

/* PULSE ANIMATION — ONLY ONE! */
@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 0.8; }
}

.animate-pulse-slow {
    animation: pulse-slow 10s ease-in-out infinite;
}


/* CATEGORY TABS */
.cat-tab {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid #4b5563;
    color: #d1d5db;
    background-color: rgba(27, 43, 52, 0.5);
    cursor: pointer;
}

.cat-tab:hover {
    border-color: #06b6d4;
    color: #06b6d4;
    background-color: rgba(6, 182, 212, 0.1);
}

.cat-tab.active {
    background-color: #06b6d4;
    color: #0f2027;
    border-color: #06b6d4;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: linear-gradient(to right, #06b6d4, #14b8a6);
    color: #0f2027;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}





