/* ===========================================
   OPSBYYASH
   Premium DevOps Theme
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#070B13;

    color:#fff;

    overflow-x:hidden;

    line-height:1.6;

}


/* Container */

.container{

    width:90%;

    max-width:1300px;

    margin:auto;

}


/* Background Grid */

.grid-bg{

    position:fixed;

    inset:0;

    z-index:-2;

    background-color:#070B13;

    background-image:

    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),

    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);

    background-size:60px 60px;

}


/* Glow */

.grid-bg::after{

    content:"";

    position:absolute;

    width:800px;

    height:800px;

    border-radius:50%;

    background:radial-gradient(circle,#00C6FF33,transparent 70%);

    top:-200px;

    right:-150px;

    filter:blur(80px);

}


/* Header */

header{

    position:sticky;

    top:0;

    z-index:999;

    backdrop-filter:blur(18px);

    background:rgba(8,10,18,.75);

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

}


/* Navbar */

.navbar{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}


.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:24px;

    font-weight:700;

}


.logo-box{

    width:45px;

    height:45px;

    border-radius:10px;

    background:linear-gradient(135deg,#00E5FF,#2196F3);

    color:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

}


/* Navigation */

nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav a{

    text-decoration:none;

    color:#ccc;

    transition:.3s;

}

nav a:hover,

.active{

    color:#00D9FF;

}


/* Buttons */

.btn-primary{

    text-decoration:none;

    padding:14px 28px;

    background:linear-gradient(90deg,#00C6FF,#0072FF);

    border-radius:10px;

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,170,255,.35);

}


.btn-outline{

    padding:14px 28px;

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

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;

}

.btn-outline:hover{

    background:#00C6FF;

    border-color:#00C6FF;

}


/* Hero */

.hero{

    padding:90px 0;

}


.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}


.version{

    display:inline-block;

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

    border-radius:50px;

    padding:10px 18px;

    color:#7FEFFF;

    margin-bottom:25px;

    font-size:14px;

}


.hero h1{

    font-size:76px;

    line-height:1.05;

    font-weight:800;

}


.hero h1 span{

    display:block;

    background:linear-gradient(90deg,#00E5FF,#00A2FF);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}


.hero p{

    margin-top:30px;

    color:#B8C3D8;

    font-size:20px;

    max-width:650px;

}


.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

}


.hero-tags{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:45px;

}


.hero-tags span{

    padding:10px 18px;

    border-radius:30px;

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

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

    color:#7AE7FF;

}


/* Profile */

.profile-card{

    width:520px;

    height:520px;

    margin:auto;

    position:relative;

}


.circle{

    position:absolute;

    inset:0;

    border-radius:50%;

    background:

    linear-gradient(135deg,#009DFF,#7B2DFF);

    filter:blur(25px);

    opacity:.6;

}


.profile-card img{

    position:absolute;

    inset:15px;

    width:490px;

    height:490px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid #111827;

}


/* Terminal */

.terminal-section{

    padding:100px 0;

}


.terminal{

    border-radius:18px;

    overflow:hidden;

    background:#0E1628;

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

}


.terminal-header{

    display:flex;

    gap:10px;

    padding:18px;

    background:#1A2437;

}


.dot{

    width:14px;

    height:14px;

    border-radius:50%;

}

.red{background:#FF5F56;}
.yellow{background:#FFBD2E;}
.green{background:#27C93F;}

.terminal-body{

    padding:35px;

    font-family:monospace;

    font-size:18px;

    color:#00FF88;

    min-height:220px;

}


/* Stats */

.stats{

    padding:90px 0;

}


.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


.stat-card{

    text-align:center;

    padding:45px;

    border-radius:20px;

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

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

    transition:.3s;

}


.stat-card:hover{

    transform:translateY(-8px);

    border-color:#00D9FF;

}


.stat-card h2{

    font-size:46px;

    color:#00D9FF;

}


.stat-card p{

    margin-top:15px;

    color:#9DB0CC;

}


/* Why */

.why{

    padding:110px 0;

}


.why h2{

    text-align:center;

    font-size:46px;

    margin-bottom:70px;

}


.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.card{

    padding:40px;

    border-radius:22px;

    background:#0E1628;

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

    transition:.35s;

}


.card:hover{

    transform:translateY(-10px);

    border-color:#00D9FF;

    box-shadow:0 20px 45px rgba(0,160,255,.15);

}


.card h3{

    margin-bottom:20px;

    font-size:24px;

}


.card p{

    color:#AAB8D0;

}


/* Footer */

footer{

    margin-top:100px;

    padding:60px 0;

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

    text-align:center;

}


footer h3{

    font-size:34px;

    margin-bottom:15px;

}


footer p{

    color:#8EA0BD;

    margin-top:10px;

}

/* ===========================
   NAVBAR
=========================== */

#header{

    position:sticky;

    top:0;

    z-index:999;

    backdrop-filter:blur(18px);

    background:rgba(5,10,20,.85);

    transition:.4s;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    color:white;

    text-decoration:none;

    font-weight:700;

    font-size:24px;

}

.logo-box{

    width:46px;

    height:46px;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#00D2FF,#007CF0);

    color:white;

}

nav ul{

    display:flex;

    gap:35px;

    list-style:none;

}

nav ul li a{

    color:#cfd8dc;

    text-decoration:none;

    transition:.3s;

    position:relative;

}

nav ul li a:hover{

    color:#00D9FF;

}

nav ul li a::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    background:#00D9FF;

    left:0;

    bottom:-6px;

    transition:.3s;

}

nav ul li a:hover::after{

    width:100%;

}

.hamburger{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

}

.hamburger span{

    width:28px;

    height:3px;

    background:white;

    transition:.3s;

}

.mobile-open{

    right:0!important;

}


/* ==================================
Premium Hero
================================== */

.hero{

padding:120px 0;

}

.hero-badge{

display:inline-block;

padding:10px 18px;

background:#101A2A;

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

border-radius:30px;

margin-bottom:30px;

color:#6CE8FF;

font-size:14px;

}

.hero h1{

font-size:74px;

font-weight:800;

line-height:1.1;

margin-bottom:30px;

}

.hero h1 span{

color:#00D9FF;

display:block;

}

.hero p{

font-size:20px;

color:#B9C6D8;

max-width:650px;

margin-bottom:40px;

}

.hero-users{

display:flex;

align-items:center;

gap:18px;

margin-top:45px;

}

.avatars{

display:flex;

}

.avatars img{

width:45px;

height:45px;

border-radius:50%;

border:3px solid #070B13;

margin-left:-12px;

}

.avatars img:first-child{

margin-left:0;

}

.hero-users span{

color:#B5C4D4;

}

.terminal-window{

background:#08111D;

border-radius:18px;

overflow:hidden;

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

box-shadow:0 25px 70px rgba(0,0,0,.45);

}

.terminal-top{

padding:18px;

display:flex;

gap:10px;

background:#121C2B;

}

.terminal-window pre{

padding:35px;

font-size:16px;

font-family:monospace;

color:#52FF9D;

min-height:420px;

white-space:pre-wrap;

}
.trusted{

padding:100px 0;

}

.trusted h2{

text-align:center;

margin-bottom:60px;

font-size:42px;

}

.tech-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.tech{

padding:35px;

background:#101826;

border-radius:16px;

text-align:center;

font-size:20px;

font-weight:600;

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

transition:.3s;

}

.tech:hover{

transform:translateY(-8px);

border-color:#00D9FF;

box-shadow:0 15px 40px rgba(0,170,255,.15);

}
