

        /* ===================== SHARED KEYFRAMES ===================== */
        @keyframes float-blob {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(-30px, 30px); }
            50% { transform: translate(20px, -20px); }
            75% { transform: translate(-20px, -30px); }
        }

        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes rotate-gradient {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* ===================== DEVSECOPS HERO WITH PIPELINE VISUALIZATION - UNIFIED COLOR SCHEME ===================== */
        .dso-hero {
            background: linear-gradient(135deg, rgba(30, 193, 255, 0.15) 0%, rgba(0, 255, 156, 0.08) 100%),
                        radial-gradient(900px 300px at 80% 20%, rgba(30, 193, 255, 0.1), transparent),
                        radial-gradient(900px 350px at 20% 80%, rgba(0, 255, 156, 0.08), transparent);
            position: relative;
            padding: 100px 20px;
            overflow: hidden;
        }

        .dso-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -10%;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(30, 193, 255, 0.15) 0%, transparent 70%);
            animation: float-blob 18s ease-in-out infinite;
        }

        .dso-hero::after {
            content: '';
            position: absolute;
            bottom: -25%;
            right: -5%;
            width: 480px;
            height: 480px;
            background: radial-gradient(circle, rgba(0, 255, 156, 0.08) 0%, transparent 70%);
            animation: float-blob 22s ease-in-out infinite reverse;
        }

        .dso-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .dso-text h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1EC1FF 0%, #00FF9C 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 4s ease-in-out infinite;
        }

        .dso-text p {
            font-size: 1.1rem;
            color: #a0a0a0;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .dso-pipeline {
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, rgba(30, 193, 255, 0.08) 0%, rgba(0, 255, 156, 0.05) 100%);
            border: 2px solid rgba(30, 193, 255, 0.25);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: space-around;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(30, 193, 255, 0.15), inset 0 0 40px rgba(30, 193, 255, 0.03);
            padding: 30px;
            flex-wrap: wrap;
        }

        .dso-pipeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: conic-gradient(from 0deg, rgba(30, 193, 255, 0.1), rgba(0, 255, 156, 0.1), rgba(30, 193, 255, 0.1));
            animation: rotate-gradient 15s linear infinite;
        }

        .pipeline-stage {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            flex: 0 0 auto;
        }

        .pipeline-icon {
            font-size: 3rem;
            color: #1EC1FF;
            filter: drop-shadow(0 0 15px rgba(30, 193, 255, 0.6));
            animation: pulse-icon 2s ease-in-out infinite;
        }

        @keyframes pulse-icon {
            0%, 100% { filter: drop-shadow(0 0 15px rgba(30, 193, 255, 0.6)); }
            50% { filter: drop-shadow(0 0 30px rgba(30, 193, 255, 0.9)); }
        }

        .pipeline-label {
            font-size: 0.85rem;
            color: #a0a0a0;
            text-align: center;
            font-weight: 600;
        }

        .pipeline-arrow {
            position: relative;
            z-index: 2;
            font-size: 1.5rem;
            color: #00FF9C;
            animation: flow-arrow 2s ease-in-out infinite;
        }

        @keyframes flow-arrow {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(5px); }
        }

        /* ===================== FEATURES GRID WITH ICONS ===================== */
        .dso-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 60px 0;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(30, 193, 255, 0.08) 0%, rgba(0, 255, 156, 0.04) 100%);
            border: 2px solid rgba(30, 193, 255, 0.2);
            border-radius: 15px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(30, 193, 255, 0.15), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            border-color: #1EC1FF;
            box-shadow: 0 0 30px rgba(30, 193, 255, 0.3), inset 0 0 20px rgba(30, 193, 255, 0.05);
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #1EC1FF;
            filter: drop-shadow(0 0 10px rgba(30, 193, 255, 0.5));
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            filter: drop-shadow(0 0 20px rgba(0, 255, 156, 0.8));
            transform: scale(1.1) rotate(-5deg);
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }

        .feature-desc {
            font-size: 0.9rem;
            color: #a0a0a0;
            line-height: 1.6;
        }

        /* ===================== TOOLS & INTEGRATION SECTION ===================== */
        .tools-section {
            margin: 80px 0;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .tool-item {
            background: rgba(30, 193, 255, 0.05);
            border: 2px solid rgba(30, 193, 255, 0.15);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .tool-item:hover {
            border-color: #1EC1FF;
            box-shadow: 0 0 20px rgba(30, 193, 255, 0.2);
            transform: translateY(-5px);
            background: rgba(30, 193, 255, 0.1);
        }

        .tool-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            margin-top: 10px;
        }

        /* ===================== RESPONSIVE ===================== */
        @media (max-width: 768px) {
            .dso-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .dso-text h1 {
                font-size: 2rem;
            }

            .dso-pipeline {
                height: 350px;
                flex-direction: column;
            }

            .pipeline-arrow {
                transform: rotate(90deg);
            }

            .tools-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }
        }

        /* ===================== CYBER AWARENESS TRAINING HERO ===================== */
        .cat-hero {
            background: linear-gradient(135deg, rgba(30, 193, 255, 0.15) 0%, rgba(0, 255, 156, 0.08) 100%),
                        radial-gradient(900px 300px at 20% 20%, rgba(30, 193, 255, 0.1), transparent),
                        radial-gradient(900px 350px at 80% 80%, rgba(110, 85, 255, 0.08), transparent);
            position: relative;
            padding: 100px 20px;
            overflow: hidden;
        }

        .cat-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(30, 193, 255, 0.15) 0%, transparent 70%);
            animation: float-blob 15s ease-in-out infinite;
        }

        .cat-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 255, 156, 0.08) 0%, transparent 70%);
            animation: float-blob 20s ease-in-out infinite reverse;
        }

        .cat-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cat-text h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1EC1FF 0%, #00FF9C 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 4s ease-in-out infinite;
        }

        .cat-text p {
            font-size: 1.1rem;
            color: #a0a0a0;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .cat-visual {
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, rgba(30, 193, 255, 0.05) 0%, rgba(0, 255, 156, 0.03) 100%);
            border: 2px solid rgba(30, 193, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(30, 193, 255, 0.1), inset 0 0 40px rgba(30, 193, 255, 0.05);
        }

        .cat-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: conic-gradient(from 0deg, rgba(30, 193, 255, 0.1), rgba(0, 255, 156, 0.1), rgba(30, 193, 255, 0.1));
            animation: rotate-gradient 10s linear infinite;
        }

        .cat-icon-container {
            position: relative;
            z-index: 2;
            font-size: 150px;
            color: #1EC1FF;
            filter: drop-shadow(0 0 20px rgba(30, 193, 255, 0.6));
            animation: pulse-glow 3s ease-in-out infinite;
        }

        /* ===================== MODULE CARDS WITH HOVER EFFECTS ===================== */
        .cat-modules {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .module-card {
            background: linear-gradient(135deg, rgba(30, 193, 255, 0.05) 0%, rgba(0, 255, 156, 0.03) 100%);
            border: 2px solid rgba(30, 193, 255, 0.2);
            border-radius: 15px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .module-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(30, 193, 255, 0.15), transparent);
            transition: left 0.5s ease;
        }

        .module-card:hover::before {
            left: 100%;
        }

        .module-card:hover {
            border-color: #1EC1FF;
            box-shadow: 0 0 30px rgba(30, 193, 255, 0.3), inset 0 0 20px rgba(30, 193, 255, 0.05);
            transform: translateY(-10px);
        }

        .module-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #1EC1FF;
            filter: drop-shadow(0 0 10px rgba(30, 193, 255, 0.5));
            transition: all 0.3s ease;
        }

        .module-card:hover .module-icon {
            filter: drop-shadow(0 0 20px rgba(0, 255, 156, 0.8));
            transform: scale(1.1) rotate(5deg);
        }

        .module-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }

        .module-desc {
            font-size: 0.95rem;
            color: #a0a0a0;
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 15px;
        }

        .module-duration {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #00FF9C;
            margin-top: auto;
        }

        /* ===================== BENEFITS SECTION ===================== */
        .benefits-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin: 80px 0;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .benefit-item {
            display: flex;
            gap: 20px;
            padding: 20px;
            background: rgba(30, 193, 255, 0.03);
            border-left: 4px solid #1EC1FF;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            background: rgba(30, 193, 255, 0.08);
            border-left-color: #00FF9C;
            transform: translateX(10px);
        }

        .benefit-icon {
            font-size: 1.8rem;
            color: #1EC1FF;
            min-width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 0 8px rgba(30, 193, 255, 0.5));
        }

        .benefit-content h3 {
            color: #fff;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .benefit-content p {
            color: #a0a0a0;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .benefits-visual {
            position: relative;
            height: 400px;
            /* background: linear-gradient(135deg, rgba(30, 193, 255, 0.08) 0%, rgba(0, 255, 156, 0.04) 100%);
            border: 2px solid rgba(30, 193, 255, 0.15); */
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .benefits-visual img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* responsive tweaks: ensure benefits image stacks below list on small screens */
        .benefits-image {
          display: block;
          width: 100%;
          height: auto;
        }

        @media (max-width: 768px) {
          .benefits-container {
            grid-template-columns: 1fr;
            gap: 20px;
          }

          .benefits-visual {
            height: auto;
            padding: 18px;
          }

          .benefits-visual img,
          .benefits-image {
            width: 100%;
            height: auto;
            object-fit: cover;
          }
        }

        /* ===================== DIGITAL FORENSICS HERO (UPDATED COLOR SCHEME) ===================== */
        .df-hero {
            background: linear-gradient(135deg, rgba(30, 193, 255, 0.15) 0%, rgba(0, 255, 156, 0.08) 100%),
                        radial-gradient(900px 300px at 30% 20%, rgba(30, 193, 255, 0.1), transparent),
                        radial-gradient(900px 350px at 70% 80%, rgba(0, 255, 156, 0.08), transparent);
            position: relative;
            padding: 100px 20px;
            overflow: hidden;
        }

        .df-hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 650px;
            height: 650px;
            background: radial-gradient(circle, rgba(30, 193, 255, 0.12) 0%, transparent 70%);
            animation: float-blob 20s ease-in-out infinite;
        }

        .df-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(0, 255, 156, 0.08) 0%, transparent 70%);
            animation: float-blob 25s ease-in-out infinite reverse;
        }

        .df-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .df-text h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1EC1FF 0%, #00FF9C 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 4s ease-in-out infinite;
        }

        .df-text p {
            font-size: 1.1rem;
            color: #a0a0a0;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .df-visual {
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, rgba(30, 193, 255, 0.05) 0%, rgba(0, 255, 156, 0.03) 100%);
            border: 2px solid rgba(30, 193, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(30, 193, 255, 0.1), inset 0 0 40px rgba(30, 193, 255, 0.05);
        }

        .df-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: conic-gradient(from 0deg, rgba(30, 193, 255, 0.1), rgba(0, 255, 156, 0.1), rgba(30, 193, 255, 0.1));
            animation: rotate-gradient 12s linear infinite;
        }

        .df-icon-container {
            position: relative;
            z-index: 2;
            font-size: 150px;
            color: #1EC1FF;
            filter: drop-shadow(0 0 20px rgba(30, 193, 255, 0.6));
            animation: pulse-glow 3s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(30, 193, 255, 0.6)); }
            50% { filter: drop-shadow(0 0 40px rgba(30, 193, 255, 0.9)); }
        }

        /* ===================== SERVICE CARDS WITH ENHANCED HOVER ===================== */
        .df-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(30, 193, 255, 0.05) 0%, rgba(0, 255, 156, 0.03) 100%);
            border: 2px solid rgba(30, 193, 255, 0.2);
            border-radius: 15px;
            padding: 35px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(30, 193, 255, 0.15), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            border-color: #1EC1FF;
            box-shadow: 0 0 35px rgba(30, 193, 255, 0.3), inset 0 0 25px rgba(30, 193, 255, 0.05);
            transform: translateY(-12px);
        }

        .service-icon {
            font-size: 3.2rem;
            margin-bottom: 15px;
            color: #1EC1FF;
            filter: drop-shadow(0 0 12px rgba(30, 193, 255, 0.5));
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            filter: drop-shadow(0 0 25px rgba(0, 255, 156, 0.8));
            transform: scale(1.15) rotate(8deg);
        }

        .service-title {
            font-size: 1.35rem;
            font-weight: 750;
            margin-bottom: 12px;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .service-desc {
            font-size: 0.95rem;
            color: #a0a0a0;
            line-height: 1.7;
            flex-grow: 1;
        }

        /* ===================== PROCESS TIMELINE ===================== */
        .df-timeline {
            position: relative;
            padding: 40px 0;
            margin: 60px 0;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 30px;
            margin-bottom: 50px;
            align-items: center;
        }

        .timeline-item:nth-child(even) {
            direction: rtl;
        }

        .timeline-item:nth-child(even) > div:first-child {
            direction: ltr;
        }

        .timeline-content {
            background: rgba(30, 193, 255, 0.04);
            border: 2px solid rgba(30, 193, 255, 0.15);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-content {
            background: rgba(30, 193, 255, 0.08);
            border-color: #1EC1FF;
            box-shadow: 0 0 25px rgba(30, 193, 255, 0.2);
        }

        .timeline-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(30, 193, 255, 0.2) 0%, rgba(0, 255, 156, 0.1) 100%);
            border: 3px solid #1EC1FF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: #00FF9C;
            position: relative;
            z-index: 2;
            box-shadow: 0 0 20px rgba(30, 193, 255, 0.3);
        }

        .timeline-content h3 {
            color: #fff;
            margin-bottom: 8px;
            font-size: 1.15rem;
        }

        .timeline-content p {
            color: #a0a0a0;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===================== RESPONSE TIME CARDS ===================== */
        .response-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }

        .response-item {
            background: rgba(30, 193, 255, 0.05);
            border-left: 4px solid #1EC1FF;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .response-item:hover {
            background: rgba(30, 193, 255, 0.1);
            border-left-color: #00FF9C;
            transform: translateY(-5px);
            box-shadow: 0 0 20px rgba(30, 193, 255, 0.15);
        }

        .response-time {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1EC1FF, #00FF9C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .response-label {
            font-size: 0.9rem;
            color: #a0a0a0;
        }

        /* ===================== RESPONSIVE FOR ALL SERVICES ===================== */
        @media (max-width: 768px) {
            .df-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .df-text h1 {
                font-size: 2rem;
            }

            .df-visual {
                height: 300px;
            }

            .df-icon-container {
                font-size: 80px;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                grid-template-columns: 1fr;
                direction: ltr;
            }

            .timeline-item:nth-child(even) > div:first-child {
                direction: ltr;
            }
        }


/* ===================== SERVICES PAGE CONSOLIDATED STYLES ===================== */

/* Services Page Specific Styles - Cyber UI Design System */
.services-page {
  --primary-neon: var(--anim-neon-1);
  --secondary-neon: var(--anim-neon-2);
  --accent-neon: var(--anim-neon-3);
  --cyber-bg: var(--dark-bg);
  --cyber-surface: var(--dark-surface);
  --cyber-glass: var(--dark-glass);
  --cyber-text: var(--dark-text);
  --cyber-muted: var(--dark-muted);
  --cyber-border: var(--dark-border);
  --glow-shadow: var(--anim-glow);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cyber Gradient Text Animation */
.wv-gradient {
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  background-size: 300% 100%;
  animation: cyber-shift 4s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px var(--primary-neon);
}

@keyframes cyber-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.service-heading_sp{
  color: #1EC1FF !important;
  text-shadow: 0 0 12px rgba(30,193,255,0.6);
  -webkit-text-fill-color: #1EC1FF !important;
}

/* Service Hero Section with Grid Layout */
.service-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(30, 193, 255, 0.1) 0%, rgba(0, 255, 156, 0.05) 100%),
              radial-gradient(900px 300px at 20% 20%, rgba(30, 193, 255, 0.08), transparent),
              radial-gradient(900px 350px at 80% 80%, rgba(110, 85, 255, 0.05), transparent);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(30,193,255,0.02) 50%, transparent 70%),
              linear-gradient(-45deg, transparent 30%, rgba(110,85,255,0.02) 50%, transparent 70%);
  animation: cyber-grid 20s linear infinite;
}

@keyframes cyber-grid {
  0% { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 20px;
  background: linear-gradient(90deg, #1EC1FF, #6E55FF, #00FF9C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(30, 193, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #1EC1FF;
  margin-bottom: 15px;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(30, 193, 255, 0.4);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--dark-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(30, 193, 255, 0.08);
  border-radius: 8px;
  border-left: 3px solid #1EC1FF;
  color: var(--dark-text);
}

.feature-item i {
  color: #00FF9C;
  font-size: 1.2rem;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, #1EC1FF, #00FF9C);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(30, 193, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 193, 255, 0.4);
}

.btn-secondary {
  padding: 14px 32px;
  background: transparent;
  border: 2px solid #1EC1FF;
  color: #1EC1FF;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(30, 193, 255, 0.1);
  box-shadow: 0 8px 20px rgba(30, 193, 255, 0.2);
}

.hero-image {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 193, 255, 0.15) 0%, rgba(0, 255, 156, 0.1) 100%);
  border-radius: 15px;
  border: 2px solid rgba(30, 193, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #1EC1FF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(30, 193, 255, 0.2);
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 193, 255, 0.2) 0%, transparent 70%);
  animation: float-blob 8s ease-in-out infinite;
}

.image-placeholder i {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(30, 193, 255, 0.5));
}

/* Services Overview Grid */
.services-overview-section {
  padding: 80px 20px;
  background: var(--dark-bg);
  position: relative;
}

.section {
  position: relative;
  z-index: 1;
}

.container {
  /*max-width: 1200px;*/
  /*margin: 0 auto;*/
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.section-header h2 .highlight {
  color: #1EC1FF;
  text-shadow: 0 0 20px rgba(30, 193, 255, 0.4);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--dark-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-item {
  background: rgba(30, 193, 255, 0.05);
  border: 1px solid rgba(30, 193, 255, 0.2);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 193, 255, 0.1), transparent);
  transition: left 0.6s;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 193, 255, 0.2);
  border-color: #1EC1FF;
}

.service-item:hover::before {
  left: 100%;
}

.service-icon {
  font-size: 3rem;
  color: #1EC1FF;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(30, 193, 255, 0.4);
  position: relative;
  z-index: 1;
}

.service-item h3 {
  color: var(--dark-text);
  font-size: 1.3rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-item p {
  color: var(--dark-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 20px;
  background: var(--dark-surface);
  position: relative;
  overflow: hidden;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.why-item {
  background: rgba(30, 193, 255, 0.05);
  border: 1px solid rgba(30, 193, 255, 0.2);
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.why-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 193, 255, 0.2);
  border-color: #1EC1FF;
}

.why-icon {
  font-size: 3rem;
  color: #1EC1FF;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(30, 193, 255, 0.4);
}

.why-item h3 {
  color: var(--dark-text);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.why-item p {
  color: var(--dark-muted);
  line-height: 1.6;
}

/* Process Timeline */
.process-section {
  padding: 80px 20px;
  background: var(--dark-bg);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.process-step {
  background: rgba(30, 193, 255, 0.05);
  border: 1px solid rgba(30, 193, 255, 0.2);
  padding: 40px 30px 30px;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 193, 255, 0.2);
  border-color: #1EC1FF;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1EC1FF, #00FF9C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(30, 193, 255, 0.3);
}

.process-step h3 {
  color: var(--dark-text);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--dark-muted);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 60px 20px;
  background: var(--dark-surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-box {
  background: rgba(30, 193, 255, 0.05);
  border: 1px solid rgba(30, 193, 255, 0.2);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 193, 255, 0.2);
  border-color: #1EC1FF;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1EC1FF, #00FF9C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(30, 193, 255, 0.3);
}

.stat-label {
  color: var(--dark-muted);
  font-size: 1rem;
  font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(30, 193, 255, 0.05);
  border: 1px solid rgba(30, 193, 255, 0.2);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 193, 255, 0.2);
  border-color: #1EC1FF;
}

.testimonial-text {
  margin-bottom: 25px;
}

.testimonial-text p {
  color: var(--dark-muted);
  font-style: italic;
  line-height: 1.8;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1EC1FF, #00FF9C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(30, 193, 255, 0.3);
}

.author-info h4 {
  color: var(--dark-text);
  margin: 0 0 3px 0;
  font-size: 1rem;
}

.author-info span {
  color: var(--dark-muted);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(30, 193, 255, 0.15) 0%, rgba(0, 255, 156, 0.08) 100%);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.cta-content h2 .highlight {
  color: #1EC1FF;
  text-shadow: 0 0 20px rgba(30, 193, 255, 0.4);
}

.cta-content p {
  color: var(--dark-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
   /* Services Page Specific Styles - Cyber UI Design System */

/* Use variables from styles.css for consistency */
.services-page {
  --primary-neon: var(--anim-neon-1);
  --secondary-neon: var(--anim-neon-2);
  --accent-neon: var(--anim-neon-3);
  --cyber-bg: var(--dark-bg);
  --cyber-surface: var(--dark-surface);
  --cyber-glass: var(--dark-glass);
  --cyber-text: var(--dark-text);
  --cyber-muted: var(--dark-muted);
  --cyber-border: var(--dark-border);
  --glow-shadow: var(--anim-glow);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .services-page {
  --primary-neon: #1EC1FF;
  --secondary-neon: #6E55FF;
  --accent-neon: #00FF9C;
} */



/* Cyber Gradient Text Animation */
.wv-gradient {
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  background-size: 300% 100%;
  animation: cyber-shift 4s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px var(--primary-neon);
}

@keyframes cyber-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.service-heading_sp{
  color: #1EC1FF !important;
  text-shadow: 0 0 12px rgba(30,193,255,0.6);
  -webkit-text-fill-color: #1EC1FF !important;
}


/* Cyber Glow Effects */
.cyber-glow {
  position: relative;
  overflow: hidden;
}

.cyber-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30, 193, 255, 0.1), transparent);
  animation: cyber-sweep 3s infinite;
}

@keyframes cyber-sweep {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: -100%; }
}

/* Cyber Hero Section */
.wv-section {
  padding: 70px 20px;
  background:
    radial-gradient(900px 300px at 20% 20%, rgba(30,193,255,.08), transparent),
    radial-gradient(900px 350px at 80% 80%, rgba(110,85,255,.05), transparent),
    var(--cyber-bg);
  position: relative;
  overflow: hidden;
}

.wv-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 30%, rgba(30,193,255,0.02) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(110,85,255,0.02) 50%, transparent 70%);
  animation: cyber-grid 20s linear infinite;
}

@keyframes cyber-grid {
  0% { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}

.wv-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wv-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 980px) {
  .wv-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.wv-card {
  position: relative;
  padding: 40px;
  background: var(--cyber-glass);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid var(--cyber-border);
  transition: var(--transition);
  box-shadow: var(--glow-shadow);
}

.wv-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(30, 193, 255, 0.2);
}

.wv-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wv-card:hover::before {
  opacity: 0.4;
}

.wv-card-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.wv-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  animation: cyber-pulse 2s ease-in-out infinite;
}

@keyframes cyber-pulse {
  0%, 100% { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 8px 16px rgba(30, 193, 255, 0.4); }
}

.wv-toolname {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  color: var(--cyber-text);
}

.wv-short {
  margin: 5px 0 0 0;
  color: var(--cyber-muted);
  font-size: 1.1rem;
}

.wv-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--cyber-muted);
}

.wv-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.wv-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--cyber-text);
  font-weight: 500;
}

.icon-glow {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.icon-glow:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(30, 193, 255, 0.3);
}

.wv-cta-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.wv-cta {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.wv-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.wv-cta:hover::before {
  left: 100%;
}

.wv-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(30, 193, 255, 0.4);
}

.wv-ghost {
  padding: 12px 24px;
  border: 2px solid var(--primary-neon);
  color: var(--primary-neon);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  background: transparent;
  position: relative;
}

.wv-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wv-ghost:hover::before {
  opacity: 0.1;
}

.wv-ghost:hover {
  color: white;
  box-shadow: 0 0 20px rgba(30, 193, 255, 0.3);
}

/* Cyber Terminal Styles */
.wv-terminal-wrap {
  display: flex;
  justify-content: center;
}

.wv-terminal {
  width: 100%;
  max-width: 500px;
  background: var(--cyber-glass);
  border-radius: 15px;
  backdrop-filter: blur(20px);
  border: 1px solid var(--cyber-border);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--glow-shadow);
  position: relative;
}

.wv-terminal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  opacity: 0.6;
}

.wv-terminal:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(30, 193, 255, 0.2);
}

.wv-term-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--cyber-surface);
  border-bottom: 1px solid var(--cyber-border);
}

.term-title {
  color: var(--cyber-text);
  font-weight: 600;
  text-shadow: 0 0 10px var(--primary-neon);
}

.term-badge {
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(30, 193, 255, 0.3);
}

.wv-term-content {
  padding: 20px;
}

.wv-result-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wv-result-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  transition: var(--transition);
  position: relative;
}

.wv-result-list li:hover {
  transform: translateX(5px);
}

.wv-result-list li.crit {
  background: rgba(220, 53, 69, 0.1);
  border-left: 4px solid #dc3545;
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.2);
}

.wv-result-list li.warn {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

.wv-result-list li.good {
  background: rgba(40, 167, 69, 0.1);
  border-left: 4px solid #28a745;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.2);
}

.wv-result-list li span:first-child {
  font-weight: bold;
  margin-right: 5px;
  color: var(--cyber-text);
}

.wv-term-cursor {
  display: inline-block;
  animation: cyber-blink 1s infinite;
  color: var(--primary-neon);
  font-weight: bold;
  padding: 0 20px 20px 20px;
  text-shadow: 0 0 10px var(--primary-neon);
}

@keyframes cyber-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Cyber Why Choose HackVitraSec Section */
.why-choose-hv {
  padding: 80px 20px;
  background: var(--cyber-surface);
  position: relative;
  overflow: hidden;
}

.why-choose-hv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(30,193,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(110,85,255,0.03) 0%, transparent 50%);
  animation: cyber-float 15s ease-in-out infinite;
}

@keyframes cyber-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.why-choose-hv__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-choose-hv__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--cyber-text);
  position: relative;
}

.why-choose-hv__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
  border-radius: 1px;
}

.why-choose-hv__title span {
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px var(--primary-neon);
}

.why-choose-hv__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-choose-hv__item {
  background: var(--cyber-glass);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--cyber-border);
  position: relative;
  overflow: hidden;
}

.why-choose-hv__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30,193,255,0.05), transparent);
  transition: left 0.6s;
}

.why-choose-hv__item:hover::before {
  left: 100%;
}

.why-choose-hv__item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(30, 193, 255, 0.15);
}

.why-choose-hv__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.why-choose-hv__icon::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-choose-hv__item:hover .why-choose-hv__icon::after {
  opacity: 0.5;
}

.why-choose-hv__item h3 {
  color: var(--cyber-text);
  margin-bottom: 15px;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

.why-choose-hv__item p {
  color: var(--cyber-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Cyber Stats Section */
.stats-section {
  padding: 60px 20px;
  background: var(--cyber-bg);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(30,193,255,0.04) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(110,85,255,0.04) 0%, transparent 40%);
  animation: cyber-pulse-bg 8s ease-in-out infinite;
}

@keyframes cyber-pulse-bg {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--cyber-glass);
  border-radius: 15px;
  border: 1px solid var(--cyber-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover::before {
  opacity: 0.05;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(30, 193, 255, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  background-size: 200% 100%;
  animation: cyber-number-glow 3s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px var(--primary-neon);
  position: relative;
  z-index: 1;
}

@keyframes cyber-number-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.stat-label {
  color: var(--cyber-muted);
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Cyber Methodology Section */
.methodology-section {
  padding: 80px 20px;
  background: var(--cyber-surface);
  position: relative;
  overflow: hidden;
}

.methodology-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 40%, rgba(30,193,255,0.02) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(110,85,255,0.02) 50%, transparent 60%);
  animation: cyber-grid-slow 25s linear infinite;
}

@keyframes cyber-grid-slow {
  0% { transform: translateX(-50%) translateY(-50%); }
  100% { transform: translateX(50%) translateY(50%); }
}

.methodology-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.methodology-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--cyber-text);
  position: relative;
}

.methodology-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  border-radius: 1px;
}

.methodology-title span {
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px var(--primary-neon);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.methodology-step {
  background: var(--cyber-glass);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--cyber-border);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.methodology-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.methodology-step:hover::before {
  opacity: 0.03;
}

.methodology-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(30, 193, 255, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  animation: cyber-pulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.step-number::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

.methodology-step h3 {
  color: var(--cyber-text);
  margin-bottom: 15px;
  font-size: 1.3rem;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.methodology-step p {
  color: var(--cyber-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Cyber Testimonials Section */
.testimonials-section {
  padding: 80px 20px;
  background: var(--cyber-bg);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(30,193,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(110,85,255,0.03) 0%, transparent 50%);
  animation: cyber-float-reverse 20s ease-in-out infinite;
}

@keyframes cyber-float-reverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(15px) rotate(-0.5deg); }
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--cyber-text);
  position: relative;
}

.testimonials-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  border-radius: 1px;
}

.testimonials-title span {
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px var(--primary-neon);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--cyber-glass);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--cyber-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 0.02;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(30, 193, 255, 0.15);
}

.testimonial-content p {
  color: var(--cyber-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: cyber-pulse 4s ease-in-out infinite;
  position: relative;
}

.author-avatar::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.author-info h4 {
  color: var(--cyber-text);
  margin: 0;
  font-size: 1rem;
}

.author-info span {
  color: var(--cyber-muted);
  font-size: 0.9rem;
}

/* Cyber FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: var(--cyber-bg);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 40% 40%, rgba(30,193,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(110,85,255,0.03) 0%, transparent 50%);
  animation: cyber-float 18s ease-in-out infinite;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--cyber-text);
  position: relative;
}

.faq-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  border-radius: 1px;
}

.faq-title span {
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px var(--primary-neon);
}

.faq-grid {
  display: grid;
  gap: 20px;
}

.faq-item {
  background: var(--cyber-glass);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--cyber-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(30,193,255,0.05), transparent);
  transition: left 0.6s;
}

.faq-item:hover::before {
  left: 100%;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(30, 193, 255, 0.15);
}

.faq-item h3 {
  color: var(--cyber-text);
  margin-bottom: 15px;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.faq-item p {
  color: var(--cyber-muted);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Cyber Images Showcase Section */
.cyber-images-section {
  padding: 80px 20px;
  background: var(--cyber-surface);
  position: relative;
  overflow: hidden;
}

.cyber-images-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(30,193,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(110,85,255,0.03) 0%, transparent 50%);
  animation: cyber-float-reverse 20s ease-in-out infinite;
}

.cyber-images-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cyber-images-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--cyber-text);
  position: relative;
}

.cyber-images-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  border-radius: 1px;
}

.cyber-images-title span {
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px var(--primary-neon);
}

.cyber-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.cyber-image-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--glow-shadow);
  border: 1px solid var(--cyber-border);
}

.cyber-image-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(30, 193, 255, 0.3);
}

.cyber-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.cyber-image-card:hover .cyber-image {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.cyber-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 20px;
  color: white;
  transform: translateY(100%);
  transition: var(--transition);
}

.cyber-image-card:hover .cyber-image-overlay {
  transform: translateY(0);
}

.cyber-image-overlay h3 {
  margin: 0 0 10px 0;
  font-size: 1.3rem;
  color: var(--primary-neon);
  text-shadow: 0 0 10px var(--primary-neon);
}

.cyber-image-overlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Cyber Quote Section */
.quote-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--cyber-bg), var(--cyber-surface));
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(30,193,255,0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(110,85,255,0.04) 0%, transparent 40%);
  animation: cyber-pulse-bg 10s ease-in-out infinite;
}

.quote-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .quote-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.quote-content h2 {
  font-size: 2.5rem;
  color: var(--cyber-text);
  margin-bottom: 20px;
  position: relative;
}

.quote-content h2 span {
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px var(--primary-neon);
}

.quote-content p {
  color: var(--cyber-muted);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.quote-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.quote-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyber-muted);
}

.quote-feature i {
  color: var(--primary-neon);
  font-size: 1.2rem;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.quote-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.quote-btn:hover::before {
  left: 100%;
}

.quote-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(30, 193, 255, 0.4);
}

.quote-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.quote-image .cyber-image:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .wv-section {
    padding: 50px 20px;
  }

  .wv-card {
    padding: 30px 20px;
  }

  .wv-toolname {
    font-size: 2.5rem;
  }

  .why-choose-hv__title,
  .methodology-title,
  .testimonials-title,
  .faq-title,
  .quote-content h2 {
    font-size: 2rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .quote-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wv-card-top {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .wv-toolname {
    font-size: 2rem;
  }

  .wv-cta-row {
    flex-direction: column;
  }
.hv-seo-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

  .wv-cta,
  .wv-ghost {
    text-align: center;
    justify-content: center;
  }