/*
Theme Name: VMGTS Corporate Theme
Theme URI: https://vmgts.ai
Author: Vanguard Management Solutions
Author URI: https://vmgts.ai
Description: Custom WordPress theme for Vanguard Management Solutions cybersecurity website
Version: 1.0.0
License: Proprietary
Text Domain: vmgts
Tags: corporate, security, custom-colors, custom-menu, featured-images
*/

/* ========================================
   START OF YOUR ORIGINAL CSS FROM HTML
   Copy everything between <style> and </style> tags from your HTML
   This should start with the * selector below
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #dc2626;
    --dark-red: #991b1b;
    --deep-red: #7f1d1d;
    --shield-gray: #64748b;
    --shield-light-gray: #94a3b8;
    --shield-dark: #334155;
    --navy-dark: #1e293b;
    --light-bg: #ffffff;
    --gray-bg: #f8fafb;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light-gray: #94a3b8;
    --accent-red-light: #ef4444;
    --accent-red-dark: #b91c1c;
    --border-light: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(30, 41, 59, 0.08);
    --shadow-md: 0 4px 12px rgba(30, 41, 59, 0.12);
    --shadow-lg: 0 8px 24px rgba(30, 41, 59, 0.16);
    --glow-red: 0 0 30px rgba(153, 27, 27, 0.5);
    --glow-gray: 0 0 30px rgba(100, 116, 139, 0.3);
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #dc2626;
            --dark-red: #991b1b;
            --deep-red: #7f1d1d;
            --shield-gray: #64748b;
            --shield-light-gray: #94a3b8;
            --shield-dark: #334155;
            --navy-dark: #1e293b;
            --light-bg: #ffffff;
            --gray-bg: #f8fafb;
            --text-dark: #1e293b;
            --text-gray: #64748b;
            --text-light-gray: #94a3b8;
            --accent-red-light: #ef4444;
            --accent-red-dark: #b91c1c;
            --border-light: #e2e8f0;
            --shadow-sm: 0 2px 4px rgba(30, 41, 59, 0.08);
            --shadow-md: 0 4px 12px rgba(30, 41, 59, 0.12);
            --shadow-lg: 0 8px 24px rgba(30, 41, 59, 0.16);
            --glow-red: 0 0 30px rgba(153, 27, 27, 0.5);
            --glow-gray: 0 0 30px rgba(100, 116, 139, 0.3);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        /* Animated Background Pattern */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(220, 38, 38, 0.01) 1px, transparent 1px),
                linear-gradient(90deg, rgba(100, 116, 139, 0.01) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
            z-index: 0;
            animation: grid-shift 20s linear infinite;
        }

        @keyframes grid-shift {
            0% { transform: translate(0, 0); }
            100% { transform: translate(40px, 40px); }
        }

        /* Enhanced Navigation with Glow */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
            box-shadow: 0 2px 20px rgba(220, 38, 38, 0.08);
        }

        /* Colorful top border for nav */
        nav::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, 
                rgba(30, 58, 138, 1) 0%, 
                rgba(37, 99, 235, 1) 25%, 
                var(--shield-gray) 50%, 
                var(--shield-light-gray) 75%, 
                rgba(30, 58, 138, 1) 100%);
            background-size: 200% 100%;
            animation: gradient-slide 8s linear infinite;
        }

        @keyframes gradient-slide {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .logo:hover .logo-shield {
            filter: drop-shadow(var(--glow-red));
        }

        .logo-shield {
            width: 75px;
            height: 83px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: filter 0.3s ease;
        }

        .logo-svg {
            width: 100%;
            height: 100%;
            animation: logo-pulse 3s ease-in-out infinite;
        }

        /* SVG Path Animations */
        .logo-svg path,
        .logo-svg ellipse,
        .logo-svg rect,
        .logo-svg circle {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: draw-path 3s ease-in-out forwards;
        }

        .logo-svg text {
            opacity: 0;
            animation: fade-in-text 1s ease 2s forwards;
        }

        @keyframes draw-path {
            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes fade-in-text {
            to {
                opacity: 0.8;
            }
        }

        @keyframes logo-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

.logo-text .brand {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red-dark));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Georgia', 'Times New Roman', serif;
        }


        .logo-text .tagline {
            font-size: 0.8rem;
            color: var(--text-gray);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::before {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100%;
            height: 2px;
            background: var(--primary-red);
            transition: transform 0.3s ease;
            box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            transform: translateX(-50%) scaleX(1);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-red);
            text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
        }

        /* Page Container */
        .page {
            display: none;
            padding-top: 80px;
            min-height: calc(100vh - 200px);
            animation: pageSlideIn 0.6s ease;
            flex: 1;
        }

        .page.active {
            display: block;
        }

        @keyframes pageSlideIn {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Enhanced Hero Section */
        .hero {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
            min-height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Colorful gradient overlay */
        .hero::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at top right, rgba(30, 58, 138, 0.3) 0%, transparent 40%),
                        radial-gradient(ellipse at bottom left, rgba(37, 99, 235, 0.25) 0%, transparent 40%),
                        radial-gradient(ellipse at center, rgba(29, 78, 216, 0.2) 0%, transparent 60%);
            animation: gradient-shift 15s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes gradient-shift {
            0%, 100% { transform: rotate(0deg) scale(1); }
            33% { transform: rotate(120deg) scale(1.1); }
            66% { transform: rotate(240deg) scale(0.9); }
        }

        /* Geometric color accents */
        .hero-color-accent {
            position: absolute;
            width: 600px;
            height: 600px;
            opacity: 0.1;
            pointer-events: none;
        }

        .hero-color-accent.accent-1 {
            top: -200px;
            right: -200px;
            background: radial-gradient(circle, rgba(29, 78, 216, 0.8) 0%, transparent 70%);
            animation: float-accent 20s ease-in-out infinite;
        }

        .hero-color-accent.accent-2 {
            bottom: -200px;
            left: -200px;
            background: radial-gradient(circle, var(--shield-gray) 0%, transparent 70%);
            animation: float-accent 25s ease-in-out infinite reverse;
        }

        @keyframes float-accent {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(50px, -50px) rotate(180deg); }
        }

        /* Video Background Styles */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .video-background video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.9) 0%, 
                rgba(248, 250, 251, 0.85) 50%,
                rgba(255, 255, 255, 0.8) 100%);
            z-index: 0;
        }

        /* Animated Tech Background */
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            right: -50%;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dc2626' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
            opacity: 0.5;
            animation: pattern-slide 30s linear infinite;
        }

        @keyframes pattern-slide {
            from { transform: translateX(0); }
            to { transform: translateX(60px); }
        }

        /* Floating Particles */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-red);
            border-radius: 50%;
            opacity: 0.3;
            animation: float-particle 20s infinite linear;
        }

        .particle:nth-child(odd) {
            background: var(--shield-gray);
        }

        @keyframes float-particle {
            from {
                transform: translate(0, 100vh) scale(0);
            }
            10% {
                transform: translate(10vw, 80vh) scale(1);
            }
            40% {
                transform: translate(-10vw, 50vh) scale(0.5);
            }
            70% {
                transform: translate(5vw, 20vh) scale(1);
            }
            to {
                transform: translate(0, -10vh) scale(0);
            }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--navy-dark);
            animation: text-glow 3s ease-in-out infinite;
        }

        @keyframes text-glow {
            0%, 100% { text-shadow: 0 0 20px transparent; }
            50% { text-shadow: 0 0 20px rgba(30, 41, 59, 0.1); }
        }

        .hero-content h1 .highlight {
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red-light));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient-shift 3s ease-in-out infinite;
        }

        @keyframes gradient-shift {
            0%, 100% { filter: hue-rotate(0deg); }
            50% { filter: hue-rotate(-10deg); }
        }

        .hero-content .subtitle {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            line-height: 1.6;
            animation: fadeInUp 1s ease 0.5s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Enhanced Buttons */
        .cta-button {
            display: inline-block;
            padding: 0.875rem 2rem;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red-dark));
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            border: 2px solid transparent;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        }

        /* Enhanced Hero CTAs */
        .hero-cta-primary {
            background: linear-gradient(135deg, var(--dark-red), var(--deep-red));
            box-shadow: 0 5px 20px rgba(153, 27, 27, 0.4);
        }

        .hero-cta-primary:hover {
            box-shadow: 0 10px 40px rgba(127, 29, 29, 0.6);
            transform: translateY(-3px) scale(1.05);
        }

        /* Security Badges */
        .security-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, rgba(153, 27, 27, 0.15), rgba(127, 29, 29, 0.1));
            border: 1px solid rgba(153, 27, 27, 0.4);
            border-radius: 50px;
            font-size: 0.875rem;
            color: var(--navy-dark);
            font-weight: 500;
            animation: fadeInUp 1s ease 0.8s both;
            transition: all 0.3s;
        }

        .security-badge:hover {
            background: linear-gradient(135deg, var(--dark-red), var(--deep-red));
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(153, 27, 27, 0.4);
        }

        /* Color rings for hero visual */
        .color-ring {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            pointer-events: none;
        }

        .color-ring.ring-1 {
            width: 500px;
            height: 500px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, transparent 30%, rgba(37, 99, 235, 0.8) 50%, transparent 70%);
            animation: rotate-ring 30s linear infinite;
        }

        .color-ring.ring-2 {
            width: 550px;
            height: 550px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, transparent 40%, var(--shield-gray) 60%, transparent 80%);
            animation: rotate-ring 40s linear infinite reverse;
        }

        .color-ring.ring-3 {
            width: 600px;
            height: 600px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, transparent 35%, rgba(30, 58, 138, 0.7) 55%, transparent 75%);
            animation: rotate-ring 50s linear infinite;
        }

        @keyframes rotate-ring {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--shield-gray);
            color: var(--shield-dark);
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--shield-dark);
            transition: left 0.3s;
            z-index: -1;
        }

        .btn-secondary:hover::after {
            left: 0;
        }

        .btn-secondary:hover {
            color: white;
            border-color: var(--shield-dark);
        }

        /* Animated Hero Visual */
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .digital-sphere {
            width: 450px;
            height: 450px;
            position: relative;
            animation: sphere-float 6s ease-in-out infinite;
        }

        @keyframes sphere-float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .sphere-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, 
                rgba(220, 38, 38, 0.1) 0%, 
                rgba(100, 116, 139, 0.05) 40%, 
                transparent 70%);
            border-radius: 50%;
            animation: pulse-bg 4s ease-in-out infinite;
        }

        @keyframes pulse-bg {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        /* Content Sections */
        .content-section {
            padding: 5rem 2rem;
            position: relative;
        }

        .content-section:nth-child(even) {
            background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
            position: relative;
        }

        .content-section:nth-child(even)::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(100, 116, 139, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--navy-dark);
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Card Grid */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        /* Enhanced Card Styles with Graphics */
        .modern-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
            border: 1px solid var(--border-light);
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }

        .modern-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
            transition: left 0.8s;
        }

        .modern-card:hover::before {
            left: 100%;
        }

        .modern-card::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(220, 38, 38, 0.05) 0%, 
                rgba(100, 116, 139, 0.05) 50%,
                transparent 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .modern-card:hover::after {
            opacity: 1;
        }

        .modern-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
            border-color: rgba(220, 38, 38, 0.3);
        }

        /* Card accent strip */
        .card-accent-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-red);
            transition: height 0.3s;
        }

        .modern-card:hover .card-accent-top {
            height: 8px;
        }

        .card-link {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            margin-top: 1rem;
            transition: all 0.3s;
            gap: 0.5rem;
        }

        .card-link:hover {
            color: var(--accent-red-dark);
            gap: 1rem;
        }

        .card-link:hover span {
            transform: translateX(5px);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--shield-dark), var(--navy-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 36px;
            color: white;
            position: relative;
            animation: icon-float 3s ease-in-out infinite;
            box-shadow: 0 10px 30px rgba(30, 41, 59, 0.3);
        }

        @keyframes icon-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        /* Why Icons Hover Effect */
        .why-icon:hover {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red-dark)) !important;
        }

        .why-icon:hover span {
            filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) !important;
        }

        .card-icon::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--primary-red);
            opacity: 0;
            animation: pulse-ring 2s ease-out infinite;
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 0;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--navy-dark);
            transition: color 0.3s;
        }

        .modern-card:hover .card-title {
            color: var(--primary-red);
        }

        .card-description {
            color: var(--text-gray);
            line-height: 1.6;
            transition: color 0.3s;
        }

        .modern-card:hover .card-description {
            color: var(--text-dark);
        }

        /* Enhanced Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            background: rgba(30, 41, 59, 0.9);
            border: 1px solid rgba(220, 38, 38, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .stats-grid::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
            animation: rotate-gradient 20s linear infinite;
        }

        @keyframes rotate-gradient {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .stat-item {
            padding: 3rem 2rem;
            text-align: center;
            border-right: 1px solid rgba(220, 38, 38, 0.2);
            transition: all 0.3s;
            position: relative;
            background: transparent;
            z-index: 1;
        }

        .stat-item::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(180deg, transparent, rgba(220, 38, 38, 0.2));
            transition: height 0.4s;
        }

        .stat-item:hover::after {
            height: 100%;
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-item:hover {
            background: rgba(220, 38, 38, 0.1);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-red), var(--shield-dark));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            transition: transform 0.3s;
        }

        .stat-item:hover .stat-number {
            transform: scale(1.1);
        }

        .stat-label {
            color: #cbd5e1;
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 0.1em;
        }

        /* Enhanced Trust Indicators */
        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: rgba(30, 41, 59, 0.8);
            border: 1px solid rgba(220, 38, 38, 0.5);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
            cursor: default;
        }

        .trust-badge:hover {
            background: rgba(220, 38, 38, 0.2);
            border-color: var(--primary-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        }

        /* Trust Indicators */
        .trust-indicator {
            color: var(--shield-dark);
            font-weight: 600;
        }

        .trust-indicator span:first-child {
            color: var(--primary-red);
        }

        /* CTA Section Enhancement */
        .cta-section {
            background: linear-gradient(135deg, var(--shield-dark) 0%, var(--navy-dark) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23dc2626' fill-opacity='0.03'%3E%3Cpolygon points='50 1 95 25 95 75 50 99 5 75 5 25'/%3E%3C/g%3E%3C/svg%3E") repeat;
            animation: pattern-slide 40s linear infinite reverse;
        }

        /* Footer Enhancement */
        footer {
            background: linear-gradient(180deg, var(--navy-dark), #0f172a);
            color: white;
            padding: 3rem 2rem 2rem;
            margin-top: auto;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
            animation: scan-line 3s linear infinite;
        }

        @keyframes scan-line {
            from { transform: translateX(-100%); }
            to { transform: translateX(100%); }
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: var(--text-light-gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
            cursor: pointer;
        }

        .footer-links a:hover {
            color: var(--primary-red);
        }

        /* Capabilities Page Styles */
        .capability-card {
            background: white;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 1px solid var(--border-light);
        }

        .capability-card.expanded {
            padding: 3rem;
        }

        .capability-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(220, 38, 38, 0.15);
            border-color: rgba(220, 38, 38, 0.3);
        }

        .capability-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
            border-radius: 50%;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .capability-detail {
            background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 3px solid var(--primary-red);
        }

        .capability-detail:last-child {
            margin-bottom: 0;
        }

        .diff-item {
            transition: transform 0.3s;
        }

        .diff-item:hover {
            transform: translateY(-5px);
        }

        .info-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-light);
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .info-item:last-child {
            border-bottom: none;
        }

        .info-label {
            font-weight: 600;
            color: var(--text-gray);
        }

        .info-value {
            color: var(--navy-dark);
            text-align: right;
        }

        .client-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .client-item {
            background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border-light);
            color: var(--navy-dark);
            font-weight: 500;
            transition: all 0.3s;
        }

        .client-item:hover {
            background: white;
            border-color: var(--primary-red);
            transform: translateX(5px);
            box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
        }

        .naics-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
        }

        .naics-item:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-red);
        }

        .naics-code {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 0.5rem;
        }

        .naics-desc {
            display: block;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* About Page Styles */
        .mission-card {
            background: white;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-light);
            text-align: center;
            transition: all 0.3s;
        }

        .mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(220, 38, 38, 0.15);
            border-color: rgba(220, 38, 38, 0.3);
        }

        .leader-card {
            background: white;
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-light);
        }

        .value-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s;
        }

        .value-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-container,
            .card-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .digital-sphere {
                width: 100%;
                max-width: 350px;
                height: auto;
            }
        }

        /* Careers Page Styles */
        .job-filter {
            background: transparent;
            border: 2px solid var(--border-light);
            color: var(--text-dark);
            padding: 0.625rem 1.25rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 4px;
        }

        .job-filter:hover {
            border-color: var(--primary-red);
            color: var(--primary-red);
        }

        .job-filter.active {
            background: var(--primary-red);
            color: white;
            border-color: var(--primary-red);
        }

        .job-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
            transition: all 0.3s;
        }

        .job-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(220, 38, 38, 0.3);
        }

        .job-badge {
            background: var(--light-red);
            color: var(--primary-red);
            padding: 0.375rem 0.875rem;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .apply-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .apply-button:hover {
            gap: 0.75rem;
            color: var(--dark-red);
        }

        .job-details {
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .expand-button {
            transition: all 0.3s;
        }

        .expand-button:hover {
            color: var(--dark-red) !important;
        }

        #job-search:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }

        #job-search::placeholder {
            color: var(--text-light-gray);
        }
        /* Contact Form Styles */
        #contact-form input,
        #contact-form select,
        #contact-form textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border-light);
            border-radius: 4px;
            font-size: 1rem;
            transition: all 0.3s;
            font-family: inherit;
        }

        #contact-form input:focus,
        #contact-form select:focus,
        #contact-form textarea:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }

        #contact-form label {
            display: block;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

/* ... ALL YOUR CSS RULES ... */

/* This should be near the end of your CSS from the HTML */
#contact-form label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ========================================
   END OF YOUR ORIGINAL CSS
   ======================================== */

/* ========================================
   WORDPRESS-SPECIFIC STYLES
   Add these AFTER your original CSS
   ======================================== */

/* Screen reader text for accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* WordPress admin bar adjustment */
.admin-bar nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar nav {
        top: 46px;
    }
}

/* Success/Error Messages for forms */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* WordPress gallery styles (optional) */
.gallery {
    margin-bottom: 1.5rem;
}
/* Contact Form 7 Styles */
.wpcf7-form .form-group {
    margin-bottom: 1.5rem;
}

.wpcf7-form label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 1rem;
}

.wpcf7-form .cta-button {
    background: var(--primary-red);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.wpcf7-form .cta-button:hover {
    background: var(--dark-red);
}
.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

/* Pagination styles */
.pagination {
    margin: 2rem 0;
    text-align: center;
}
/* Logo Text Styling */
.logo-text {
    margin-left: 20px; /* Space between logo and text */
}

.logo-text .brand {
    font-family: 'Montserrat', 'Arial Black', sans-serif; /* Change font */
    font-size: 26px; /* Make text bigger */
    letter-spacing: 3px; /* Space between letters */
    font-weight: 900; /* Make bolder */
}

.logo-text .tagline {
    font-family: 'Open Sans', 'Helvetica', sans-serif; /* Different font for tagline */
    font-size: 13px; /* Adjust size */
    letter-spacing: 1.5px; /* Space between letters */
    font-weight: 400; /* Regular weight */
    margin-top: -2px; /* Reduce space between lines */
}

/* DO NOT ADD A CLOSING PHP TAG - FILE SHOULD END HERE */