/* Feature Icons */
.ai-icon {
    background-image: url('../images/icons/ai-icon.svg');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.case-icon {
    background-image: url('../images/icons/case-icon.svg');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.network-icon {
    background-image: url('../images/icons/network-icon.svg');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.authority-icon {
    background-image: url('../images/icons/authority-icon.svg');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

/* Enhanced Header Styling */
.main-header {
    position: relative;
    overflow: hidden;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.header-overlay {
    z-index: 2;
}

/* Enhanced Navigation */
.main-nav {
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.15);
}

.nav-links a.active::after {
    width: 100%;
}

/* Enhanced Feature Cards */
.feature-card {
    border: 1px solid rgba(255, 107, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Statistics Enhancement */
.statistic {
    position: relative;
    padding: 1.5rem;
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statistic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.1);
}

/* Impact Section Enhancement */
.impact-section {
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Gemini_Generated_Image_k0tpwpk0tpwpk0tp.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.impact-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

/* Neon Glow Effect */
.neon-glow {
    text-shadow: 0 0 5px rgba(255, 107, 0, 0.5), 0 0 10px rgba(255, 107, 0, 0.3);
    transition: text-shadow 0.3s ease;
}

.neon-glow:hover {
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.7), 0 0 20px rgba(255, 107, 0, 0.5);
}

/* Enhanced CTA Button */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: var(--color-dark-gray);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-orange);
}

/* Section Dividers */
.section-divider {
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
    margin: 2rem 0;
    width: 100%;
    opacity: 0.5;
}

/* Enhanced Footer */
.main-footer {
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,1) 100%);
    z-index: 0;
}

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

/* Circuit Board Pattern Background */
.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.1;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: 1px;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--color-orange);
    margin-top: 0.5rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-container {
        flex-direction: column;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
}
