/* ==========================================
   CyberShield - Premium Cyber Security Theme
   File: css/style.css
   ========================================== */

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#030712;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

/* ==========================
   VARIABLES
========================== */

:root{

    --primary:#00ff99;
    --secondary:#00d9ff;
    --dark:#030712;
    --card:#0b1220;
    --border:#1f2937;
    --text:#d1d5db;
    --white:#ffffff;

}

/* ==========================
   TYPOGRAPHY
========================== */

h1,h2,h3,h4,h5{
    font-family:'Orbitron',sans-serif;
    font-weight:700;
}

h1{
    font-size:64px;
    line-height:1.2;
}

h2{
    font-size:42px;
    margin-bottom:20px;
}

h3{
    font-size:24px;
}

p{
    color:var(--text);
    font-size:18px;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
}

/* ==========================
   CONTAINER
========================== */

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* ==========================
   MATRIX CANVAS
========================== */

#matrix{

    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:-100;

}

/* ==========================
   NAVBAR
========================== */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:22px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:9999;

}

.logo{

    font-size:34px;

    font-family:'Orbitron',sans-serif;

    color:var(--white);

    font-weight:700;

}

.logo span{

    color:var(--primary);

}

.navbar ul{

    list-style:none;

    display:flex;

    gap:35px;

}

.navbar ul li a{

    color:white;

    transition:.3s;

    font-size:16px;

    font-weight:500;

}

.navbar ul li a:hover{

    color:var(--primary);

}

/* ==========================
   HERO SECTION
========================== */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 20px;

    background:

    radial-gradient(circle at center,
    rgba(0,255,153,.18),
    transparent 60%);

}

.hero-content{

    max-width:900px;

}

.hero h1{

    color:white;

    margin-bottom:25px;

    text-shadow:

    0 0 12px rgba(0,255,153,.5),

    0 0 25px rgba(0,255,153,.35);

}

.hero p{

    font-size:21px;

    margin-bottom:40px;

}

/* ==========================
   BUTTON
========================== */

.btn{

    display:inline-block;

    padding:16px 40px;

    border-radius:50px;

    background:var(--primary);

    color:black;

    font-weight:700;

    transition:.35s;

    box-shadow:

    0 0 20px rgba(0,255,153,.45);

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:

    0 0 35px rgba(0,255,153,.8);

}

/* ==========================
   SECTION
========================== */

section{

    padding:110px 0;

}

section h2{

    text-align:center;

    margin-bottom:30px;

    color:var(--primary);

}

/* ==========================
   ABOUT
========================== */

#about{

    background:#08111f;

}

#about p{

    max-width:900px;

    margin:auto;

    text-align:center;

}

/* ==========================
   SERVICES
========================== */

.cards{

    margin-top:50px;

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    background:rgba(12,18,32,.85);

    border:1px solid rgba(0,255,153,.12);

    border-radius:18px;

    padding:35px;

    transition:.35s;

    backdrop-filter:blur(8px);

}

.card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:

    0 0 35px rgba(0,255,153,.25);

}

.card h3{

    color:var(--primary);

    margin-bottom:15px;

}

.card p{

    font-size:16px;

}

/* ==========================
   CONTACT
========================== */

#contact{

    background:#08111f;

}

form{

    width:100%;

    max-width:700px;

    margin:auto;

}

input,
textarea{

    width:100%;

    padding:18px;

    margin-bottom:20px;

    background:#111827;

    border:1px solid #233044;

    color:white;

    border-radius:10px;

    outline:none;

}

input:focus,
textarea:focus{

    border-color:var(--primary);

    box-shadow:0 0 15px rgba(0,255,153,.25);

}

textarea{

    resize:none;

    height:180px;

}

button{

    background:var(--primary);

    color:black;

    border:none;

    padding:16px 40px;

    border-radius:40px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    box-shadow:0 0 30px rgba(0,255,153,.6);

}

/* ==========================
   FOOTER
========================== */

footer{

    background:#000;

    padding:35px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

footer p{

    color:#8b949e;

    font-size:15px;

}
/* ==========================================
   STYLE.CSS - PART 2
   Advanced Components
========================================== */

/* ==========================
   SECTION TITLE
========================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--primary);
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:14px;
}

.section-title h2{
    margin-top:10px;
    font-size:42px;
}

.section-title p{
    max-width:700px;
    margin:15px auto;
}

/* ==========================
   GLASS CARD
========================== */

.glass{

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

}

/* ==========================
   STATS SECTION
========================== */

.stats{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    margin-top:60px;

}

.stat-box{

    text-align:center;

    padding:40px 20px;

    background:#08111f;

    border-radius:18px;

    transition:.4s;

    border:1px solid rgba(0,255,153,.08);

}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:0 0 30px rgba(0,255,153,.20);

}

.stat-box h3{

    font-size:52px;

    color:var(--primary);

}

.stat-box p{

    margin-top:10px;

}

/* ==========================
   TIMELINE
========================== */

.timeline{

    position:relative;

    max-width:1000px;

    margin:70px auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:3px;

    height:100%;

    background:var(--primary);

}

.timeline-item{

    width:50%;

    padding:30px;

    position:relative;

}

.timeline-item:nth-child(odd){

    left:0;

    text-align:right;

}

.timeline-item:nth-child(even){

    left:50%;

}

.timeline-content{

    background:#0b1220;

    border-radius:15px;

    padding:25px;

    border:1px solid rgba(0,255,153,.08);

}

.timeline-content h3{

    margin-bottom:12px;

    color:var(--primary);

}

/* ==========================
   FEATURE BOX
========================== */

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    margin-top:50px;

}

.feature{

    padding:35px;

    border-radius:18px;

    background:#08111f;

    transition:.35s;

}

.feature:hover{

    transform:translateY(-10px);

}

.feature i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:20px;

}

/* ==========================
   FAQ
========================== */

.faq{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:20px;

    border-radius:12px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

}

.faq-question{

    padding:22px;

    background:#0b1220;

    cursor:pointer;

    font-weight:600;

}

.faq-answer{

    padding:20px;

    display:none;

    background:#08111f;

}

/* ==========================
   CONTACT BOXES
========================== */

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    margin-bottom:40px;

}

.contact-box{

    padding:35px;

    background:#08111f;

    border-radius:16px;

    text-align:center;

    transition:.3s;

}

.contact-box:hover{

    box-shadow:0 0 30px rgba(0,255,153,.25);

}

.contact-box h3{

    color:var(--primary);

    margin-bottom:15px;

}

/* ==========================
   SOCIAL ICONS
========================== */

.social{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:35px;

}

.social a{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#111827;

    transition:.35s;

    font-size:22px;

}

.social a:hover{

    background:var(--primary);

    color:#000;

    transform:translateY(-8px);

}

/* ==========================
   GLOW EFFECT
========================== */

.glow{

    box-shadow:

    0 0 10px rgba(0,255,153,.35),

    0 0 20px rgba(0,255,153,.25),

    0 0 35px rgba(0,255,153,.20);

}

/* ==========================
   HOVER GLOW
========================== */

.hover-glow{

    transition:.35s;

}

.hover-glow:hover{

    box-shadow:

    0 0 25px rgba(0,255,153,.45);

}

/* ==========================
   BADGE
========================== */

.badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    background:rgba(0,255,153,.12);

    color:var(--primary);

    font-size:13px;

    letter-spacing:1px;

}

/* ==========================
   CYBER BORDER
========================== */

.cyber-border{

    position:relative;

}

.cyber-border::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:18px;

    background:linear-gradient(90deg,

    transparent,

    var(--primary),

    transparent);

    z-index:-1;

    animation:borderMove 4s linear infinite;

}

@keyframes borderMove{

    from{

        transform:rotate(0);

    }

    to{

        transform:rotate(360deg);

    }

}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#020617;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

/* ==========================
   TEXT SELECTION
========================== */

::selection{

    background:var(--primary);

    color:#000;

}

/* ==========================
   SPACING UTILITIES
========================== */

.mt-50{margin-top:50px;}
.mt-80{margin-top:80px;}
.mb-50{margin-bottom:50px;}
.pt-100{padding-top:100px;}
.pb-100{padding-bottom:100px;}
.text-center{text-align:center;}

/* ==========================
   SHADOW
========================== */

.shadow{

    box-shadow:

    0 20px 60px rgba(0,0,0,.45);

}