/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --secondary-color: #00cc88;
    --accent-color: #ff3366;
    --warning-color: #ff9900;
    --dark-color: #0a1929;
    --darker-color: #06121e;
    --light-color: #f0f7ff;
    --gray-color: #8b9bb4;
    --light-gray: #1e3a5f;
    --success-color: #00cc88;
    --error-color: #ff3366;
    --cyber-blue: #00ccff;
    --neon-green: #39ff14;
    --neon-pink: #ff00ff;
    
    --shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 204, 255, 0.3);
    --border-radius: 10px;
    --transition: all 0.3s ease;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--cyber-blue));
    --gradient-dark: linear-gradient(135deg, var(--darker-color), var(--dark-color));
    --gradient-warning: linear-gradient(135deg, var(--warning-color), var(--accent-color));
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--light-color);
    background: var(--gradient-dark);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 204, 136, 0.1) 0%, transparent 50%);
    z-index: -1;
}


.logo a img{

width: 250px;
height: auto;

}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--cyber-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Roboto Mono', monospace;
}

.highlight {
    color: var(--cyber-blue);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyber-blue);
    opacity: 0.5;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--cyber-blue);
    border: 2px solid var(--cyber-blue);
}

.btn-secondary:hover {
    background: rgba(0, 204, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    height:220px ;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 204, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--cyber-blue);
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    color: var(--gray-color);
}

.nav-link:hover, .nav-link.active {
    color: white;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyber-blue);
    box-shadow: 0 0 10px var(--cyber-blue);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Hero Section */
.hero {
    padding: 200px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-color);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 204, 255, 0.1);
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyber-blue);
    margin-bottom: 5px;
    font-family: 'Roboto Mono', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Threat Visualization */
.threat-visualization {
    position: relative;
    padding: 30px;
}

.threat-radar {
    width: 400px;
    height: 400px;
    position: relative;
    margin: 0 auto;
}

.threat-radar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(0, 204, 255, 0.1) 10%,
        transparent 20%,
        rgba(0, 204, 255, 0.1) 30%,
        transparent 40%,
        rgba(0, 204, 255, 0.1) 50%,
        transparent 60%,
        rgba(0, 204, 255, 0.1) 70%,
        transparent 80%,
        rgba(0, 204, 255, 0.1) 90%,
        transparent 100%
    );
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(0, 204, 255, 0.3) 5%,
        transparent 10%
    );
    border-radius: 50%;
    animation: sweep 2s linear infinite;
}

@keyframes sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.threat-dot {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 51, 102, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.threat-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px var(--accent-color);
}

.dot-1 { top: 20%; left: 30%; animation-delay: 0s; }
.dot-2 { top: 30%; right: 20%; animation-delay: 0.5s; }
.dot-3 { bottom: 25%; left: 25%; animation-delay: 1s; }
.dot-4 { bottom: 20%; right: 30%; animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.threat-legend {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 204, 255, 0.1);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.deepfake { background: var(--accent-color); }
.legend-dot.fake-account { background: var(--warning-color); }
.legend-dot.predator { background: var(--neon-green); }
.legend-dot.malicious { background: var(--neon-pink); }

/* Features Section */
.features {
    background: rgba(6, 18, 30, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    border: 1px solid rgba(0, 204, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 204, 255, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: 0.5s;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyber-blue);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    color: var(--cyber-blue);
    margin-bottom: 25px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.feature-description {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-tag {
    background: rgba(0, 204, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--cyber-blue);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Threats Section */
.threats {
    background: var(--darker-color);
}

.threats-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(0, 204, 255, 0.1);
}

.threat-categories {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.threat-category {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.threat-category.active, .threat-category:hover {
    border-color: var(--cyber-blue);
    background: rgba(0, 204, 255, 0.1);
    transform: translateY(-5px);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--cyber-blue);
    margin-bottom: 15px;
}

.threat-category h3 {
    color: white;
    font-size: 1.2rem;
}

.threat-details {
    min-height: 300px;
}

.threat-detail {
    display: none;
    animation: fadeIn 0.5s ease;
}

.threat-detail.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.threat-detail h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.threat-detail p {
    color: var(--gray-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.threat-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.threat-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light-color);
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.threat-list li:hover {
    background: rgba(0, 204, 255, 0.1);
    transform: translateX(10px);
}

.threat-list i {
    color: var(--secondary-color);
}

/* Technology Section */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(0, 204, 255, 0.1);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-10px);
    border-color: var(--cyber-blue);
    box-shadow: var(--shadow-glow);
}

.tech-icon {
    font-size: 3rem;
    color: var(--cyber-blue);
    margin-bottom: 25px;
}

.tech-item h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.tech-item p {
    color: var(--gray-color);
    line-height: 1.8;
}

/* Demo Section */
.demo {
    background: rgba(6, 18, 30, 0.7);
}

.demo-panel {
    background: rgba(10, 25, 41, 0.9);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 204, 255, 0.2);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    max-width: 800px;
    margin: 0 auto;
}

.demo-header {
    background: rgba(0, 102, 204, 0.2);
    padding: 25px;
    border-bottom: 1px solid rgba(0, 204, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-header h3 {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.demo-body {
    padding: 40px;
}

.demo-scanner {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 204, 255, 0.1);
}

.scanner-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.scanner-content {
    position: relative;
    z-index: 1;
}

#scanner-text {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Roboto Mono', monospace;
}

.scan-progress {
    display: flex;
    align-items: center;
    gap: 20px;
}

.progress-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 5px;
}

.progress-text {
    color: white;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.2rem;
    min-width: 50px;
}

.demo-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(0, 204, 255, 0.1);
    transition: var(--transition);
}

.result-item:hover {
    border-color: var(--cyber-blue);
    transform: translateY(-5px);
}

.result-icon {
    font-size: 2rem;
    color: var(--cyber-blue);
}

.result-content h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.result-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.demo-controls {
    padding: 30px;
    background: rgba(0, 102, 204, 0.1);
    border-top: 1px solid rgba(0, 204, 255, 0.2);
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 25px;
    align-items: center;
    border: 1px solid rgba(0, 204, 255, 0.1);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--cyber-blue);
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 204, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cyber-blue);
    flex-shrink: 0;
}

.info-text h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-text p {
    color: var(--gray-color);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 204, 255, 0.1);
}

.contact-form h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: white;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--cyber-blue);
    box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.1);
}

.form-control::placeholder {
    color: var(--gray-color);
}

.form-control.error {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

.error-message {
    color: var(--error-color);
    font-size: 0.9rem;
    margin-top: 8px;
    display: block;
    min-height: 20px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300ccff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 50px;
}

.form-success {
    background: rgba(0, 204, 136, 0.1);
    color: var(--success-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 25px;
    text-align: center;
    display: none;
    border: 1px solid rgba(0, 204, 136, 0.2);
}

/* Footer */
.footer {
    background: rgba(6, 18, 30, 0.95);
    border-top: 1px solid rgba(0, 204, 255, 0.1);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logo .logo-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--gray-color);
    margin-top: 15px;
    line-height: 1.8;
}

.footer-newsletter h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-newsletter p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: white;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--cyber-blue);
}

.newsletter-form button {
    padding: 15px 25px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-group a {
    color: var(--gray-color);
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--cyber-blue);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--cyber-blue);
    color: white;
    transform: translateY(-5px);
}

/* Security Badge */
.security-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(10, 25, 41, 0.9);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--cyber-blue);
    font-weight: 600;
    z-index: 100;
    border: 1px solid rgba(0, 204, 255, 0.2);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: var(--transition);
}

.security-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.security-badge i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 25, 41, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid rgba(0, 204, 255, 0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .threat-radar {
        width: 300px;
        height: 300px;
    }
    
    .threat-categories {
        flex-direction: column;
    }
    
    .demo-results {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
    
    .threat-radar {
        width: 250px;
        height: 250px;
    }
    
    .threat-dot {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

#dev-banner {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffb703;
    color: #000;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
