/* Reset & Base Styles - BLACK & GREEN THEME */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0a0a; /* Pure black */
    --secondary-color: #00ff00; /* Bright green */
    --accent-color: #00cc00; /* Darker green for accents */
    --text-color: #e0e0e0;
    --card-bg: rgba(20, 20, 20, 0.9); /* Dark gray */
    --glass-bg: rgba(0, 255, 0, 0.05);
    --border-color: rgba(0, 255, 0, 0.3);
    --hover-glow: rgba(0, 255, 0, 0.2);
    --dark-green: #006600;
    --medium-green: #00aa00;
    --light-green: rgba(0, 255, 0, 0.1);
    --error-color: #ff5555;
    --success-color: #00ff88;
    --warning-color: #ffaa00;
    --info-color: #00aaff;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 0, 0.03) 0%, transparent 50%);
}

#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Matrix Rain Overlay */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background: linear-gradient(transparent 90%, rgba(0, 255, 0, 0.1));
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

span {
    color: var(--secondary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.logo span {
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--secondary-color);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links .btn-audit {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    margin-left: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    font-weight: 600;
}

.nav-links .btn-audit:hover {
    background: transparent;
    color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.hero-badge span {
    color: var(--secondary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.typewriter {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid var(--secondary-color);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    text-shadow: 0 0 10px var(--secondary-color);
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--secondary-color); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-tertiary {
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.4);
}

.btn-tertiary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-tertiary:hover {
    background: var(--text-color);
    color: var(--primary-color);
    border-color: var(--text-color);
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--secondary-color);
}

.hero-3d {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cube-container {
    width: 300px;
    height: 300px;
    perspective: 1000px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
}

.face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 0, 0.8);
    border: 2px solid var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--secondary-color);
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 30px rgba(0, 255, 0, 0.2);
}

.front { transform: translateZ(150px); }
.back { transform: rotateY(180deg) translateZ(150px); }
.right { transform: rotateY(90deg) translateZ(150px); }
.left { transform: rotateY(-90deg) translateZ(150px); }
.top { transform: rotateX(90deg) translateZ(150px); }
.bottom { transform: rotateX(-90deg) translateZ(150px); }

@keyframes rotate {
    0% { transform: rotateX(0) rotateY(0); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(0, 255, 0, 0.3);
    animation: float 6s infinite ease-in-out;
}

.float-element.el1 { top: 20%; left: 10%; animation-delay: 0s; }
.float-element.el2 { top: 60%; left: 80%; animation-delay: 1s; }
.float-element.el3 { top: 80%; left: 20%; animation-delay: 2s; }
.float-element.el4 { top: 30%; left: 70%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Trust Badges */
.trust-badges {
    padding: 2rem;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.badges-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.badge {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
    min-width: 150px;
}

.badge i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.badge:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 20px var(--secondary-color);
}

.badge h4 {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 500;
}

/* Section Styling */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    padding: 5rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    height: 400px;
}

.service-card-inner {
    transition: transform 0.6s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover .service-card-inner {
    transform: translateY(-100%);
}

.service-card-hover {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease;
    border-top: 3px solid var(--secondary-color);
}

.service-card:hover .service-card-hover {
    transform: translateY(-100%);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.service-features i {
    color: var(--secondary-color);
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
    margin-top: auto;
}

.service-link:hover {
    gap: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Security Features */
.security-features {
    padding: 5rem 2rem;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.features-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.features-subtitle {
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(0, 20, 0, 0.3);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--hover-glow);
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    text-shadow: 0 0 10px var(--secondary-color);
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-content p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-shield {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--secondary-color);
    z-index: 2;
    animation: pulse 2s infinite;
    text-shadow: 0 0 20px var(--secondary-color);
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.shield-ring.ring1 {
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
}

.shield-ring.ring2 {
    width: 250px;
    height: 250px;
    animation: rotate 25s linear infinite reverse;
}

.shield-ring.ring3 {
    width: 300px;
    height: 300px;
    animation: rotate 30s linear infinite;
}

.threat-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.threat-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--error-color);
    border-radius: 50%;
    animation: threatMove 3s linear infinite;
    box-shadow: 0 0 10px var(--error-color);
}

.threat-dot.dot1 { top: 10%; left: 10%; animation-delay: 0s; }
.threat-dot.dot2 { top: 20%; left: 80%; animation-delay: 0.5s; }
.threat-dot.dot3 { top: 70%; left: 20%; animation-delay: 1s; }
.threat-dot.dot4 { top: 80%; left: 70%; animation-delay: 1.5s; }
.threat-dot.dot5 { top: 50%; left: 50%; animation-delay: 2s; }

@keyframes threatMove {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Case Studies */
.case-studies {
    padding: 5rem 2rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.case-study {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-study:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px var(--hover-glow);
}

.case-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.case-logo {
    font-size: 2rem;
    color: var(--secondary-color);
    background: rgba(0, 255, 0, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.case-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.case-tag {
    background: rgba(0, 255, 0, 0.1);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
}

.case-content {
    flex-grow: 1;
}

.case-content p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-stats {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    justify-content: space-around;
}

.case-stats .stat {
    text-align: center;
    flex: 1;
}

.case-stats .stat h4 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.case-stats .stat p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
}

.case-link {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.case-link:hover {
    gap: 1rem;
}

/* Security Audit */
.security-audit {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 30, 0, 0.5) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.audit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.audit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.audit-subtitle {
    color: #b0b0b0;
    margin: 1rem 0 2rem;
    font-size: 1.2rem;
}

.audit-features {
    list-style: none;
    margin: 2rem 0;
}

.audit-features li {
    color: #b0b0b0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.audit-features i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.audit-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.audit-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-color);
}

.audit-form .form-group {
    margin-bottom: 1.5rem;
}

.audit-form input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 20, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Exo 2', sans-serif;
}

.audit-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
}

.audit-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.form-note {
    color: #b0b0b0;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* Team Preview */
.team-preview {
    padding: 5rem 2rem;
    text-align: center;
}

.team-preview-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.team-stats .stat {
    text-align: center;
}

.team-stats .stat h3 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.team-stats .stat p {
    font-size: 1.2rem;
    color: #b0b0b0;
}

.team-highlight {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    width: 200px;
}

.team-member:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--hover-glow);
}

.member-avatar {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.member-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-certifications {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.member-certifications span {
    background: rgba(0, 255, 0, 0.1);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

/* Testimonials - FIXED SLIDER */
.testimonials {
    padding: 5rem 2rem;
    background: var(--card-bg);
}

.testimonials-slider {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    min-height: 350px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform: translateX(30px);
}

.testimonial.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-content {
    background: rgba(0, 20, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 3rem;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.testimonial-content p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2rem;
    color: var(--secondary-color);
    background: rgba(0, 255, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.author-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
    font-style: normal;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-prev, .slider-next {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-prev:hover, .slider-next:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.slider-dots .dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--secondary-color);
    border-color: var(--secondary-color);
}

.slider-dots .dot:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Partners */
.partners {
    padding: 5rem 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.partner {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.partner:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--hover-glow);
}

.partner i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.partner span {
    display: block;
    color: #b0b0b0;
    font-size: 1rem;
    font-weight: 500;
}

/* Newsletter */
.newsletter {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 30, 0, 0.5) 0%, var(--card-bg) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.newsletter-content p {
    color: #b0b0b0;
    margin: 1rem 0 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-features span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.newsletter-features i {
    color: var(--secondary-color);
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: rgba(0, 20, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Exo 2', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
}

.newsletter-form .btn-primary {
    padding: 1rem 2rem;
    white-space: nowrap;
}

/* Footer */
footer {
    background-color: rgba(5, 5, 5, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.footer-logo p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.footer-links a, .footer-contact p {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.4);
}

/* Live Chat */
.live-chat {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.4);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--error-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    animation: pulse 2s infinite;
    font-weight: bold;
}

.chat-window {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 300px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
    overflow: hidden;
}

.chat-window.active {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.chat-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 20, 0, 0.3);
}

.chat-header h4 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.chat-close:hover {
    color: var(--secondary-color);
}

.chat-body {
    padding: 1rem;
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.chat-message {
    padding: 0.8rem;
    border-radius: 10px;
    max-width: 80%;
    word-wrap: break-word;
}

.chat-message.bot {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
    align-self: flex-start;
}

.chat-message.user {
    background: rgba(0, 100, 255, 0.1);
    border: 1px solid rgba(0, 100, 255, 0.2);
    align-self: flex-end;
}

.chat-message p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 20, 0, 0.3);
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(0, 20, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-family: 'Exo 2', sans-serif;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.chat-input button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.chat-input button:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .features-container,
    .audit-container,
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 10rem;
    }
    
    .hero-content {
        margin-bottom: 4rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-links .btn-audit {
        display: none;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .cube-container {
        width: 250px;
        height: 250px;
    }
    
    .face {
        font-size: 4rem;
    }
    
    .front { transform: translateZ(125px); }
    .back { transform: rotateY(180deg) translateZ(125px); }
    .right { transform: rotateY(90deg) translateZ(125px); }
    .left { transform: rotateY(-90deg) translateZ(125px); }
    .top { transform: rotateX(90deg) translateZ(125px); }
    .bottom { transform: rotateX(-90deg) translateZ(125px); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .hero-buttons .btn-tertiary {
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .team-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .team-highlight {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form .btn-primary {
        width: 100%;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .chat-window {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
    }
    
    .badges-container {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .audit-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .live-chat {
        left: 1rem;
        bottom: 1rem;
    }
    
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Selection Styling */
::selection {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Focus Styles for Accessibility */
:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Loading Animations */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 255, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Validation Styles */
.form-error {
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.form-error.show {
    display: block;
}

input.error, textarea.error {
    border-color: var(--error-color) !important;
}

input.success, textarea.success {
    border-color: var(--success-color) !important;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {
    .navbar, .back-to-top, .live-chat, .hero-3d {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}