/* Simple CSS for Private Hackers Website */
/* Replaces Tailwind CSS with simple, clean styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Mobile-First Overrides: ensure site elements adapt on small screens */
@media (max-width: 900px) {
    html, body { -webkit-text-size-adjust: 100%; }
    .container { padding-left: 16px; padding-right: 16px; }

    /* Make grids collapse to single column where appropriate */
    .card-grid,
    .service-options,
    .contact-methods,
    .form-row,
    .form-row > div,
    .ticket-details,
    .footer-content,
    .card-grid > .card,
    .stats-grid {
        grid-template-columns: 1fr !important;
        display: block !important;
    }

    /* Force inputs, selects, textareas and buttons to full width for touch */
    input, select, textarea, .btn { width: 100% !important; box-sizing: border-box; }

    /* Navigation: hide desktop links and show mobile menu button */
    .nav-links { display: none !important; }
    .mobile-menu-btn { display: block !important; }

    /* Reduce hero padding and scale headings for smaller screens */
    .hero { padding-top: 80px !important; padding-bottom: 40px !important; }
    .hero h1, .hero .glitch { font-size: 1.8rem !important; }
    .hero p { font-size: 1rem !important; }

    /* Make testimonials stack and ensure at least first visible */
    .testimonial { display: block !important; width: auto !important; margin: 12px auto !important; }

    /* Stats: keep horizontal but allow swipe; ensure good spacing */
    .stats-grid { padding: 12px 0 !important; }
    .stats-grid .stat { flex: 0 0 75% !important; min-width: 220px !important; }
}

@media (max-width: 480px) {
    .container { padding-left: 12px; padding-right: 12px; }
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.6rem !important; }
    .btn { padding: 12px !important; font-size: 1rem !important; }
    .service-icon { width: 64px !important; height: 64px !important; font-size: 28px !important; }
    .payment-section { padding: 12px !important; }
    .copy-btc-btn { width: 92px !important; }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .hero h1, .hero .glitch { font-size: 2.2rem !important; }
    .hero p { font-size: 1.1rem !important; }
    .section { padding: 60px 0; }
    .container { padding-left: 20px; padding-right: 20px; }
}

/* Ensure media and images scale within containers */
img, picture, video, iframe { max-width: 100%; height: auto; display: block; }


body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Colors */
.text-neon-green {
    color: #00ff41;
}

.text-cyber-blue {
    color: #00d4ff;
}

.text-warning-red {
    color: #ff073a;
}

.text-light {
    color: #e0e0e0;
}

.text-muted {
    color: #888888;
}

.bg-dark-primary {
    background-color: #0a0a0a;
}

.bg-dark-secondary {
    background-color: #1a1a1a;
}

.bg-neon-green {
    background-color: #00ff41;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 60px;
}

.nav-flex-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
    letter-spacing: 2px;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a, .nav-links .services-toggle {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 6px;
    transition: color 0.3s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover, .nav-links .services-toggle:hover {
    color: #00ff41;
    background: rgba(0,255,65,0.08);
}

.nav-links a.active {
    color: #00ff41;
}

.services-arrow {
    font-size: 0.9em;
    margin-left: 2px;
}

.services-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 220px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(0,255,65,0.25);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    z-index: 1002;
}
.services-dropdown.active {
    opacity: 1;
    max-height: 500px;
    overflow: visible;
}
.services-dropdown li {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    list-style: none;
}
.services-dropdown li:last-child {
    border-bottom: none;
}
.services-dropdown a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    width: 100%;
    display: block;
}
.services-dropdown a:hover {
    color: #00ff41;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #00ff41;
    font-size: 1.7rem;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
    border-radius: 6px;
    transition: all 0.3s;
}
.mobile-menu-btn:focus {
    outline: 2px solid #00ff41;
}
.mobile-menu-btn svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid rgba(0,255,65,0.2);
    z-index: 1001;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    padding: 0 0 20px 0;
    max-height: 90vh;
    overflow-y: auto;
}
.mobile-nav.active {
    display: block !important;
}
.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}
.mobile-nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
}
.mobile-nav-links li:last-child {
    border-bottom: none;
}
.mobile-nav-links a, .mobile-nav-links .services-toggle {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 16px 18px;
    border-radius: 0;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mobile-nav-links a:hover, .mobile-nav-links .services-toggle:hover {
    color: #00ff41;
    background: rgba(0,255,65,0.08);
}
.mobile-nav .services-dropdown {
    position: static;
    background: rgba(10,10,10,0.98);
    border: 1px solid rgba(0,255,65,0.15);
    border-radius: 0 0 8px 8px;
    box-shadow: none;
    margin: 0;
    min-width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
}
.mobile-nav .services-dropdown.active {
    opacity: 1;
    max-height: 500px;
    overflow: visible;
}
.mobile-nav .services-dropdown li {
    padding: 14px 24px;
}

/* Responsive Nav & Dropdowns */
@media (max-width: 900px) {
    .nav-links {
        display: none !important;
    }
    .mobile-menu-btn {
        display: block !important;
    }
    .nav-flex-group {
        gap: 0;
    }
}
@media (max-width: 900px) {
    .navbar {
        padding: 0;
    }
    .nav-container {
        padding: 0 10px;
        min-height: 54px;
    }
    .logo {
        font-size: 1.2rem;
        margin-right: 10px;
    }
}
@media (max-width: 480px) {
    .nav-container {
        padding: 0 4px;
        min-height: 48px;
    }
    .logo {
        font-size: 1rem;
        margin-right: 4px;
    }
    .mobile-nav-links a, .mobile-nav-links .services-toggle {
        font-size: 1rem;
        padding: 13px 10px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #888888;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: #00ff41;
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.btn-primary:hover {
    background-color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background-color: #00d4ff;
    color: #0a0a0a;
}


/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-width: 0;
    word-break: break-word;
}
.card:hover {
    transform: translateY(-10px);
    border-color: #00ff41;
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.2);
}
@media (max-width: 900px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .card {
        padding: 18px;
    }
}
@media (max-width: 480px) {
    .card {
        padding: 12px;
        font-size: 0.98rem;
    }
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff41, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0a0a0a;
    margin: 0 auto 20px;
}

.card h3 {
    text-align: center;
    margin-bottom: 15px;
}

.card p {
    text-align: center;
    color: #888888;
    margin-bottom: 20px;
}

.card-price {
    text-align: center;
    font-weight: bold;
    color: #00ff41;
    font-size: 1.2rem;
}

/* Forms */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: #0a0a0a;
    border: 1px solid #888888;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #00ff41;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300ff41' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.form-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.service-option {
    display: block;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option-content {
    padding: 20px;
    background-color: #0a0a0a;
    border: 2px solid #888888;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option input[type="radio"]:checked + .service-option-content {
    border-color: #00ff41;
    background-color: rgba(0, 255, 65, 0.1);
}

.service-option-content:hover {
    border-color: #00ff41;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #e0e0e0; /* slightly darker grey */
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: #000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #000;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #000;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.06);
    color: #000;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #fff;
    border: 1px solid #00ff41;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #009e2a;
}

.contact-link {
    display: block;
    color: #0077b6;
    text-decoration: none;
    font-weight: bold;
    margin: 15px 0;
    font-size: 1.2rem;
}

.contact-link:hover {
    color: #009e2a;
    text-decoration: underline;
}

.contact-note {
    color: #888;
    font-size: 0.9rem;
    margin-top: 10px;
}

.contact-address {
    color: #222;
    line-height: 1.6;
    margin: 15px 0;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #222;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00ff41;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-feedback {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}

.form-feedback.success {
    background-color: rgba(0, 255, 65, 0.1);
    color: #00ff41;
    border: 1px solid #00ff41;
}

.form-feedback.error {
    background-color: rgba(255, 7, 58, 0.1);
    color: #ff073a;
    border: 1px solid #ff073a;
}

/* Ticket Tracker */
.ticket-tracker {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.ticket-input {
    margin-bottom: 30px;
}

.ticket-input label {
    display: block;
    margin-bottom: 10px;
    color: #e0e0e0;
    font-weight: 500;
}

.ticket-form {
    display: flex;
    gap: 10px;
}

.ticket-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: #0a0a0a;
    border: 1px solid #888888;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 1rem;
}

.ticket-form input:focus {
    outline: none;
    border-color: #00ff41;
}

.ticket-result {
    display: none;
    background-color: #0a0a0a;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #00ff41;
}

.ticket-result.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

.ticket-info h3 {
    color: #00ff41;
    margin-bottom: 20px;
    text-align: center;
}

.ticket-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.ticket-detail {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.ticket-detail span:first-child {
    color: #888888;
}

.ticket-detail span:last-child {
    color: #e0e0e0;
    font-weight: 500;
}

.ticket-detail.full-width {
    grid-column: 1 / -1;
}

.ticket-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticket-progress span {
    color: #888888;
    min-width: 80px;
}

.progress-bar {
    flex: 1;
    height: 10px;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff41, #00d4ff);
    border-radius: 5px;
    width: 0%;
    transition: width 0.5s ease;
}

.ticket-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-open {
    background: #00ff41;
    color: #0a0a0a;
}

.status-progress {
    background: #00d4ff;
    color: #0a0a0a;
}

.status-closed {
    background: #888;
    color: #0a0a0a;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    padding: 20px;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-nav.active {
    display: block !important;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 15px 10px;
}

.mobile-nav-links a:hover {
    color: #00ff41;
    background-color: rgba(0, 255, 65, 0.1);
}

/* Language Translator Styles */
#language-selector {
    position: relative;
    z-index: 1001;
    margin-left: 18px;
}
.language-selector-container {
    position: relative;
    display: inline-block;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 6px;
    color: #00ff41;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
}

.language-current:hover {
    background: rgba(0, 255, 65, 0.2);
    border-color: #00ff41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.language-flag {
    font-size: 16px;
    line-height: 1;
}

.language-name {
    flex: 1;
    text-align: left;
}

.language-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-current[aria-expanded="true"] .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: #1a1a1a;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 6px;
    min-width: 150px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1002;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.language-dropdown.active {
    max-height: 300px;
    opacity: 1;
    overflow: visible;
}

.language-dropdown li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

.language-dropdown li:last-child {
    border-bottom: none;
}

.language-dropdown li:hover {
    background: rgba(0, 255, 65, 0.1);
    color: #00ff41;
}

.language-dropdown li .language-flag {
    font-size: 18px;
    line-height: 1;
}

.language-dropdown li .language-name {
    font-size: 14px;
    font-weight: 400;
}

/* Hide Google Translate default UI elements */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    display: none !important;
}

.goog-te-spinner-pos {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  #language-selector {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  #language-selector {
    margin-top: 6px;
    margin-bottom: 6px;
    width: 100%;
    justify-content: flex-end;
  }
}

/* Utility Classes */
.mb-4 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.font-bold { font-weight: bold; }
.font-mono { font-family: 'JetBrains Mono', 'Courier New', monospace; }
.underline { text-decoration: underline; }
.hidden { display: none; }
.border-neon-green { border-color: #00ff41 !important; }
.border-text-muted { border-color: #888888 !important; }
.bg-neon-green\/10 { background-color: rgba(0, 255, 65, 0.1) !important; }

/* Floating Chat Icon Fix (example: .chat-float) */
@media (max-width: 900px) {
  .chat-float, .floating-chat, .whatsapp-float {
    bottom: 16px !important;
    right: 12px !important;
    z-index: 9999;
    max-width: 56px;
    max-height: 56px;
  }
}
@media (max-width: 480px) {
  .chat-float, .floating-chat, .whatsapp-float {
    bottom: 8px !important;
    right: 6px !important;
    max-width: 44px;
    max-height: 44px;
  }
}

/* Footer responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-section {
        padding: 0 10px;
        text-align: left;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p {
        font-size: 0.95rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }

    .footer a {
        color: inherit;
        text-decoration: underline;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 16px;
    }

    .footer-section h4 {
        font-size: 0.95rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Cybersecurity Services Section Styles */
.cyber-services {
    padding: 70px 0 30px;
    background: linear-gradient(180deg, rgba(10,10,10,0.6), rgba(5,5,5,0.95));
    border-bottom: 1px solid rgba(0, 212, 255, 0.06);
}

.subtitle {
    max-width: 900px;
    margin: 0.5rem auto 1.5rem;
    color: #bcdff6;
}

.who-is, .who-are, .trust, .unique {
    padding: 50px 0;
}

.who-is p, .who-are p, .trust p, .unique p {
    color: #cfcfcf;
    max-width: 1000px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 18px;
    list-style: none;
    padding-left: 0;
    color: #cfcfcf;
}

.unique .btn-primary {
    margin-top: 18px;
}

.stats-grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
}

.stats-grid .stat {
    flex: 0 0 calc(33.333% - 13.333px);
    min-width: 220px;
    scroll-snap-align: center;
}
.stat {
    background: linear-gradient(180deg, #071015, #0f1720);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.06);
}

.counter {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 8px;
}

.stat p {
    color: #b0b7c0;
}

.testimonials .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto 0;
}

.testimonial {
    background: #0f1418;
    padding: 24px;
    border-radius: 10px;
    color: #dbeafe;
    border: 1px solid rgba(0, 212, 255, 0.06);
    display: none;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.testimonial span {
    display: block;
    color: #9fb8cf;
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    /* Keep horizontal layout but allow large items to be swipeable */
    .stats-grid { flex-wrap: nowrap; }
    .stats-grid .stat { flex: 0 0 70%; padding: 22px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .subtitle { padding: 0 12px; }
    .cyber-services { padding: 40px 0; }
}

/* Accessibility & Mobile tweaks */
.testimonial:first-child { display: block; }

.testimonial { padding-left: 16px; padding-right: 16px; }

.counter { font-size: 1.6rem; }

@media (max-width: 480px) {
    .who-is, .who-are, .trust, .unique { padding: 30px 12px; }
    .testimonial p { font-size: 1rem; }
    .counter { font-size: 1.4rem; }
    .container { padding: 0 12px; }
}

@media (max-width: 360px) {
    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 1rem; }
    .btn { padding: 10px 16px; font-size: 0.95rem; }
}

/* Centering / Layout adjustments for cybersecurity sections */
.cyber-services .container,
.who-is .container,
.who-are .container,
.trust .container,
.unique .container,
.testimonials .container {
    text-align: center;
}

.features { justify-content: center; }

.stats-grid { justify-items: center; }
.stats-grid .stat { margin: 0 auto; }

.testimonial-grid { justify-items: center; }
.testimonial { max-width: 820px; margin-left: auto; margin-right: auto; display: none; }
.testimonial:first-child { display: block; }

.unique .btn-primary { display: inline-block; margin: 18px auto 0; }

/* ensure container centering doesn't break other pages */
.container { display: block; }

