/* Base styles */
body {
    font-family: 'Roboto', sans-serif;
}

.security-bg {
    background-color: #f8f9fa;
}

/* Hero/Bio section */
.hero, .bio {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../img/cyber-background.jpg') center/cover;
    padding: 120px 0;
}

/* Feature cards */
.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Workshop section */
.workshop-image {
    height: 300px;
    object-fit: cover;
}

.workshop-logo {
    max-width: 120px;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.workshop-logo:hover {
    transform: scale(1.05);
    filter: brightness(1);
}

/* Card animations */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Button styling */
.btn-primary {
    background: var(--cyber-primary);
    border: none;
    padding: 12px 30px;
    transition: transform 0.3s ease;
    color: #000;
    font-weight: bold;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* Testimonial section */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 1.5rem;
}

/* CTA section gradients */
.cta-individual {
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
}

.cta-company {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 150, 0, 0.1));
}

/* Highlight numbers in statistics */
.highlight-number {
    color: #ffd700;
    font-weight: bold;
}

/* Stats container styling */
.stats-container {
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.1);
    transition: transform 0.3s ease;
}

.stats-container:hover {
    transform: translateY(-5px);
}

.stats-container h3 {
    color: #00ff94;
}

.stats-container .text-muted {
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero, .bio {
        padding: 60px 0;
    }
    
    .workshop-image {
        height: 200px;
    }
    
    .btn-lg {
        padding: 8px 20px;
        font-size: 1rem;
    }
}

/* Carousel improvements */
.carousel-item {
    padding: 2rem;
}

.blockquote {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer styling */
footer {
    padding: 2rem 0;
}

/* Navbar enhancements */
.navbar-brand {
    font-weight: bold;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--cyber-primary) !important;
}

/* Base theme colors and resets */
:root {
    --matrix-bg-dark: #000500;
    --matrix-bg-light: #001500;
    --cyber-primary: #0f0;
    --cyber-secondary: #00ff94;
}

html.dark-theme,
body {
    background-color: var(--matrix-bg-dark);
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Particle container styling */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(
        to bottom,
        var(--matrix-bg-dark),
        var(--matrix-bg-light)
    );
}

/* Site wrapper to ensure content appears above particles */
.site-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Section backgrounds */
section {
    position: relative;
    z-index: 1;
    background-color: transparent !important;
}

/* Glass effect base */
.glass-effect {
    background: rgba(0, 15, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 0, 0.1);
}

/* Apply glass effect to specific sections */
.navbar,
.promise::before,
.offer::before,
.cta::before,
.testimonials .carousel-item blockquote {
    background: rgba(0, 15, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 0, 0.1);
}

/* Ensure sections with glass effect have proper stacking */
.promise,
.offer,
.cta {
    position: relative;
}

.promise::before,
.offer::before,
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Update existing section backgrounds */
.bio, 
.promise, 
.photo-section,
.offer,
.cta,
.ps-statement {
    background: transparent !important;
}

/* Terminal styling */
.terminal-container {
    display: inline-block;
    margin: 2.5rem auto;
    font-family: 'JetBrains Mono', monospace;
    background: rgba(0, 20, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

.terminal-container p {
    margin: 0;
    font-size: 2rem;
    line-height: 1.4;
}

.terminal-prompt {
    color: var(--cyber-primary);
    margin-right: 10px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.terminal-text {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.terminal-cursor {
    color: var(--cyber-primary);
    font-weight: bold;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Adjusted Logo and container spacing */
.logo-container {
    margin: 2rem auto;
    max-width: 80%; /* Adjusted to match desired width */
    text-align: center;
}

.main-logo {
    max-width: 80%; /* Set to exactly 80% */
    height: auto;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Add responsive adjustments */
@media (min-width: 768px) {
    .main-logo {
        max-width: 80%; /* Maintain consistent 80% on medium screens */
    }
}

@media (min-width: 1200px) {
    .main-logo {
        max-width: 80%; /* Maintain consistent 80% on large screens */
    }
}

.company-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    color: var(--cyber-primary);
    margin: 0.25rem 0; /* Reduced from 0.5rem */
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

/* Slogan styling */
.slogan-container {
    margin: 3.5rem auto;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    max-width: 1200px;
    padding: 0 2rem;
}

.slogan-line {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    line-height: 1.3;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.slogan-highlight {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(120deg, var(--cyber-primary), var(--cyber-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    text-shadow: none;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.slogan-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--cyber-primary);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.slogan-subtitle {
    font-size: 1.8rem;
    color: #e0e0e0;
    max-width: 900px;
    margin: 1.5rem auto 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    font-weight: 600;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.slogan-audience {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced emphasis for key phrases */
.emphasis-text {
    color: var(--cyber-primary);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Responsive adjustments for slogan */
@media (max-width: 768px) {
    .slogan-container {
        margin: 2.5rem auto;
        padding: 0 1rem;
    }

    .slogan-line {
        font-size: 2rem;
    }
    
    .slogan-highlight {
        font-size: 2.5rem;
    }
    
    .slogan-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
        line-height: 1.6;
    }

    .slogan-highlight::after {
        width: 80px;
        bottom: -8px;
    }
}

/* Enhanced Testimonials Section */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials .carousel {
    max-width: 1000px;
    margin: 0 auto;
}

/* Carousel fade transition */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .carousel-item:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.testimonials .carousel-item {
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials blockquote {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 15, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 0, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonials blockquote:hover {
    transform: translateY(-5px);
}

.testimonials .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

.testimonials .blockquote-footer {
    color: var(--cyber-primary);
    font-size: 1.1rem;
    margin-top: 1rem;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

/* Carousel Controls */
.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.testimonials .carousel-control-prev {
    left: 20px;
}

.testimonials .carousel-control-next {
    right: 20px;
}

.testimonials .carousel-control-prev:hover,
.testimonials .carousel-control-next:hover {
    background: rgba(0, 255, 0, 0.2);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.testimonials .carousel-control-prev-icon,
.testimonials .carousel-control-next-icon {
    width: 25px;
    height: 25px;
    filter: invert(1) brightness(200%);
}

.testimonials .carousel-indicators {
    bottom: -10px;
}

.testimonials .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 255, 0, 0.3);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonials .carousel-indicators button.active {
    background-color: var(--cyber-primary);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials .carousel-item {
        padding: 1rem;
        min-height: 400px;
    }

    .testimonials blockquote {
        padding: 1.5rem;
    }

    .testimonials .lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .testimonials .blockquote-footer {
        font-size: 1rem;
    }
}

/* Enhanced CTA Section */
.cta {
    position: relative;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 0, 0.1), rgba(0, 150, 0, 0.1));
    z-index: 0;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-card {
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.cta-card .card-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    margin-bottom: 1.5rem;
    position: relative;
}

.cta-card .card-header h3 {
    font-size: 1.8rem;
    color: var(--cyber-primary);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.cta-card .pricing {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-top: 0.5rem;
}

.features-list {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--cyber-primary);
    margin-right: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.feature-item span {
    color: #f0f0f0;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Individual Card Specific */
.individual-free-card {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(0, 150, 0, 0.05));
}

.individual-premium-card {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 150, 0, 0.15));
    position: relative;
    z-index: 2;
    transform: scale(1.02);
}

.individual-premium-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.premium-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--cyber-primary);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.3);
}

/* Corporate Card Specific */
.corporate-card {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 150, 0, 0.1));
}

/* Cyber Button Styles */
.btn-cyber {
    background: var(--cyber-primary);
    border: none;
    color: #000;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-cyber:hover {
    background: #00ff00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.btn-cyber-outline {
    border: 2px solid var(--cyber-primary);
    color: var(--cyber-primary);
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-cyber-outline:hover {
    background: var(--cyber-primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .individual-premium-card {
        transform: scale(1);
    }
    
    .individual-premium-card:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .cta-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-card {
        padding: 1.5rem;
    }

    .cta-card .card-header h3 {
        font-size: 1.5rem;
    }

    .feature-item {
        font-size: 1rem;
    }

    .cta-buttons {
        margin-top: 1.5rem;
    }
}

/* Waitlist Page Styles */
.waitlist-section {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.waitlist-content {
    background: rgba(0, 15, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 255, 0, 0.1);
}

.waitlist-content h1 {
    color: var(--cyber-primary);
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    font-family: 'JetBrains Mono', monospace;
}

.waitlist-content .lead {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 1.6;
}

.premium-features {
    background: rgba(0, 255, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 0, 0.1);
}

.premium-features h3 {
    color: var(--cyber-primary);
    font-family: 'JetBrains Mono', monospace;
}

.premium-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.premium-features .feature-item:hover {
    transform: translateX(10px);
}

.premium-features .feature-item i {
    font-size: 1.5rem;
    color: var(--cyber-primary);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.premium-features .feature-item span {
    font-size: 1.1rem;
    color: #fff;
}

/* Form Styling */
.sendfox-form .form-control {
    background: rgba(0, 15, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.2);
    color: #fff;
    padding: 1rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.sendfox-form .form-control:focus {
    background: rgba(0, 15, 0, 0.4);
    border-color: var(--cyber-primary);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    color: #fff;
}

.sendfox-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sendfox-form .form-check-label {
    color: #e0e0e0;
    font-size: 1rem;
}

.sendfox-form .form-check-input {
    background-color: rgba(0, 255, 0, 0.2);
    border-color: var(--cyber-primary);
}

.sendfox-form .form-check-input:checked {
    background-color: var(--cyber-primary);
    border-color: var(--cyber-primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .waitlist-section {
        padding-top: 100px;
    }
    
    .waitlist-content {
        padding: 2rem !important;
    }
    
    .premium-features {
        padding: 1.5rem;
    }
    
    .premium-features .feature-item {
        padding: 0.75rem;
    }
    
    .premium-features .feature-item span {
        font-size: 1rem;
    }
} 