* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #020024, #090979, #000);
    color: white;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
}

.btn {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    cursor: pointer;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
}

/* Left Side */
.left h4 {
    color: #00d4ff;
    margin-bottom: 10px;
}

.left h1 {
    font-size: 42px;
    line-height: 1.3;
}

.left span {
    color: #00d4ff;
}

.left p {
    margin: 20px 0;
    color: #ccc;
}

.buttons button {
    margin-right: 15px;
    padding: 12px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.primary {
    background: #00d4ff;
    color: black;
}

.secondary {
    background: transparent;
    color: white;
}

/* Right Side Animation */
.right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 250px;
    height: 250px;
    border: 2px solid #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotate 8s linear infinite;
    box-shadow: 0 0 40px #00d4ff;
}

.lock {
    font-size: 60px;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); color: #00d4ff; }
    100% { transform: scale(1); }
}

.cyber-circle {
    position: relative;
    width: 300px;
    height: 300px;
}

/* Rings */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #00d4ff;
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
    box-shadow: 0 0 25px #00d4ff;
}

.ring2 {
    width: 220px;
    height: 220px;
    top: 40px;
    left: 40px;
    animation-direction: reverse;
    opacity: 0.6;
}

/* Lock */
.lock-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lock-svg svg {
    width: 120px;
    animation: pulseGlow 2s infinite;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px #00d4ff);
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px #00d4ff);
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px #00d4ff);
    }
}

.shield-container {
    position: relative;
    width: 300px;
    height: 300px;
}

/* Glow effect */
.glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,212,255,0.3), transparent);
    border-radius: 50%;
    animation: glowPulse 3s infinite;
}

/* Shield */
.shield {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #00d4ff;
    stroke-width: 2;
    filter: drop-shadow(0 0 10px #00d4ff);
}

/* Lock */
.lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    animation: lockPulse 2s infinite;
}

/* Scanning line */
.scan-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #00d4ff;
    top: 0;
    animation: scan 3s linear infinite;
    box-shadow: 0 0 10px #00d4ff;
}

/* Animations */
@keyframes scan {
    0% { top: 0; opacity: 0.3; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0.3; }
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes lockPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* SVG Lock Styling */
.lock-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lock-svg svg {
    width: 80px;
    fill: none;
    stroke: #00d4ff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px #00d4ff);
    
    /* Animation */
    animation: drawLock 3s ease-in-out infinite;
}

/* Drawing animation */
@keyframes drawLock {
    0% {
        stroke-dasharray: 200;
        stroke-dashoffset: 200;
        opacity: 0.3;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 200;
        opacity: 0.3;
    }
}


.cyber-box {
    position: relative;
    width: 320px;
    height: 320px;
}

/* Glass effect */
.glass {
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background: rgba(0, 212, 255, 0.05);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
}

/* SVG */
.cyber-svg {
    width: 100%;
    height: 100%;
}

/* Outer circle */
.circle {
    fill: none;
    stroke: #00d4ff;
    stroke-width: 1.5;
    stroke-dasharray: 10 5;
    animation: rotateCircle 10s linear infinite;
}

/* Circuit lines */
.line {
    stroke: #00d4ff;
    stroke-width: 1.5;
    opacity: 0.6;
    animation: pulseLine 2s infinite;
}

/* Nodes */
.node {
    fill: #00d4ff;
    animation: blink 1.5s infinite alternate;
}

/* Lock */
.lock {
    fill: none;
    stroke: #00d4ff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px #00d4ff);
    animation: lockPulse 2s infinite;
}

/* Animations */
@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes blink {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

@keyframes pulseLine {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

@keyframes lockPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.right {
    width: 50%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#three-container {
    width: 400px;
    height: 400px;
}

#three-container canvas {
    display: block;
}

.cyber-ui {
    position: relative;
    width: 320px;
    height: 320px;
}

/* Glow */
.outer-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,212,255,0.25), transparent);
    border-radius: 50%;
}

/* Rings */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0,212,255,0.5);
}

.ring1 {
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}

.ring2 {
    width: 240px;
    height: 240px;
    top: 40px;
    left: 40px;
    animation: rotateReverse 12s linear infinite;
}

/* SVG */
.lock-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lock-svg rect,
.lock-svg path {
    fill: none;
    stroke: #00d4ff;
    stroke-width: 2;
    filter: drop-shadow(0 0 10px #00d4ff);
}

/* Circle */
.circle {
    fill: none;
    stroke: #00d4ff;
    stroke-width: 1;
    stroke-dasharray: 6 4;
}

/* Particles */
.particles::before,
.particles::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    animation: float 6s infinite linear;
}

.particles::after {
    left: 80%;
    animation-delay: 2s;
}

/* Animations */
@keyframes rotate {
    to { transform: rotate(360deg); }
}

@keyframes rotateReverse {
    to { transform: rotate(-360deg); }
}

@keyframes float {
    0% { transform: translateY(0); opacity: 0.2; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px); opacity: 0; }
}

.hud {
    position: relative;
    width: 320px;
    height: 320px;
}

/* Core Glow */
.core {
    position: absolute;
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0,212,255,0.4), transparent);
    border-radius: 50%;
    animation: pulse 3s infinite;
    background: radial-gradient(circle, rgba(0,212,255,0.5), transparent 70%);
}

/* Rings */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(0,212,255,0.4);
}

/* Ring variations */
.ring-1 {
    width: 100%;
    height: 100%;
    border-style: dashed;
    animation: rotate 12s linear infinite;
}

.ring-2 {
    width: 260px;
    height: 260px;
    top: 30px;
    left: 30px;
    border-style: solid;
    opacity: 0.6;
    animation: rotateReverse 10s linear infinite;
}

.ring-3 {
    width: 200px;
    height: 200px;
    top: 60px;
    left: 60px;
    border-style: dotted;
    opacity: 0.4;
    animation: rotate 8s linear infinite;
}

/* Lock */
.lock {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    transform: translate(-50%, -50%);
    fill: none;
    stroke: #00d4ff;
    stroke-width: 2;
    filter: drop-shadow(0 0 10px #00d4ff);
}

/* Animations */
@keyframes rotate {
    to { transform: rotate(360deg); }
}

@keyframes rotateReverse {
    to { transform: rotate(-360deg); }
}

@keyframes pulse {
    0%,100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Shield */
.shield {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    transform: translate(-50%, -50%);
}

/* Outer */
.shield-outer {
    fill: none;
    stroke: #00d4ff;
    stroke-width: 2;
    opacity: 0.6;
    filter: drop-shadow(0 0 10px #00d4ff);
}

/* Inner */
.shield-inner {
    fill: none;
    stroke: #00d4ff;
    stroke-width: 1.5;
    opacity: 1;
}

/* Line */
.shield-line {
    stroke: #00d4ff;
    stroke-width: 1.5;
    stroke-dasharray: 4;
    animation: lineMove 2s linear infinite;
}

/* Nodes */
.shield-node {
    fill: #00d4ff;
    animation: nodePulse 1.5s infinite alternate;
}

/* Animations */
@keyframes lineMove {
    from { stroke-dashoffset: 10; }
    to { stroke-dashoffset: 0; }
}

@keyframes nodePulse {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Scanner line */
.scanner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.scanner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #00d4ff;
    top: 0;
    left: 0;
    box-shadow: 0 0 10px #00d4ff;
    animation: scanMove 3s linear infinite;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

/* Animations */
@keyframes scanMove {
    0% { top: 0%; opacity: 0.2; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0.2; }
}

@keyframes shieldPulse {
    0%,100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}











.shield {
    animation: shieldZoom 4s ease-in-out infinite;
}

@keyframes shieldZoom {
    0%,100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
}

/* Logo Image */
.logo img {
    width: 300px;
    height: 90px;
    object-fit: contain;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 60px;
    height: 90px;   /* ✅ FIXED HEIGHT */

    background: transparent;
}

.logo img {
    height: 140px;   /* ✅ control height only */
    width: auto;    /* maintain ratio */
}

nav {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.left p {
    max-width: 450px;
    line-height: 1.6;
}

#typing-text {
    color: #00d4ff;
    border-right: 2px solid #00d4ff;
    padding-right: 6px;
    white-space: nowrap;

    animation: blinkCursor 1s infinite;
}

@keyframes blinkCursor {
    0%, 50%, 100% { border-color: #00d4ff; }
    25%, 75% { border-color: transparent; }
}





header {
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #00d4ff,
        transparent
    );
}


.wa-blue {
    width: 60px;
    height: 60px;
    background: #09ed55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-blue img {
    width: 30px;
    filter: brightness(0) invert(1); /* makes icon white */
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;   /* ✅ this pushes it to right */
    left: auto;    /* ✅ important (removes left alignment issue) */
    z-index: 9999;
}



/* FOOTER */
.footer {
    margin-top: 60px;
    padding: 20px 40px;

    text-align: center;

    background: rgba(0, 20, 60, 0.4);
    border-top: 1px solid rgba(0,212,255,0.3);

    backdrop-filter: blur(10px);
}

.footer-content p {
    margin: 5px 0;
    font-size: 13px;
    color: #aaa;
}

.footer-content p:first-child {
    color: #00d4ff;
    font-weight: 500;
}



.buttons a {
    text-decoration: none;
    display: inline-block;
}

/* Keep your existing button styles */
.primary {
    padding: 10px 18px;
    border-radius: 5px;
    background: #00d4ff;
    color: black;
}

.secondary {
    padding: 10px 18px;
    border-radius: 5px;
    border: 1px solid #00d4ff;
    color: #00d4ff;
}