.elementor-14229 .elementor-element.elementor-element-ea6251c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-96c40be */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0f0a23 100%);
            color: #e0e0e0;
            line-height: 1.8;
            min-height: 100vh;
        }

        /* Header */
        .header {
            padding: 40px 20px;
            text-align: center;
            border-bottom: 3px solid #6366f1;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            animation: headerScan 4s linear infinite;
        }

        @keyframes headerScan {
            0% { transform: translateX(0); }
            100% { transform: translateX(50%); }
        }

        .header h1 {
            font-size: 3rem;
            color: #6366f1;
            text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
            position: relative;
            z-index: 1;
        }

        .header p {
            color: #a0a0c0;
            margin-top: 10px;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }

        /* Navigation */
        .nav {
            background: #0d0d1f;
            padding: 15px;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #2a2a4a;
        }

        .nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .nav a {
            color: #6366f1;
            text-decoration: none;
            padding: 8px 16px;
            border: 1px solid #6366f1;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav a:hover {
            background: #6366f1;
            color: #0a0a1a;
            box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
		
		section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
		
        .section {
            background: rgba(20, 20, 40, 0.8);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid #2a2a4a;
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #6366f1, #8b5cf6, #ec4899);
        }

        .section h2 {
            color: #6366f1;
            font-size: 2rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section h2::before {
            content: '🏢';
            font-size: 1.5rem;
        }

        .section h3 {
            color: #8b5cf6;
            font-size: 1.4rem;
            margin: 25px 0 15px;
        }

        .section p {
            margin-bottom: 15px;
            text-align: justify;
        }

        /* Active Directory Simulation */
        .simulation-container {
            background: #0a0a15;
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #1a1a3a;
            position: relative;
            min-height: 700px;
            overflow: hidden;
        }

        .simulation-title {
            text-align: center;
            color: #6366f1;
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        /* AD Domain Structure */
        .domain-structure {
            display: flex;
            flex-direction: column;
            gap: 30px;
            position: relative;
        }

        /* Domain Controller */
        .domain-controller {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
            border: 2px solid #6366f1;
            border-radius: 20px;
            padding: 25px;
            position: relative;
            animation: dcGlow 3s ease-in-out infinite;
        }

        @keyframes dcGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.2); }
            50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.4); }
        }

        .dc-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .dc-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            animation: iconRotate 10s linear infinite;
        }

        @keyframes iconRotate {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }

        .dc-title {
            color: #6366f1;
            font-size: 1.3rem;
        }

        .dc-subtitle {
            color: #a0a0c0;
            font-size: 0.85rem;
        }

        /* Domain Tree */
        .domain-tree {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .domain-node {
            background: rgba(30, 30, 60, 0.6);
            border: 1px solid #3a3a5a;
            border-radius: 10px;
            padding: 15px 25px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .domain-node:hover {
            border-color: #6366f1;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
        }

        .domain-node.root {
            border-color: #6366f1;
            background: rgba(99, 102, 241, 0.1);
        }

        .domain-node.child {
            border-color: #8b5cf6;
        }

        .domain-name {
            color: #e0e0e0;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .domain-type {
            color: #606080;
            font-size: 0.7rem;
            margin-top: 5px;
        }

        /* User/Group Display */
        .identity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .identity-card {
            background: rgba(30, 30, 60, 0.5);
            border-radius: 12px;
            padding: 15px;
            border: 1px solid #2a2a4a;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .identity-card:hover {
            border-color: #8b5cf6;
            transform: scale(1.02);
        }

        .identity-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .identity-card.user .identity-icon {
            background: linear-gradient(135deg, #22c55e, #16a34a);
        }

        .identity-card.admin .identity-icon {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }

        .identity-card.group .identity-icon {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
        }

        .identity-card.computer .identity-icon {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .identity-info h4 {
            color: #e0e0e0;
            font-size: 0.9rem;
        }

        .identity-info p {
            color: #606080;
            font-size: 0.75rem;
            margin: 0;
        }

        /* Attack Flow Animation */
        .attack-flow {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
            border: 1px solid #ef4444;
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
        }

        .attack-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .attack-indicator {
            width: 10px;
            height: 10px;
            background: #ef4444;
            border-radius: 50%;
            animation: attackPulse 1s ease-in-out infinite;
        }

        @keyframes attackPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .attack-title {
            color: #ef4444;
            font-size: 1rem;
        }

        .attack-paths {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 15px;
        }

        .attack-path {
            background: rgba(30, 30, 60, 0.6);
            border-radius: 10px;
            padding: 12px 20px;
            text-align: center;
            border: 1px solid rgba(239, 68, 68, 0.3);
            transition: all 0.3s ease;
        }

        .attack-path:hover {
            border-color: #ef4444;
            background: rgba(239, 68, 68, 0.1);
        }

        .attack-path-icon {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .attack-path-name {
            color: #e0e0e0;
            font-size: 0.8rem;
        }

        .attack-path-desc {
            color: #606080;
            font-size: 0.7rem;
            margin-top: 5px;
        }

        /* GPO Flow */
        .gpo-container {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.05));
            border: 1px solid #22c55e;
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
        }

        .gpo-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .gpo-indicator {
            width: 10px;
            height: 10px;
            background: #22c55e;
            border-radius: 50%;
            animation: gpoPulse 2s ease-in-out infinite;
        }

        @keyframes gpoPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .gpo-title {
            color: #22c55e;
            font-size: 1rem;
        }

        .gpo-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .gpo-node {
            background: rgba(30, 30, 60, 0.6);
            border: 1px solid #22c55e;
            border-radius: 10px;
            padding: 12px 20px;
            text-align: center;
        }

        .gpo-arrow {
            color: #22c55e;
            font-size: 1.5rem;
            animation: arrowFlow 1s ease-in-out infinite;
        }

        @keyframes arrowFlow {
            0%, 100% { transform: translateX(0); opacity: 0.5; }
            50% { transform: translateX(5px); opacity: 1; }
        }

        /* Connection Lines Animation */
        .connection-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #6366f1;
            border-radius: 50%;
            animation: particleMove 5s linear infinite;
            box-shadow: 0 0 10px #6366f1;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 30%; animation-delay: 1s; }
        .particle:nth-child(3) { left: 50%; animation-delay: 2s; }
        .particle:nth-child(4) { left: 70%; animation-delay: 3s; }
        .particle:nth-child(5) { left: 90%; animation-delay: 4s; }

        @keyframes particleMove {
            0% {
                top: 0;
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% {
                top: 100%;
                opacity: 0;
            }
        }

        /* Statistics Cards */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border: 1px solid #2a2a4a;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #6366f1;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #a0a0c0;
            font-size: 1rem;
        }

        .stat-source {
            font-size: 0.8rem;
            color: #606080;
            margin-top: 10px;
        }

        .stat-source a {
            color: #8b5cf6;
            text-decoration: none;
        }

        .stat-source a:hover {
            text-decoration: underline;
        }

        /* Key Terms */
        .terms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 25px 0;
        }

        .term-card {
            background: rgba(30, 30, 60, 0.5);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #2a2a4a;
            transition: all 0.3s ease;
        }

        .term-card:hover {
            border-color: #6366f1;
            transform: scale(1.02);
        }

        .term-title {
            color: #8b5cf6;
            font-size: 1.2rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .term-content {
            color: #c0c0e0;
        }

        /* Story Section */
        .story-container {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
            border-left: 4px solid #6366f1;
        }

        .story-character {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .character-avatar {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .character-info h4 {
            color: #6366f1;
            font-size: 1.3rem;
        }

        .character-info p {
            color: #a0a0c0;
            font-size: 0.9rem;
        }

        .story-timeline {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .timeline-item {
            flex: 1;
            min-width: 200px;
            background: rgba(20, 20, 40, 0.8);
            border-radius: 10px;
            padding: 20px;
            position: relative;
        }

        .timeline-item.before {
            border-top: 3px solid #ef4444;
        }

        .timeline-item.after {
            border-top: 3px solid #22c55e;
        }

        .timeline-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .timeline-item.before .timeline-label {
            color: #ef4444;
        }

        .timeline-item.after .timeline-label {
            color: #22c55e;
        }

        /* Step Guide */
        .steps-container {
            counter-reset: step-counter;
        }

        .step-item {
            background: rgba(25, 25, 50, 0.6);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            border-left: 4px solid #6366f1;
            position: relative;
            padding-left: 80px;
        }

        .step-item::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: bold;
            color: #0a0a1a;
        }

        .step-title {
            color: #6366f1;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .step-content ul {
            list-style: none;
            padding-left: 0;
        }

        .step-content li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #c0c0e0;
        }

        .step-content li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #8b5cf6;
        }

        /* Mistakes &amp; Best Practices */
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 25px 0;
        }

        .comparison-card {
            background: rgba(20, 20, 40, 0.8);
            border-radius: 15px;
            padding: 25px;
        }

        .comparison-card.mistakes {
            border-top: 3px solid #ef4444;
        }

        .comparison-card.best-practices {
            border-top: 3px solid #22c55e;
        }

        .comparison-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comparison-card.mistakes .comparison-title {
            color: #ef4444;
        }

        .comparison-card.best-practices .comparison-title {
            color: #22c55e;
        }

        .comparison-list {
            list-style: none;
        }

        .comparison-list li {
            padding: 12px 0;
            border-bottom: 1px solid #2a2a4a;
            padding-left: 30px;
            position: relative;
            color: #c0c0e0;
        }

        .comparison-list li:last-child {
            border-bottom: none;
        }

        .comparison-list li::before {
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        .comparison-card.mistakes .comparison-list li::before {
            content: '✗';
            color: #ef4444;
        }

        .comparison-card.best-practices .comparison-list li::before {
            content: '✓';
            color: #22c55e;
        }

        /* Red Team vs Blue Team */
        .team-battle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 25px 0;
        }

        @media (max-width: 768px) {
            .team-battle {
                grid-template-columns: 1fr;
            }
        }

        .team-card {
            border-radius: 15px;
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .team-card.red-team {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(185, 28, 28, 0.3));
            border: 2px solid #ef4444;
        }

        .team-card.blue-team {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.3));
            border: 2px solid #3b82f6;
        }

        .team-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .team-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .team-card.red-team .team-icon {
            background: rgba(239, 68, 68, 0.3);
        }

        .team-card.blue-team .team-icon {
            background: rgba(59, 130, 246, 0.3);
        }

        .team-title {
            font-size: 1.4rem;
        }

        .team-card.red-team .team-title {
            color: #ef4444;
        }

        .team-card.blue-team .team-title {
            color: #3b82f6;
        }

        .team-content {
            color: #c0c0e0;
        }

        .team-content ul {
            list-style: none;
            padding: 0;
        }

        .team-content li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
        }

        .team-content li::before {
            content: '◆';
            position: absolute;
            left: 0;
        }

        .team-card.red-team .team-content li::before {
            color: #ef4444;
        }

        .team-card.blue-team .team-content li::before {
            color: #3b82f6;
        }

        /* Threat Hunter */
        .threat-hunter {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
            border: 2px solid #f59e0b;
            position: relative;
        }

        .threat-hunter::before {
            content: '👁️';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 2rem;
            background: #1a1a2e;
            padding: 0 10px;
        }

        .hunter-title {
            color: #f59e0b;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .hunter-content {
            color: #c0c0e0;
        }

        .attack-scenario {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            border-left: 3px solid #f59e0b;
        }

        .scenario-title {
            color: #f59e0b;
            font-size: 1rem;
            margin-bottom: 10px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 20px;
            padding: 50px;
            text-align: center;
            border: 2px solid #6366f1;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 50%);
            animation: ctaGlow 5s ease-in-out infinite;
        }

        @keyframes ctaGlow {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 1; }
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            color: #6366f1;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .cta-text {
            color: #c0c0e0;
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cta-button.primary {
            background: #6366f1;
            color: #0a0a1a;
            border: 2px solid #6366f1;
        }

        .cta-button.primary:hover {
            background: transparent;
            color: #6366f1;
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
        }

        .cta-button.secondary {
            background: transparent;
            color: #8b5cf6;
            border: 2px solid #8b5cf6;
        }

        .cta-button.secondary:hover {
            background: #8b5cf6;
            color: #0a0a1a;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
        }

        /* Footer */
        .footer {
            background: #0a0a15;
            padding: 30px 20px;
            text-align: center;
            border-top: 1px solid #2a2a4a;
            margin-top: 60px;
        }

        .footer p {
            color: #606080;
            font-size: 0.9rem;
        }

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

            .section {
                padding: 25px;
            }

            .attack-paths {
                flex-direction: column;
            }

            .step-item {
                padding-left: 25px;
                padding-top: 70px;
            }

            .step-item::before {
                left: 50%;
                top: 20px;
                transform: translateX(-50%);
            }
        }/* End custom CSS */