

:root {
    --neon-green: #C6FF00;
    --dark-bg: #000000;
    --light-bg: #ffffff;
    --gray-light: #f8f9fa;
    --text-muted: #6c757d;
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-neon: linear-gradient(135deg, var(--neon-green) 0%, #A4D63B 100%);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #000;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.text-neon {
    color: var(--neon-green) !important;
}

.bg-neon {
    background-color: var(--neon-green) !important;
}

.neon-highlight {
    background: var(--neon-green);
    color: #000;
    display: block;
    padding: 0.2em 0.3em;
    font-weight: 600;
    display: inline-block;
    margin: 0.1em;
}


.btn-neon {
    background: var(--gradient-neon);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(198, 255, 0, 0.3);
    color: #000;
}

.navbar-dark {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-green) !important;
}

.dropdown-menu {
    background: #000;
    border: 1px solid #333;
}



.dropdown-item {
    color: #fff;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--neon-green);
    color: #000;
}


.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-bg.jpg') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    font-size: 1rem;
}

.hero-badge {
    display: flex;
    align-items: center;
  
    padding: 1.5rem;
    border-radius: 1rem;
  
}

.badge-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.badge-circle i {
    font-size: 1.5rem;
    color: #000;
}

.badge-text {
    color: #fff;
}

.badge-text small {
    display: block;
    opacity: 0.7;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        margin-top: 2rem;
    }
}


.services-strip {
    background: var(--neon-green);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.services-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.services-content span {
    display: inline-flex;
    align-items: center;
    padding: 0 3rem;
    font-weight: 600;
    color: #000;
    font-size: 1.1rem;
}

.services-content span i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


.service-card {
    background: transparent;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #808285;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #808285;
    border-radius: 0 0 0 1rem;
}

.service-card-dark {
    background: #000;
    color: #fff;
}

.service-card-dark::before {
    background: #333;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-neon);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 2rem;
    color: #000;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card-dark .service-description {
    color: #ccc;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.service-card-dark .service-list li::before {
    color: var(--neon-green);
}

.service-link {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #000;
}

.service-card-dark .service-link {
    color: var(--neon-green);
}

.service-card-dark .service-link:hover {
    color: #fff;
}


.service-stats {
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.success-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.success-card h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}


.approach-badge {
    background: rgba(198, 255, 0, 0.1);
    padding: 1rem 2rem;
    border-radius: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.approach-badge i {
    font-size: 1.5rem;
}

.cta-section {
    background: var(--gradient-dark);
    padding: 5rem 0;
    position: relative;
}



.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


.about-hero {
    padding: 6rem 0 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-neon);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: #000;
}

.value-card h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}


.team-card {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--neon-green);
}

.team-card h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-card p {
    margin-bottom: 1rem;
}


.service-hero,
.about-hero,
.contact-hero,
.faq-hero,
.testimonials-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-hero,
.testimonials-hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
}

.testimonials-hero {
    background: linear-gradient(135deg, var(--neon-green) 0%, #A4D63B 100%);
    color: #000;
}


.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--neon-green);
}

.breadcrumb-item.active {
    color: #333;
}

.service-icon-large {
    width: 200px;
    height: 200px;
    background: var(--gradient-neon);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(198, 255, 0, 0.3);
}

.service-icon-large i {
    font-size: 4rem;
    color: #000;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-neon);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #000;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}


.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.step-content h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: #666;
}


.sidebar-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.related-services {
    list-style: none;
    padding: 0;
}

.related-services li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.related-services li:last-child {
    border-bottom: none;
}

.related-services a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-services a:hover {
    color: var(--neon-green);
}


.contact-form-card {
    background: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1rem;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-neon);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #000;
    font-size: 1.25rem;
}

.contact-item h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-item p,
.contact-item a {
    margin: 0;
    color: #666;
}

.contact-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--neon-green);
}

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    color: var(--neon-green);
}

.faq-question.active {
    background: var(--neon-green);
    color: #000;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 2rem 2rem;
    max-height: 300px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--neon-green);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 2rem;
    font-size: 3rem;
    color: var(--neon-green);
    font-family: serif;
    font-weight: bold;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
}

.author-info h6 {
    margin: 0;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: var(--neon-green);
    font-size: 0.9rem;
}


.legal-hero {
    padding: 6rem 0 3rem;
    background: #f8f9fa;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #555;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #666;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.legal-nav {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e9ecef;
    position: sticky;
    top: 100px;
}

.legal-nav h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-nav ul {
    list-style: none;
    padding: 0;
}

.legal-nav li {
    margin-bottom: 0.5rem;
}

.legal-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-nav a:hover {
    color: var(--neon-green);
}


.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
}

.error-content {
    text-align: center;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}


.newsletter-section {
    background: #111;
    padding: 3rem 0;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    border-radius: 0.5rem;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem;
}

.newsletter-form .btn {
    padding: 1rem 2rem;
}


.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--neon-green);
    color: #000;
}

.footer-divider {
    border-color: #333;
    margin: 2rem 0 1rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--neon-green);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.cookie-popup {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 400px;
    border-left: 4px solid var(--neon-green);
}

.cookie-popup.hidden {
    display: none;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    flex: 1;
    min-width: auto;
    padding: 0.5rem 1rem;
}


.form-control:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 0 0.2rem rgba(198, 255, 0, 0.25);
}

.form-floating > label {
    color: #6c757d;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--neon-green);
}


.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(198, 255, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--neon-green);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.page-content {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.service-type-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-type-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
}

.service-type-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-neon);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-type-icon i {
    font-size: 2rem;
    color: #000;
}

.platform-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.platform-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.platform-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.metric-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.metric-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.approach-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--neon-green);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.approach-icon i {
    font-size: 1.5rem;
    color: #000;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.25rem 0;
    color: #666;
}

.feature-list li::before {
    content: '✓';
    color: var(--neon-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.tech-category h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.tech-list li:last-child {
    border-bottom: none;
}

.phase-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phase-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phase-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    flex-shrink: 0;
}

.phase-info {
    flex: 1;
}

.phase-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

.phase-info small {
    color: #666;
}

.portfolio-preview {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-features ul,
.portfolio-results ul {
    list-style: none;
    padding: 0;
}

.portfolio-features li,
.portfolio-results li {
    padding: 0.25rem 0;
    color: #666;
}

.portfolio-features li::before {
    content: '•';
    color: var(--neon-green);
    margin-right: 0.5rem;
}

.threat-stat {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border-left: 4px solid #dc3545;
    transition: all 0.3s ease;
}

.threat-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.2);
}

.threat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.threat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.security-service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.security-service-card:hover {
    background: #fff;
    border-color: var(--neon-green);
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header i {
    font-size: 1.5rem;
}

.service-header h5 {
    margin: 0;
    font-weight: 600;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.25rem 0;
    color: #666;
}

.service-features li::before {
    content: '→';
    color: var(--neon-green);
    margin-right: 0.5rem;
}

.framework-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.framework-step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.framework-step:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 2rem;
    color: #000;
}

.threat-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.threat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
}

.threat-item i {
    font-size: 1.5rem;
}

.security-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.checklist-item i {
    font-size: 1.2rem;
}

.assessment-features {
    margin: 2rem 0;
}

.assessment-feature {
    text-align: center;
    padding: 1rem;
}

.assessment-feature i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.assessment-feature h6 {
    margin: 0;
    font-weight: 600;
}

.infrastructure-grid {
    margin-top: 3rem;
}

.infrastructure-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.infrastructure-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.infra-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.infra-header i {
    font-size: 1.5rem;
}

.infra-header h5 {
    margin: 0;
    font-weight: 600;
}

.infra-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: var(--neon-green);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.approach-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--neon-green);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-marker i {
    font-size: 1.5rem;
    color: #000;
}

.timeline-content {
    flex: 1;
    padding-top: 1rem;
}

.timeline-content h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tech-expertise-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e9ecef;
    height: 100%;
}

.tech-expertise-card h6 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-levels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-level {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    border-left: 4px solid var(--neon-green);
}

.service-level h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-level ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.service-level li {
    padding: 0.25rem 0;
    color: #666;
}

.service-level li::before {
    content: '✓';
    color: var(--neon-green);
    margin-right: 0.5rem;
}

.response-times {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.response-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
}

.response-priority {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.response-priority.critical {
    background: #dc3545;
    color: #fff;
}

.response-priority.high {
    background: #fd7e14;
    color: #fff;
}

.response-priority.medium {
    background: #ffc107;
    color: #000;
}

.response-priority.low {
    background: #28a745;
    color: #fff;
}

.response-time {
    font-weight: 600;
    color: var(--neon-green);
}

.monitoring-preview {
    margin: 2rem 0;
}

.dashboard-mockup {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.dashboard-header {
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
}

.dashboard-header h6 {
    margin: 0;
    font-weight: 600;
}

.dashboard-content {
    padding: 2rem;
}

.metric-widget {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    border-left: 4px solid var(--neon-green);
}

.metric-value {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

.partner-logo {
    max-height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.choose-icon {
    flex-shrink: 0;
}

.choose-content h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-facts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.fact-item:last-child {
    border-bottom: none;
}

.case-study {
    background: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-study h4 {
    color: var(--neon-green);
    margin-bottom: 1.5rem;
}

.case-study ul {
    list-style: none;
    padding: 0;
}

.case-study li {
    padding: 0.5rem 0;
    color: #666;
}

.case-study li::before {
    content: '→';
    color: var(--neon-green);
    margin-right: 0.5rem;
    font-weight: bold;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A4D63B;
}


@media (max-width: 768px) {
    .service-hero,
    .about-hero,
    .contact-hero,
    .faq-hero,
    .testimonials-hero {
        padding: 4rem 0 2rem;
    }
    
    .service-icon-large {
        width: 150px;
        height: 150px;
        margin-top: 2rem;
    }
    
    .service-icon-large i {
        font-size: 3rem;
    }
    
    .process-steps {
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .legal-nav {
        position: static;
        margin-bottom: 2rem;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .cookie-popup {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .services-content span {
        padding: 0 2rem;
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


@media print {
    .navbar,
    .footer,
    .newsletter-section,
    .cta-section,
    .cookie-popup {
        display: none !important;
    }
    
    .page-content {
        margin-top: 0 !important;
    }
    
    .legal-content {
        max-width: none;
    }
}


@media (prefers-contrast: high) {
    .service-card,
    .feature-card,
    .value-card,
    .team-card,
    .testimonial-card {
        border: 2px solid #000;
    }
    
    .faq-question {
        border-bottom: 2px solid #000;
    }
}


@media (prefers-reduced-motion: reduce) {
    .service-card,
    .feature-card,
    .value-card,
    .team-card,
    .testimonial-card,
    .faq-question,
    .step-number {
        transition: none;
    }
    
    .faq-answer {
        transition: none;
    }
    
    .services-strip .services-content {
        animation: none;
    }
}

.industry-testimonial {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.industry-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.industry-testimonial:hover::before {
    left: 100%;
}

.industry-testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--neon-green);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
}

.industry-icon::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.industry-testimonial:hover .industry-icon {
    transform: scale(1.1);
}

.industry-testimonial:hover .industry-icon::after {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
}

.industry-testimonial h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.industry-testimonial blockquote {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    position: relative;
    padding: 0 1rem;
}

.industry-testimonial blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--neon-green);
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
    line-height: 1;
}

.industry-testimonial blockquote::after {
    content: '"';
    font-size: 4rem;
    color: var(--neon-green);
    opacity: 0.3;
    position: absolute;
    bottom: -2rem;
    right: -0.5rem;
    font-family: serif;
    line-height: 1;
}

.industry-testimonial cite {
    font-weight: 600;
    color: var(--neon-green);
    font-style: normal;
    font-size: 0.9rem;
    display: block;
    margin-top: auto;
}

.industry-testimonial cite::before {
    content: '— ';
    color: #666;
}


.case-study-preview {
    position: relative;
}

.case-study-preview h3 {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.case-study-preview h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-neon);
    border-radius: 2px;
}

.case-study-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-neon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.case-study-card:hover::before {
    transform: scaleX(1);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.case-study-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
}

.case-study-card h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--neon-green);
    border-radius: 1px;
}

.case-study-card .text-muted {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.case-study-results {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.case-study-results li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.case-study-results li:last-child {
    border-bottom: none;
}

.case-study-results li::before {
    content: '▲';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--neon-green);
    font-size: 0.8rem;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.case-study-results li:hover {
    color: var(--neon-green);
    padding-left: 2.5rem;
}

.case-study-results li:hover::before {
    transform: rotate(90deg);
    color: #333;
}

.case-study-results strong {
    color: var(--neon-green);
    font-size: 1.3rem;
    font-weight: 900;
    display: inline-block;
    margin-right: 0.5rem;
    text-shadow: 0 0 10px rgba(198, 255, 0, 0.3);
}

.case-study-card img {
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.case-study-card img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


.case-study-card:hover .case-study-results strong {
    animation: numberGlow 2s ease-in-out infinite;
}



@media (max-width: 768px) {
    .industry-testimonial {
        margin-bottom: 2rem;
    }
    
    .case-study-card {
        padding: 2rem;
    }
    
    .case-study-card .row {
        flex-direction: column-reverse;
    }
    
    .case-study-card .col-lg-6:last-child {
        margin-bottom: 2rem;
    }
    
    .industry-testimonial blockquote {
        padding: 0 0.5rem;
    }
    
    .industry-testimonial blockquote::before,
    .industry-testimonial blockquote::after {
        font-size: 3rem;
    }
}


.industry-testimonial,
.case-study-card {
    position: relative;
    z-index: 1;
}

.industry-testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(198, 255, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.industry-testimonial:hover::after {
    opacity: 1;
}


.case-study-card img {
    position: relative;
    overflow: hidden;
}

.case-study-card img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #222;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}
.notification-success {
  background: #28a745;
}
.notification-error {
  background: #dc3545;
}
.notification-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
}
.services-header {
  font-weight: 700 !important;
  color: var(--neon-green, #c6ff00) !important;
  font-size: 1.1rem !important;
  margin-top: 0.5rem !important;
  padding-bottom: 0.25rem !important;
  border-bottom: 1px solid rgba(198, 255, 0, 0.3) !important;
}


.mobile-service-item {
  padding-left: 1.5rem !important;
  font-size: 0.95rem !important;
  color: var(--bs-nav-link-color) !important;
  position: relative;
}


.mobile-service-item:hover::before {
  transform: translateX(3px);
}

.mobile-service-item:hover {
  color: var(--neon-green, #c6ff00) !important;
  padding-left: 2rem !important;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 1rem;
  }
  
  .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-item:last-child {
    border-bottom: none;
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
  }
  

  .mobile-service-item {
    animation: slideInLeft 0.3s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
  }
  
  .mobile-service-item:nth-child(3) { animation-delay: 0.1s; }
  .mobile-service-item:nth-child(4) { animation-delay: 0.15s; }
  .mobile-service-item:nth-child(5) { animation-delay: 0.2s; }
  .mobile-service-item:nth-child(6) { animation-delay: 0.25s; }
  .mobile-service-item:nth-child(7) { animation-delay: 0.3s; }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.suggestion-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.suggestion-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.suggestion-list a {
    color: var(--neon-green);
    text-decoration: none;
}

.suggestion-list a:hover {
    text-decoration: underline;
}

.popular-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.popular-link:hover {
    color: var(--neon-green);
    background: rgba(198, 255, 0, 0.1);
    transform: translateX(5px);
}

.error-actions {
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .error-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .error-actions .btn {
        width: 100%;
    }
}