/* ======================================

HERO

====================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:120px 0;

}

/* LEFT */

.hero-title{

    font-size:4rem;

    font-weight:800;

    line-height:1.15;

    margin-bottom:30px;

}

.hero-title span{

    color:var(--secondary);

}

.hero-description{

    max-width:620px;

    font-size:18px;

    color:var(--text-light);

    margin-bottom:40px;

}

.hero-button{

    display:flex;

    gap:20px;

    margin-bottom:60px;

    flex-wrap:wrap;

}

.hero-stat{

    display:flex;

    gap:40px;

    flex-wrap:wrap;

}

.stat-item h2{

    font-size:34px;

    color:var(--secondary);

}

.stat-item p{

    font-size:14px;

}

/* ============================

RIGHT

============================ */

.network-area{

    position:relative;

    width:700px;

    height:700px;

    margin:auto;

}

/* ============================

CENTER

============================ */

.center-circle{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:220px;

    height:220px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    color:white;

    text-align:center;

    box-shadow:

    0 0 60px rgba(37,99,235,.45);

    z-index:10;

}

.center-circle span{

    font-size:12px;

    letter-spacing:3px;

    opacity:.8;

}

.center-circle h2{

    font-size:30px;

    font-weight:800;

}

.center-circle h3{

    font-size:22px;

    font-weight:600;

}

.center-circle p{

    font-size:13px;

    margin-top:10px;

    color:white;

}

/* ============================

ORBIT

============================ */

.orbit{

    position:relative;

    width:100%;

    height:100%;

}

/* ============================

CARD

============================ */

.service-card{

    position:absolute;

    width:150px;

    height:95px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border-radius:18px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transition:.35s;

    cursor:pointer;

}

.service-card:hover{

    transform:translateY(-8px) scale(1.05);

    box-shadow:

    0 0 25px rgba(37,99,235,.45);

}

.service-card i{

    font-size:28px;

    color:#4CC9FF;

    margin-bottom:10px;

}

.service-card h4{

    font-size:15px;

}

/* ============================

POSITION

============================ */

.cloud{

left:50%;
top:0;
transform:translateX(-50%);

}

.hardware{

left:60px;
top:140px;

}

.server{

right:60px;
top:140px;

}

.network{

left:0;
top:300px;

}

.cctv{

right:0;
top:300px;

}

.pabx{

left:80px;
bottom:130px;

}

.web{

right:80px;
bottom:130px;

}

.access{

left:210px;
bottom:0;

}

.attendance{

right:210px;
bottom:0;

}

/* ============================

GLOW

============================ */

.hero-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

}

.glow-1{

    width:300px;

    height:300px;

    background:#2563EB;

    left:40px;

    top:60px;

    opacity:.25;

}

.glow-2{

    width:240px;

    height:240px;

    background:#06B6D4;

    right:40px;

    bottom:50px;

    opacity:.20;

}

#networkCanvas{

position:absolute;

left:0;
top:0;

width:100%;
height:100%;

z-index:1;

pointer-events:none;

}

.center-circle{

z-index:20;

}

.service-card{

z-index:15;

}