/* ==========================================================
   RISX GTI - Premium Cyber Security UI
   STYLE.CSS (PART 1)
========================================================== */

:root{
    --bg:#050816;
    --bg2:#0D1325;
    --card:rgba(255,255,255,.06);
    --border:rgba(255,255,255,.08);

    --blue:#00E5FF;
    --purple:#8B5CF6;

    --text:#ffffff;
    --sub:#b7bfd6;

    --radius:18px;
    --shadow:0 0 25px rgba(0,229,255,.18);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(180deg,#050816,#0D1325);
    color:var(--text);
    overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#050816;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--blue),var(--purple));
    border-radius:50px;
}

/* Progress Bar */

#progressBar{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    z-index:9999;
    background:linear-gradient(90deg,var(--blue),var(--purple));
}

/* Loader */

#loader{
    position:fixed;
    inset:0;
    background:#050816;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:.5s;
}

.loader-circle{
    width:70px;
    height:70px;
    border-radius:50%;
    border:4px solid rgba(255,255,255,.1);
    border-top:4px solid var(--blue);
    animation:spin 1s linear infinite;
}

#loader h2{
    margin-top:20px;
    letter-spacing:4px;
}

@keyframes spin{

to{

transform:rotate(360deg);

}

}

/* Navbar */

.navbar{

position:fixed;

top:20px;

left:50%;

transform:translateX(-50%);

width:min(92%,1200px);

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 28px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

border-radius:18px;

z-index:1000;

}

.logo{

font-size:28px;

font-weight:800;

}

.logo span{

color:var(--blue);

text-shadow:0 0 12px var(--blue);

}

.navbar ul{

display:flex;

gap:25px;

list-style:none;

}

.navbar a{

text-decoration:none;

color:white;

transition:.3s;

}

.navbar a:hover{

color:var(--blue);

}

.nav-btn{

padding:12px 22px;

border-radius:50px;

background:linear-gradient(135deg,var(--blue),var(--purple));

font-weight:600;

box-shadow:var(--shadow);

}

/* Hero */

.hero{

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:120px 8%;

text-align:center;

position:relative;

}

.hero::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:var(--purple);

filter:blur(180px);

opacity:.15;

top:-100px;

right:-100px;

}

.hero::after{

content:"";

position:absolute;

width:400px;

height:400px;

background:var(--blue);

filter:blur(170px);

opacity:.15;

bottom:-100px;

left:-100px;

}

.hero-content{

max-width:850px;

z-index:2;

}

.hero h1{

font-size:68px;

line-height:1.1;

margin-bottom:25px;

}

.hero h1 span{

color:var(--blue);

text-shadow:0 0 20px var(--blue);

}

.hero p{

font-size:20px;

color:var(--sub);

line-height:1.8;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.primary-btn,
.secondary-btn{

padding:16px 34px;

border-radius:50px;

font-size:16px;

font-weight:600;

text-decoration:none;

transition:.35s;

}

.primary-btn{

background:linear-gradient(135deg,var(--blue),var(--purple));

color:white;

box-shadow:0 0 25px rgba(0,229,255,.35);

}

.primary-btn:hover{

transform:translateY(-5px);

box-shadow:0 0 40px rgba(0,229,255,.55);

}

.secondary-btn{

border:1px solid rgba(255,255,255,.15);

background:rgba(255,255,255,.05);

backdrop-filter:blur(15px);

color:white;

}

.secondary-btn:hover{

border-color:var(--blue);

}

/* Sections */

.section{

padding:110px 8%;

}

.section h2{

text-align:center;

font-size:42px;

margin-bottom:60px;

}

/* Glass Card */

.glass{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

border-radius:20px;

padding:30px;

box-shadow:0 0 30px rgba(0,229,255,.06);

transition:.35s;

}

.glass:hover{

transform:translateY(-8px);

box-shadow:0 0 35px rgba(139,92,246,.25);

}

/* Services */

.services-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:28px;

}

.card{
    display: block;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    padding: 35px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );
    transition:.6s;
}

.card:hover::before{
    left:100%;
}

.card:hover{
    transform:translateY(-8px);
    border-color:var(--blue);
    box-shadow:0 0 25px rgba(0,229,255,.22);
}

/* Features */

.features{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:24px;

}

.features .glass{

text-align:center;

font-size:18px;

font-weight:600;

}

/* ==========================================================
   RISX GTI - Premium Cyber Security UI
   STYLE.CSS (PART 2)
========================================================== */

/* Timeline */

.timeline{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:30px;
}

.step{
    position:relative;
    padding:35px;
    border-radius:20px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    text-align:center;
    transition:.35s;
}

.step span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:60px;
    height:60px;
    border-radius:50%;
    margin-bottom:18px;
    font-size:22px;
    font-weight:700;
    background:linear-gradient(135deg,var(--blue),var(--purple));
    color:#fff;
    box-shadow:0 0 20px rgba(0,229,255,.35);
}

.step:hover{
    transform:translateY(-8px);
    box-shadow:0 0 30px rgba(139,92,246,.25);
}

/* Statistics */

.stats{
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
}

.stats div{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.3s;
}

.stats div:hover{
    transform:translateY(-8px);
}

.stats h2{
    font-size:42px;
    color:var(--blue);
    margin-bottom:10px;
}

.stats p{
    color:var(--sub);
}

/* Contact */

.contact-box{
    max-width:650px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:18px;
    text-align:center;
}

.contact-box a{
    color:#fff;
    text-decoration:none;
    padding:16px;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    transition:.3s;
}

.contact-box a:hover{
    background:linear-gradient(135deg,var(--blue),var(--purple));
}

/* Footer */

footer{
    padding:70px 8%;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:60px;
}

footer h2{
    margin-bottom:12px;
}

footer p{
    color:var(--sub);
    margin:8px 0;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin:30px 0;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--blue);
}

/* Floating Buttons */

.floating-whatsapp,
.floating-telegram{
    position:fixed;
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
    text-decoration:none;
    z-index:999;
    box-shadow:0 0 25px rgba(0,229,255,.3);
    transition:.3s;
}

.floating-whatsapp{
    right:25px;
    bottom:25px;
    background:#25D366;
}

.floating-telegram{
    right:25px;
    bottom:95px;
    background:#229ED9;
}

.floating-whatsapp:hover,
.floating-telegram:hover{
    transform:scale(1.12);
}

/* Particles */

#particles{
    position:fixed;
    inset:0;
    pointer-events:none;
    overflow:hidden;
    z-index:-1;
}

#particles span{
    position:absolute;
    width:4px;
    height:4px;
    border-radius:50%;
    background:var(--blue);
    opacity:.5;
    animation:float 15s linear infinite;
}

@keyframes float{

0%{
    transform:translateY(100vh) scale(0);
}

50%{
    opacity:1;
}

100%{
    transform:translateY(-120vh) scale(1);
}

}

/* Fade Animation */

.fade{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.fade.show{
    opacity:1;
    transform:translateY(0);
}

/* Glow Selection */

::selection{
    background:var(--blue);
    color:#000;
}

/* Mobile */

@media(max-width:900px){

.navbar{
    padding:15px 18px;
}

.navbar ul{
    display:none;
}

.hero h1{
    font-size:46px;
}

.hero p{
    font-size:18px;
}

.section h2{
    font-size:34px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.primary-btn,
.secondary-btn{
    width:260px;
    text-align:center;
}

.stats{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.hero{
    padding-top:140px;
}

.hero h1{
    font-size:36px;
}

.section{
    padding:80px 6%;
}

.stats{
    grid-template-columns:1fr;
}

.logo{
    font-size:24px;
}

.nav-btn{
    display:none;
}

.floating-whatsapp,
.floating-telegram{
    width:54px;
    height:54px;
    font-size:24px;
}

}

/* Neon Glow */

.card:hover,
.glass:hover,
.step:hover{
    border-color:var(--blue);
    box-shadow:
        0 0 20px rgba(0,229,255,.25),
        0 0 40px rgba(139,92,246,.18);
}

/* Hero Fade */

.hero-content{
    animation:heroFade 1.2s ease;
}

@keyframes heroFade{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* End of CSS */
