/* --- Support IT: Corporate Theme (Unified & Enhanced) --- */

/* 1. MAIN WRAPPER: The "Living" Background */
.unified-support-theme {
    position: relative;
    background-color: #020617;
    /* Deepest Navy */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 25%);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Grid (Global Layer) */
.unified-support-theme::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(0, 210, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 210, 255, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(1000px) rotateX(60deg);
    animation: gridMoveGlobal 40s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMoveGlobal {
    0% {
        transform: perspective(1000px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(1000px) rotateX(60deg) translateY(60px);
    }
}

/* Floating Particles (Global Layer) */
.unified-support-theme::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    box-shadow:
        15vw 10vh 2px rgba(255, 255, 255, 0.6),
        35vw 40vh 2px rgba(0, 210, 255, 0.6),
        55vw 80vh 2px rgba(255, 255, 255, 0.6),
        75vw 20vh 2px rgba(0, 210, 255, 0.6);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    animation: floatParticlesGlobal 15s linear infinite;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatParticlesGlobal {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

/* 2. TRANSPARENT SECTIONS to show background */
.service-hero-support {
    background: transparent !important;
    border-bottom: none;
    padding-bottom: 60px;
}

.service-hero-support::before,
.service-hero-support::after {
    display: none;
    /* Remove local hero animations to use global ones */
}

/* Content Sections Backgrounds - Glassy look */
.unified-support-theme .content-section,
.unified-support-theme .sub-services-section {
    background: transparent !important;
    position: relative;
    z-index: 1;
}

/* Enhancing Readability for Text Blocks */
.unified-support-theme .content-wrapper p {
    color: #cbd5e1;
    font-size: 1.2rem;
    line-height: 1.8;
    background: rgba(15, 23, 42, 0.3);
    /* Subtle backing for text */
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

/* Hero Title: Sci-Fi Effect */
.hero-title-scifi {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-shadow:
        0 0 10px rgba(0, 210, 255, 0.8),
        0 0 20px rgba(0, 210, 255, 0.5),
        0 0 40px rgba(0, 210, 255, 0.3);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    animation: titlePulse 3s infinite ease-in-out;
}

@keyframes titlePulse {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
    }

    50% {
        text-shadow: 0 0 40px rgba(0, 210, 255, 1);
    }
}

/* 3. FEATURE CARDS: Deep Glass Theme */
.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card-support {
    background: rgba(30, 41, 59, 0.25);
    /* More transparent */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: cardFloat 6s ease-in-out infinite;
}

.service-card-support:nth-child(even) {
    animation-delay: 1.5s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.service-card-support:hover {
    background: rgba(30, 41, 59, 0.5);
    border-color: #00d2ff;
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.15);
    transform: translateY(-15px) scale(1.02);
    animation-play-state: paused;
}

.service-card-support i {
    font-size: 3.5rem;
    color: #00d2ff;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
    transition: all 0.5s;
}

.service-card-support:hover i {
    transform: rotateY(180deg) scale(1.1);
    color: #fff;
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.9));
}

.service-card-support h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
}

/* 4. METHODOLOGY & BENEFITS */
.methodology-grid {
    /* Keep previous styles but ensure transparency compatibility */
    display: grid;
    gap: 30px;
    position: relative;
    padding-left: 30px;
    max-width: 800px;
    margin: 50px auto;
}

.methodology-grid::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00d2ff, transparent);
}

.methodology-step {
    background: rgba(255, 255, 255, 0.03);
    /* Glassy */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    transition: transform 0.3s;
}

.methodology-step::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #020617;
    border: 2px solid #00d2ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d2ff;
}

.methodology-step:hover {
    transform: translateX(10px);
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.1), transparent);
    border-color: rgba(0, 210, 255, 0.3);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.step-text h3 {
    color: #00d2ff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.step-text p {
    color: #ecf3f8;
    margin: 0;
    font-size: 0.95rem;
}

.benefits-grid-support {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    background: rgba(16, 185, 129, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e2e8f0;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(16, 185, 129, 0.15);
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
    border-color: #10b981;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.2rem;
}