/* =========================================
   MANAGED IT & NOC SERVICES PREMIUM STYLES
   ========================================= */

:root {
    --it-bg: #030a15;
    --it-bg-alt: #081221;
    --it-primary: #00d2ff;
    --it-secondary: #3a7bd5;
    --it-accent: #9d50bb;
    --it-text: #e0e6ed;
    --it-text-muted: #94a3b8;
    --it-glass: rgba(255, 255, 255, 0.03);
    --it-glass-border: rgba(255, 255, 255, 0.1);
}

/* ==================== HERO SECTION ==================== */
.it-hero {
    background: radial-gradient(circle at 0% 0%, rgba(0, 210, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(157, 80, 187, 0.15) 0%, transparent 40%),
        var(--it-bg);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.it-hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
    top: -50%;
    left: -50%;
    animation: rotate-bg 100s linear infinite;
    pointer-events: none;
}

@keyframes rotate-bg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.it-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 50px;
    color: var(--it-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.it-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-gradient-it {
    background: linear-gradient(to right, var(--it-primary), var(--it-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.it-hero-subtitle {
    font-size: 1.25rem;
    color: var(--it-text-muted);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* ==================== FEATURE CARDS ==================== */
.it-section {
    padding: 100px 0;
    background: var(--it-bg-alt);
}

.it-glass-card {
    background: var(--it-glass);
    border: 1px solid var(--it-glass-border);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.it-glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
}

.it-glass-card:hover::after {
    left: 100%;
}

.it-glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.it-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--it-primary), var(--it-secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

.it-glass-card h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ==================== BUTTONS ==================== */
.it-btn {
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.it-btn-primary {
    background: linear-gradient(to right, var(--it-primary), var(--it-secondary));
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.it-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .it-hero-title {
        font-size: 2.5rem;
    }
}