/* CyberShield Pro Theme for ArmoScan */

/* Color Variables */
:root {
    --primary-yellow: #FFD700;
    --dark-yellow: #FFA500;
    --severity-critical: #9B59B6;  /* Purple */
    --severity-high: #E74C3C;      /* Red */
    --severity-medium: #F39C12;    /* Orange */
    --severity-low: #F1C40F;       /* Yellow */
    --severity-info: #27AE60;      /* Green */
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;
}

/* Base Styles */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    padding-top: 70px; /* For fixed navbar */
}

/* Navigation Bar */
.navbar-main {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1030;
    padding: 15px 0;
    border-bottom: 2px solid rgba(255,215,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.navbar-main.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 6px 30px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--black) !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    max-width: 180px;
    transition: all 0.2s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 8px rgba(255,215,0,0.3));
}

.navbar-brand i {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255,215,0,0.6));
}

.navbar-nav .nav-link {
    color: var(--black);
    font-weight: 600;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 12px 18px;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
    text-decoration: none;
    border: none;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-yellow);
    text-shadow: 0 0 12px rgba(255,215,0,0.6);
    transform: none;
    background: none;
    border: none;
}

.navbar-nav .nav-link::after {
    display: none;
}

.navbar-nav .nav-link:hover::after {
    display: none;
}

/* Dropdown Menu Font Consistency */
.navbar-nav .dropdown-menu {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.navbar-nav .dropdown-item {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,215,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,215,0,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255,215,0,0.5));
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    font-weight: 300;
}

/* Button Styles */
.btn-gradient-primary {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    color: var(--black);
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gradient-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.5);
    color: var(--black);
}

.btn-gradient-dark {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border: 2px solid rgba(255,215,0,0.3);
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(108,117,125,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gradient-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108,117,125,0.5);
    border-color: var(--primary-yellow);
    color: white;
}

/* Enhanced Card Components */
.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border: 2px solid rgba(255,215,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.feature-card.high-contrast {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid rgba(255,215,0,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,165,0,0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Pricing Cards */
.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 3px solid var(--primary-yellow);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Styles */
.contact-form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control-custom {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.form-control-custom:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(255,215,0,0.2);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer-main {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-main h5 {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-main a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-main a:hover {
    color: var(--primary-yellow);
}

/* Validation Styles */
.field-validation-error {
    color: var(--severity-high);
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.input-validation-error {
    border-color: var(--severity-high) !important;
    box-shadow: 0 0 10px rgba(231,76,60,0.2) !important;
}

.validation-summary-errors {
    background: linear-gradient(135deg, rgba(231,76,60,0.1) 0%, rgba(231,76,60,0.05) 100%);
    border: 1px solid var(--severity-high);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.validation-summary-errors ul {
    margin: 0;
    padding-left: 20px;
}

/* Alert Styles */
.alert-cybershield {
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,165,0,0.05) 100%);
    border: 1px solid var(--primary-yellow);
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--dark-gray);
}

/* Badge Styles */
.badge-cybershield {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}

/* Icon Size Classes */
.icon-2xl {
    font-size: 2rem !important;
}

.icon-3xl {
    font-size: 3rem !important;
}

.icon-4xl {
    font-size: 4rem !important;
}

/* Table Styling Classes */
.table-feature-header {
    text-align: left !important;
}

.table-feature-cell {
    text-align: left !important;
    font-weight: 600 !important;
}

/* Validation Summary Hidden */
.validation-summary-hidden {
    display: none !important;
}

/* Viewport Sections */
.section-full-height {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.section-viewport {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

/* Text Glow Effects */
.text-glow-hover {
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none !important;
    position: relative;
}

.text-glow-hover:hover {
    color: var(--primary-yellow) !important;
    text-shadow: 0 0 8px rgba(255,215,0,0.4);
    transform: translateY(-1px);
}

.text-glow-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
    transition: width 0.3s ease;
}

.text-glow-hover:hover::after {
    width: 100%;
}

/* Enhanced Card Content */
.feature-card .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-card .feature-description {
    flex: 1;
    margin-bottom: 20px;
}

.feature-card .feature-footer {
    margin-top: auto;
}

/* Industry Cards */
.industry-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(255,215,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-yellow);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--black);
    box-shadow: 0 8px 20px rgba(255,215,0,0.3);
}

/* Compliance Cards */
.compliance-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,249,250,0.98) 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,215,0,0.15);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: var(--primary-yellow);
}

.compliance-card h6 {
    color: var(--dark-gray) !important;
    font-weight: 600;
}

.compliance-card small {
    color: var(--medium-gray) !important;
}

.compliance-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Light Background Text Classes */
.text-dark-gray {
    color: var(--dark-gray) !important;
}

.text-medium-gray {
    color: var(--medium-gray) !important;
}

.text-white-on-light {
    color: var(--dark-gray) !important;
}

.text-white-50-on-light {
    color: var(--medium-gray) !important;
}

.display-4.text-white {
    color: var(--dark-gray) !important;
}

.text-white-50 {
    color: var(--medium-gray) !important;
}

/* How It Works Section */
.how-it-works-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(255,215,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.how-it-works-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(255,215,0,0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
    z-index: 2;
}

.step-screenshot {
    position: relative;
    margin: 20px 0 25px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.step-screenshot img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.how-it-works-card:hover .step-screenshot img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,215,0,0.8) 0%, rgba(255,165,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.how-it-works-card:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay i {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-description {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
}

.step-features li i {
    flex-shrink: 0;
}

/* Radar System Animation */
.radar-system-container {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* AI Brain Control */
.ai-brain-control {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.brain-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--black);
    box-shadow: 0 0 20px rgba(255,215,0,0.6);
    animation: brain-pulse 2s ease-in-out infinite;
}

.brain-bullets {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.bullet {
    width: 6px;
    height: 6px;
    background: var(--primary-yellow);
    border-radius: 50%;
    position: absolute;
    opacity: 0;
    box-shadow: 0 0 10px rgba(255,215,0,0.8);
    z-index: 4;
}

.bullet.firing {
    animation: bullet-fire-dynamic 1.5s ease-out forwards;
}

.bullet-1 {
    animation: bullet-fire 2s ease-in-out infinite;
    animation-delay: 0s;
}

.bullet-2 {
    animation: bullet-fire 2s ease-in-out infinite;
    animation-delay: 0.7s;
}

.bullet-3 {
    animation: bullet-fire 2s ease-in-out infinite;
    animation-delay: 1.4s;
}

/* Radar Container */
.radar-container {
    position: relative;
    margin: 20px 0;
}

.radar-screen {
    width: 400px;
    height: 400px;
    position: relative;
    background: radial-gradient(circle, rgba(0,20,0,0.8) 0%, rgba(0,40,0,0.4) 100%);
    border-radius: 50%;
    border: 2px solid rgba(0,255,0,0.3);
    box-shadow: 0 0 30px rgba(0,255,0,0.2), inset 0 0 30px rgba(0,255,0,0.1);
    overflow: hidden;
}

/* Radar Circles */
.radar-circle {
    position: absolute;
    border: 1px solid rgba(0,255,0,0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-1 { width: 60px; height: 60px; }
.circle-2 { width: 100px; height: 100px; }
.circle-3 { width: 140px; height: 140px; }
.circle-4 { width: 180px; height: 180px; }
.circle-5 { width: 220px; height: 220px; }
.circle-6 { width: 260px; height: 260px; }
.circle-7 { width: 300px; height: 300px; }

/* Radar Sweep */
.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 190px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,255,0,0.8) 0%, transparent 100%);
    transform: translateY(-50%);
    transform-origin: 0 50%;
    animation: radar-sweep 4s linear infinite;
    box-shadow: 0 0 10px rgba(0,255,0,0.6);
    z-index: 5;
}

/* Vulnerabilities */
.vulnerability {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255,0,0,0.8);
    border: 2px solid #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    box-shadow: 0 0 15px rgba(255,0,0,0.6);
    animation: vulnerability-pulse 1.5s ease-in-out infinite;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.vulnerability.hit {
    animation: bug-fall 0.8s ease-in forwards;
}

.vulnerability.targeted {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 15px rgba(255,215,0,0.8);
}

.bug-1 { top: 30%; left: 60%; animation-delay: 0s; }
.bug-2 { top: 60%; left: 20%; animation-delay: 0.3s; }
.bug-3 { top: 70%; left: 70%; animation-delay: 0.6s; }
.bug-4 { top: 40%; left: 80%; animation-delay: 0.9s; }
.bug-5 { top: 20%; left: 30%; animation-delay: 1.2s; }

/* Radar Center */
.radar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
}

.center-pulse {
    width: 100%;
    height: 100%;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: center-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255,215,0,0.8);
}

/* Radar Stats */
.radar-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* System Status */
.system-status {
    margin-top: 30px;
    width: 100%;
    max-width: 400px;
}

.status-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    margin-right: 10px;
    animation: status-blink 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0,255,0,0.6);
}

/* Animations */
@keyframes brain-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255,215,0,0.6); }
    50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(255,215,0,0.9); }
}

@keyframes bullet-fire {
    0% { opacity: 0; transform: translateX(0); }
    10% { opacity: 1; }
    90% { opacity: 1; transform: translateX(-300px); }
    100% { opacity: 0; transform: translateX(-300px); }
}

@keyframes radar-sweep {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

@keyframes vulnerability-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes center-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes bug-fall {
    0% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -40%) scale(0.8) rotate(180deg);
        opacity: 0.7;
    }
    100% { 
        transform: translate(-50%, 50px) scale(0.3) rotate(360deg);
        opacity: 0;
    }
}

@keyframes bullet-fire-dynamic {
    0% { 
        opacity: 0; 
        transform: translate(0, 0) scale(0.5);
    }
    10% { 
        opacity: 1; 
        transform: translate(0, 0) scale(1);
    }
    90% { 
        opacity: 0.8;
        transform: translate(var(--target-x, 0), var(--target-y, 0)) scale(1);
    }
    100% { 
        opacity: 0;
        transform: translate(var(--target-x, 0), var(--target-y, 0)) scale(0.3);
    }
}

/* Sub-page Card Styles */
.sub-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border: 2px solid rgba(255,215,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.sub-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: rgba(255,215,0,0.3);
}

.sub-info-card .card-body {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sub-info-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
    margin-bottom: 15px;
}

.sub-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.sub-info-card ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--medium-gray);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sub-info-card ul li:last-child {
    border-bottom: none;
}

.sub-info-card ul li strong {
    color: var(--dark-gray);
    font-weight: 600;
}

/* Round Badge Number */
.badge-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
    margin-right: 15px;
    flex-shrink: 0;
    border: 3px solid rgba(255,215,0,0.2);
    transition: all 0.3s ease;
}

.sub-info-card:hover .badge-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255,215,0,0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .navbar-main {
        padding: 10px 0;
    }
    
    .feature-card {
        margin-bottom: 20px;
        min-height: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .icon-2xl {
        font-size: 1.5rem !important;
    }
    
    .icon-3xl {
        font-size: 2rem !important;
    }
    
    .icon-4xl {
        font-size: 2.5rem !important;
    }
    
    .section-full-height,
    .section-viewport {
        min-height: auto;
        padding: 40px 0;
    }
    
    .industry-card,
    .compliance-card {
        min-height: 250px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Legacy Dashboard Classes for Compatibility */
.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.glass-card .card-body {
    padding: 2rem;
}

.glass-card-yellow {
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,165,0,0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    border: 1px solid rgba(255,215,0,0.3);
    transition: all 0.3s ease;
}

.glass-card-yellow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.25);
}

.glass-card-yellow .card-body {
    padding: 2rem;
}

.hero-ai-platform {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}

.neural-network-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,215,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,215,0,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.badge-ai {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    color: var(--black);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
}

.badge-distributed {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    color: white;
    border: 1px solid rgba(255,215,0,0.3);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.tech-badge {
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-outline {
    color: white;
    text-shadow: 
        -1px -1px 0 var(--primary-yellow),
        1px -1px 0 var(--primary-yellow),
        -1px 1px 0 var(--primary-yellow),
        1px 1px 0 var(--primary-yellow);
}

.min-vh-75 {
    min-height: 75vh;
}

.features-ai-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.ai-feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.ai-feature-card.featured {
    border: 2px solid var(--primary-yellow);
    transform: scale(1.02);
}

.ai-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-glow.yellow {
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    opacity: 1;
}

.ai-feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-icon-ai {
    text-align: center;
    margin-bottom: 20px;
}

.icon-hex {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.icon-hex.yellow {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
}

.icon-hex:hover {
    transform: scale(1.1) rotate(5deg);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
}

.bg-gradient-dark .section-title {
    color: white;
}

.bg-gradient-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.bg-gradient-dark .highlight {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* How It Works Step Styling */
.step-content {
    padding: 3rem 2rem;
}

.step-number-badge {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.step-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
}

.step-visual {
    padding: 2rem;
}

.step-visual img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .step-content {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .step-visual {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .step-title {
        font-size: 1.75rem;
    }
}

/* Page Headers - Standardized */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 190px;
}

/* Homepage Hero Override - Dark Design */
.page-header.hero-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.page-header.hero-header::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,215,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,215,0,0.05) 0%, transparent 50%);
}

.page-header.hero-header h1,
.page-header.hero-header .display-4 {
    color: white !important;
}

.page-header.hero-header .lead {
    color: rgba(255,255,255,0.8) !important;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-header.min-vh-100 {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Contact Page Components */
.contact-form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.05) 0%, rgba(255,165,0,0.02) 100%);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 15px;
    padding: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

/* Pricing Page Components */
.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    color: var(--black);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.price-display {
    margin: 30px 0;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--medium-gray);
    vertical-align: top;
    margin-right: 5px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-left: 5px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

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

.feature-list i {
    color: var(--primary-yellow);
    margin-right: 12px;
    font-size: 1.1rem;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-table th {
    padding: 20px;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check-icon {
    color: var(--severity-info);
    font-size: 1.5rem;
}

.cross-icon {
    color: var(--severity-high);
    font-size: 1.5rem;
}

/* Index Page Components */
.scanner-visualization {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,215,0,0.2);
}

.ai-core {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--black);
    box-shadow: 0 0 50px rgba(255,215,0,0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 30px rgba(255,215,0,0.5); }
    50% { box-shadow: 0 0 60px rgba(255,215,0,0.8); }
    100% { box-shadow: 0 0 30px rgba(255,215,0,0.5); }
}

.server-node {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.server-node:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 20px rgba(255,215,0,0.2);
}

.server-node i {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.vulnerability-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 5px;
}

.vulnerability-badge.critical {
    background: var(--severity-critical);
    color: white;
}

.vulnerability-badge.high {
    background: var(--severity-high);
    color: white;
}

.vulnerability-badge.medium {
    background: var(--severity-medium);
    color: white;
}

.stat-box {
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.page-header h1 {
    color: var(--dark-gray);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item {
    color: var(--medium-gray);
}

.page-header .breadcrumb-item a {
    color: var(--primary-yellow);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: var(--dark-gray);
}

/* Case Study Visual */
.case-study-visual {
    padding: 60px;
}

.network-diagram {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #333;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    z-index: 10;
}

.orbit {
    position: absolute;
    border: 2px dashed rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-direction: reverse;
}

.node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.node-1 { top: -25px; left: 50%; transform: translateX(-50%); }
.node-2 { top: 50%; right: -25px; transform: translateY(-50%); }
.node-3 { bottom: -25px; left: 50%; transform: translateX(-50%); }
.node-4 { top: 50%; left: -25px; transform: translateY(-50%); }

.node-5 { top: 0; left: 50%; transform: translateX(-50%); }
.node-6 { top: 50%; right: 0; transform: translateY(-50%); }
.node-7 { bottom: 0; left: 50%; transform: translateX(-50%); }
.node-8 { top: 50%; left: 0; transform: translateY(-50%); }

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.stat-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Healthcare Page Specific */
.compliance-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.compliance-icon {
    margin-bottom: 20px;
}

.compliance-icon img {
    filter: brightness(0.9);
    opacity: 0.8;
}

/* Defense Page Specific */
.defense-visual {
    padding: 60px;
}

.defense-platform {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.platform-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 3px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffd700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    z-index: 10;
    animation: pulse 2s infinite;
}

.defense-ring {
    position: absolute;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: rotate 25s linear infinite;
}

.ring-2 {
    width: 300px;
    height: 300px;
    animation: rotate 35s linear infinite reverse;
}

.defense-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #1a1a2e;
    border: 2px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffd700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ring-1 .node-1 { top: -20px; left: 50%; transform: translateX(-50%); }
.ring-1 .node-2 { top: 50%; right: -20px; transform: translateY(-50%); }
.ring-1 .node-3 { bottom: -20px; left: 50%; transform: translateX(-50%); }
.ring-1 .node-4 { top: 50%; left: -20px; transform: translateY(-50%); }

.ring-2 .node-5 { top: -20px; left: 50%; transform: translateX(-50%); }
.ring-2 .node-6 { top: 50%; right: -20px; transform: translateY(-50%); }
.ring-2 .node-7 { bottom: -20px; left: 50%; transform: translateX(-50%); }
.ring-2 .node-8 { top: 50%; left: -20px; transform: translateY(-50%); }

.scan-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #ffd700, transparent);
    transform-origin: top center;
    transform: translateX(-50%);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

/* Vision & Mission Page Specific */
.timeline-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.timeline-year {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.mission-quote {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.6);
}

.mission-quote blockquote {
    margin: 0;
}

/* Government Architecture Diagram */
.government-architecture-diagram {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #333;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    z-index: 10;
    border: 3px solid rgba(255, 215, 0, 0.8);
}

.central-hub span {
    font-size: 10px;
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.security-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    animation: layer-pulse 8s ease-in-out infinite;
}

.layer-1 {
    width: 180px;
    height: 180px;
    animation-delay: 0s;
}

.layer-2 {
    width: 260px;
    height: 260px;
    animation-delay: 2s;
}

.layer-3 {
    width: 340px;
    height: 340px;
    animation-delay: 4s;
}

.layer-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ffd700;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.layer-node:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    border-color: #ff6b35;
}

.layer-node span {
    font-size: 8px;
    font-weight: 600;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.1;
}

/* Layer 1 positioning (inner layer) */
.layer-1 .layer-node:nth-child(1) { top: -30px; left: 50%; transform: translateX(-50%); }
.layer-1 .layer-node:nth-child(2) { top: 50%; right: -30px; transform: translateY(-50%); }
.layer-1 .layer-node:nth-child(3) { bottom: -30px; left: 50%; transform: translateX(-50%); }

/* Layer 2 positioning (middle layer) */
.layer-2 .layer-node:nth-child(1) { top: -30px; left: 50%; transform: translateX(-50%); }
.layer-2 .layer-node:nth-child(2) { top: 50%; right: -30px; transform: translateY(-50%); }
.layer-2 .layer-node:nth-child(3) { bottom: -30px; left: 50%; transform: translateX(-50%); }

/* Layer 3 positioning (outer layer) */
.layer-3 .layer-node:nth-child(1) { top: -30px; left: 50%; transform: translateX(-50%); }
.layer-3 .layer-node:nth-child(2) { top: 50%; right: -30px; transform: translateY(-50%); }
.layer-3 .layer-node:nth-child(3) { bottom: -30px; left: 50%; transform: translateX(-50%); }

@keyframes layer-pulse {
    0%, 100% { 
        border-color: rgba(255, 215, 0, 0.3);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        border-color: rgba(255, 215, 0, 0.6);
        transform: translate(-50%, -50%) scale(1.02);
    }
}

/* Dark section styling for stats */
.dark-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-card-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stat-card-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,165,0,0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-yellow);
}

/* Section styling */
.section-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--black);
    box-shadow: 0 8px 20px rgba(255,215,0,0.3);
}

.section-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* CTA Section */
.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.btn-gradient-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border: 2px solid rgba(255,215,0,0.3);
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(108,117,125,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gradient-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108,117,125,0.5);
    border-color: var(--primary-yellow);
    color: white;
}

/* Finance Page Specific */
.financial-diagram {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.data-flow {
    position: absolute;
    display: flex;
    align-items: center;
    animation: pulse-flow 3s ease-in-out infinite;
}

.data-flow .flow-node {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 3px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
    z-index: 5;
}

.data-flow .flow-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, rgba(255, 215, 0, 0.3));
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}

.data-flow .flow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: flow-animation 2s linear infinite;
}

.flow-1 {
    top: 50px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    animation-delay: 0s;
}

.flow-2 {
    top: 50%;
    right: 50px;
    transform: translateY(-50%) rotate(45deg);
    animation-delay: 0.5s;
}

.flow-3 {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
    animation-delay: 1s;
}

.flow-4 {
    top: 50%;
    left: 50px;
    transform: translateY(-50%) rotate(-135deg);
    animation-delay: 1.5s;
}

.security-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #333;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    z-index: 10;
    animation: shield-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-flow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

@keyframes flow-animation {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes shield-glow {
    0% { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6); }
}

/* Integration Section Styles */
.integration-category-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(255,215,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 400px;
}

.integration-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: rgba(255,215,0,0.3);
}

.integration-category-header {
    text-align: center;
    margin-bottom: 30px;
}

.integration-category-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-yellow) !important;
}

.integration-category-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray) !important;
}

.integration-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.integration-item {
    background: rgba(255,255,255,0.8);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,215,0,0.1);
    transition: all 0.3s ease;
}

.integration-item:hover {
    transform: translateX(5px);
    border-color: rgba(255,215,0,0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.integration-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
    float: left;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
    flex-shrink: 0;
}

.integration-details {
    overflow: hidden;
}

.integration-details h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray) !important;
    margin-bottom: 5px;
}

.integration-details small {
    font-size: 0.9rem;
    color: var(--medium-gray) !important;
}

.integration-features {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.feature-tag {
    background: rgba(255,215,0,0.1);
    color: var(--dark-gray);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255,215,0,0.3);
}

.integration-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.integration-features-list .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.integration-features-list .feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,165,0,0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.integration-features-list .feature-content h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray) !important;
    margin-bottom: 5px;
}

.integration-features-list .feature-content p {
    font-size: 0.9rem;
    color: var(--medium-gray) !important;
    line-height: 1.5;
}

.integration-stats-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}

.stat-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(255,215,0,0.3);
}

.stat-circle .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.stat-circle .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin-top: 5px;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    max-width: 300px;
}

.stat-grid .stat-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-grid .stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    display: block;
    margin-bottom: 5px;
}

.stat-grid .stat-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}