/* 
    EASYBOOST HERO ULTIMATE FUSION
    Features: High-End Particles, Magnetic UI, Perfect Layout
*/

@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&family=Outfit:wght@300;500;900&display=swap');

.eb-hero-master {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #020205;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    perspective: 1000px; /* 3D Depth Active */
}

/* 1. THE NEURAL BACKGROUND (Wapas Aa Gaya) */
#eb-particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Ambient Glow */
.eb-ambient-glow {
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: pulse-glow 10s infinite alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.eb-hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 10;
}

/* --- LEFT SIDE: KINETIC TYPOGRAPHY --- */
.eb-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.eb-dot {
    width: 8px; height: 8px;
    background: #00C2FF;
    border-radius: 50%;
    box-shadow: 0 0 10px #00C2FF;
    animation: blink 2s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.eb-hero-title {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 0.9;
    margin-bottom: 25px;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.eb-gradient-text {
    background: linear-gradient(90deg, #FF2E63, #FF9933, #00C2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eb-desc {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 40px;
    border-left: 3px solid #FF2E63;
    padding-left: 20px;
}

/* MAGNETIC BUTTONS */
.eb-btn-group { display: flex; gap: 20px; flex-wrap: wrap; }

.eb-btn-main {
    padding: 18px 45px;
    background: #fff;
    color: #000;
    font-weight: 900;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.eb-btn-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #FF2E63, #FF9933);
    transform: translateX(-100%);
    transition: 0.4s ease;
    z-index: -1;
}

.eb-btn-main:hover { color: #fff; box-shadow: 0 0 30px rgba(255, 46, 99, 0.4); }
.eb-btn-main:hover::before { transform: translateX(0); }

/* --- RIGHT SIDE: 3D INTERACTIVE WEB --- */
.eb-web-stage {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d; /* 3D Movement Enabled */
    transition: transform 0.1s ease-out; /* Smooth Mouse Follow */
}

/* Rotating Lines */
.eb-web-lines {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    animation: spin-web 60s linear infinite;
    pointer-events: none;
}

@keyframes spin-web { to { transform: rotate(360deg); } }

.eb-line-path {
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1.5;
    stroke-dasharray: 6;
}

/* Center Logo (Solid Background Fix) */
.eb-center-logo {
    width: 150px; height: 150px;
    background: #020205; /* Black BG taaki lines na dikhe */
    border: 2px solid #00C2FF;
    border-radius: 40px;
    position: absolute;
    z-index: 20;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 0 60px rgba(0, 194, 255, 0.2);
    transform: translateZ(50px); /* 3D Pop */
}

.eb-center-logo img { width: 75%; height: auto; }

/* Interactive Nodes */
.eb-node {
    position: absolute;
    width: 120px;
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 15px;
    text-align: center;
    z-index: 25;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-origin: center;
}

/* HOVER BLAST EFFECT */
.eb-node:hover {
    transform: scale(1.2) translateZ(80px) !important; /* 3D Pop-up */
    background: #000;
    border-color: #FF9933;
    box-shadow: 0 0 30px rgba(255, 153, 51, 0.5);
    z-index: 50;
}

.eb-node i { font-size: 24px; margin-bottom: 5px; display: block; transition: 0.3s; }
.eb-node:hover i { transform: rotate(-10deg) scale(1.2); }

.eb-node span { font-size: 10px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; }

/* Colors */
.c-blue i { color: #00C2FF; }
.c-pink i { color: #FF2E63; }
.c-orange i { color: #FF9933; }
.c-green i { color: #25d366; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
    .eb-hero-master { height: auto; padding: 120px 0 80px 0; display: block; }
    .eb-hero-container { grid-template-columns: 1fr; gap: 60px; }
    .eb-text-content { text-align: center; }
    .eb-desc { margin: 20px auto; }
    .eb-btn-group { justify-content: center; }

    /* Mobile Grid Mode */
    .eb-web-stage {
        width: 100%; height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        transform: none !important; /* No 3D tilt on mobile */
    }
    
    .eb-web-lines, .eb-center-logo { display: none; }
    
    .eb-node {
        position: relative !important;
        top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
        transform: none !important;
        width: 100%;
        display: flex; align-items: center; gap: 15px;
        text-align: left; padding: 15px;
        background: rgba(255, 255, 255, 0.05);
    }
    .eb-node:hover { transform: translateY(-5px) !important; }
}