* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #05070f;
    --bg-elevated: #0a0f1f;
    --bg-card: #0f1628;
    --accent-cyan: #00d4ff;
    --accent-blue: #3b82f6;
    --accent-amber: #ffb224;
    --text-primary: #ffffff;
    --text-secondary: #b0c4de;
    --text-muted: #7a8b9f;
    --border-subtle: rgba(0, 212, 255, 0.2);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

/* animated background + starfield effect (global, behind everything) */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 20% 30%, #0a0f1f, #020408);
}

.cyber-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: repeating-linear-gradient(transparent 0px, transparent 2px, rgba(0, 212, 255, 0.02) 2px, rgba(0, 212, 255, 0.02) 4px);
    animation: shiftGrid 20s linear infinite;
    pointer-events: none;
}

.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: floatStar linear infinite;
    box-shadow: 0 0 2px rgba(255, 255, 240, 0.4);
}

@keyframes floatStar {
    0% {
        transform: translateY(0vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes shiftGrid {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* header - ORIGINAL STYLES */
/*header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(5, 7, 15, 0.85);
    border-bottom: 1px solid var(--border-subtle);
}*/

header {
    position: sticky;
    top: 0;
    z-index: 999999;
    width: 100%;
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo a {
    text-decoration: none;
    background: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-accent {
    color:  #22b8f0;
    background: none;
    -webkit-background-clip: unset;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-cta {
    background: linear-gradient(95deg, var(--accent-amber), #ff9500);
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    color: #0a0a0a !important;
    transition: 0.2s;
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 4px 12px rgba(255, 178, 36, 0.3);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 102;
    color: var(--text-secondary);
    font-size: 1.8rem;
    transition: 0.2s;
}

.hamburger:hover {
    color: var(--accent-cyan);
}

@media (max-width: 860px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(5, 7, 15, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem 2rem;
        gap: 1.8rem;
        transition: right 0.3s ease-in-out;
        z-index: 101;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.6);
        border-left: 1px solid rgba(0, 212, 255, 0.3);
        margin: 0;
        list-style: none;
        overflow-y: auto;
        display: flex;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        padding: 0.6rem 0;
        font-size: 1.2rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(100, 116, 139, 0.3);
        color: var(--text-secondary);
    }
    .nav-links a:hover {
        padding-left: 6px;
        color: var(--accent-cyan);
    }
    .mobile-quote-btn {
        background: linear-gradient(95deg, var(--accent-amber), #ff9500);
        color: #0a0a0a !important;
        font-weight: 700;
        text-align: center;
        margin-top: 0.5rem;
        padding: 0.8rem 0 !important;
        border-bottom: none !important;
    }
    .mobile-quote-btn:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
        padding-left: 0 !important;
    }
    nav {
        padding: 0.8rem 1.5rem;
        display: flex;
        flex-wrap: nowrap;
    }
    .logo {
        order: 1;
        margin-right: auto;
    }
    .desktop-cta {
        display: none;
    }
    .hamburger {
        order: 2;
        margin-left: 0;
    }
    body.menu-open {
        overflow: hidden;
    }
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(3px);
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: 0.2s;
    }
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (min-width: 861px) {
    .nav-links {
        display: flex !important;
        position: static;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        border-left: none;
        transition: none;
        gap: 2rem;
    }
    .menu-overlay {
        display: none;
    }
    .desktop-cta {
        display: inline-block;
    }
    .mobile-quote-item {
        display: none;
    }
}

/* Rain Animation Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 1rem 0;
    overflow: hidden;
    isolation: isolate;
}

/* Rain canvas container - positioned absolutely within hero only */
.rain-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

canvas#rainCanvas {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* Ensure hero content stays above rain effect */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Hero original animations / text styles remain unchanged */
.hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero p:first-of-type {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero p:last-of-type {
    animation: fadeInUp 0.8s ease 0.35s forwards;
}

.hero .btn-primary,
.hero .btn-secondary {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.7s ease 0.55s forwards;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-amber);
    color: #0a0a0a;
    margin-right: 1rem;
    box-shadow: 0 4px 14px rgba(255, 178, 36, 0.2);
}

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

.btn-secondary {
    background: transparent;
    border: 1px solid #2fb4f6;
    color: white;
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
}

/* sections - ORIGINAL */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(120deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid var(--border-subtle);
    transition: 0.2s;
}

.service-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(15, 22, 40, 0.8);
}

.service-icon {
    color: #3c77e8;
    margin-right: 0.6rem;
    font-size: 1.6rem;
    vertical-align: middle;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.dark-section {
    background: rgba(10, 15, 31, 0.6);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-list {
    list-style: none;
    margin-top: 1rem;
}

.about-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.about-list li::before {
    content: "▶";
    color: var(--accent-cyan);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.testimonial {
    background: rgba(0, 212, 255, 0.05);
    padding: 2rem;
    border-left: 3px solid #b9b9b9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #4cb4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: black;
}

.accreditations-section {
    background: #ffffff;
    color: #0a0a0a;
}

.accreditations-section .section-title h2 {
    background: linear-gradient(120deg, #1a1a2e, #16213e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.accreditations-section .section-title p {
    color: #4a5568;
}

.accreditations {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.accreditations img {
    height: auto;
    max-height: 60px;
    width: auto;
    filter: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .accreditations {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }
    .accreditations img {
        max-height: 70px;
        width: auto;
    }
    .accreditations #crest {
        max-width: 45px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .container,
    nav {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.contact-form {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-elevated);
    padding: 2rem;
    border: 1px solid var(--border-subtle);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    color: white;
    font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.form-notice {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid var(--accent-cyan);
    padding: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    display: none;
}

.form-notice a {
    color: var(--accent-amber);
    text-decoration: none;
}

button[type="submit"] {
    background: var(--accent-amber);
    border: none;
    color: black;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    transition: 0.2s;
}

button[type="submit"]:hover {
    background: #ff9500;
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

footer {
    background: #02050c;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    margin-top: 0.5rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    //color: #6d28d9;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.color-white {
    color: #fff;
}

#explore-services {
    margin-bottom: 5px;
}

.hero {
    background: #030303;
}

/* Hero accent text (replaces style="color: #10e9ff") */
.hero-accent-text {
    color: #2897d9;
}

/* White text utility (replaces multiple inline color:white) */
.color-white {
    color: white;
}

/* Section title with white heading (replaces h2 style="color: white") */
.section-title-white h2,
.white-heading {
    color: white;
}

/* About section heading (replaces style="font-size:1.8rem; margin-bottom:1.5rem") */
.about-heading {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* About paragraph margin (replaces style="margin-bottom:2rem") */
.about-paragraph {
    margin-bottom: 2rem;
}

/* Strong element inside about list (replaces style="color:white") */
.strong-white {
    color: white;
}

/* Testimonial author paragraph (replaces style="color:var(--text-muted); font-size:0.9rem") */
.testimonial-author-para {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Attack chain info box (replaces inline background, padding, margin-top) */
.attack-chain-box {
    background: rgba(0, 209, 255, 0.1);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

/* Attack chain title (replaces style="color:white; margin-bottom:0.5rem") */
.attack-chain-title {
    color: white;
    margin-bottom: 0.5rem;
}

/* Attack chain paragraph (ensures no extra margins) */
.attack-chain-text {
    margin: 0;
}

/* Footer logo bottom margin */
.footer-logo,
footer .footer-logo {
    margin-bottom: 1rem;
}

/* Footer section negative margin adjustment */
.footer-section-mb,
footer .footer-section-mb {
    margin-bottom: -1rem;
}

/* Footer links padding bottom */
.footer-links-padding,
footer .footer-links-padding {
    padding-bottom: 1.2rem;
}

/* Footer contact heading margin-top */
.footer-contact-heading,
footer .footer-contact-heading {
    margin-top: 1.2rem;
}

/* LinkedIn icon left margin */
.linkedin-icon,
footer .linkedin-icon {
    margin-left: 4px;
}

/* Logo link for footer */
.logo-link,
footer .logo-link {
    color: inherit;
    text-decoration: none;
}

/* Checkbox label flex alignment */
.checkbox-label-flex {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    flex-direction: row;
}

/* Checkbox auto width */
.checkbox-input-auto {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}
#cookiescript_copyright {
    display: none !important;
}
#cookiescript_injected {
    background: #000 !important;
}
#cookiescript_accept {
    background-color: orange !important;
    color: #000 !important;
}
@media (max-width: 860px) {
  nav {
    padding: 0.8rem 1.5rem;
  }
    .hero {
    min-height: 80vh;
  }
}
@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }
  .hamburger {
    font-size: 1.5rem;
  }
}
        
/* Additional styles for report download - does not affect any existing styles */
.thankyou-card {
    background: #1a1a2e;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.thankyou-card h3 {
    color: #00ffff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.thankyou-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,180,216,0.4);
}
.form-hidden {
    display: none !important;
}
.thankyou-visible {
    display: block !important;
}
.thankyou-card {
    display: none;
}

/* Calendly Styles */
.b5DUopirRGtCo7WwEuHi.ay7wYeeCFojVf1x8uLy4 {
    min-height: initial;
}
.EnjF4bI605idrj2qW_r1.BRuBU9vQOBAeWjVoug3H {
    display: none !important;
}
html, body {
    overflow-x: hidden;
}






/* ===============================
   SAFE GLOBAL CONTAINER RESTORE
================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
   HEADER FIX (Firefox + mobile safe)
================================= */
/*header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: rgba(0,0,0,0.85); /* prevents overlap issues 
    backdrop-filter: blur(10px);
}*/

/* prevents content hiding under header */
body {
    //padding-top: 3rem;
}

/* ===============================
   FIX FORM WIDTH (your issue)
================================= */
.contact-form form {
    width: 100%;
    max-width: 650px;
}

.contact-form {
    display: flex;
    justify-content: center;
}

/* ===============================
   FIX CHECKBOX ALIGNMENT
================================= */
.checkbox-label-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===============================
   RESTORE TEXT READABILITY SPACING
================================= */
.about-content,
.services-grid {
    width: 100%;
}

/* ===============================
   CALENDLY MOBILE FIX (close button)
================================= */
@media (max-width: 768px) {

    .calendly-overlay,
    .calendly-popup {
        position: fixed !important;
        inset: 0 !important;
        height: 100vh !important;
        z-index: 999999 !important;
    }

    .calendly-popup-content {
        height: 100vh !important;
    }

    .calendly-popup-close {
        z-index: 1000000 !important;
    }
}

/* =========================
   CALENDLY POPUP FIX (DESKTOP + MOBILE)
   fixes: top-left loading, cut-off modal, missing close button
========================= */

/* force full-screen overlay */
.calendly-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* popup container must fill viewport properly */
.calendly-popup {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 100vh !important;
    max-width: 100vw !important;
}

/* iframe must expand correctly */
.calendly-popup iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 100vh !important;
    border: 0 !important;
}

/* ensure close button is always visible */
.calendly-popup-close,
.calendly-close-overlay {
    position: fixed !important;
    top: 15px !important;
    right: 15px !important;
    z-index: 1000000 !important;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .calendly-overlay {
        align-items: stretch !important;
    }

    .calendly-popup {
        height: 100vh !important;
    }

    .calendly-popup iframe {
        height: 100vh !important;
    }
}