/* ===========================================
   TRUSTNEST AI PREMIUM WEBSITE
=========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

body{

font-family:'Poppins',sans-serif;
background:#061120;
color:#fff;
overflow-x:hidden;

}

.container{

width:90%;
max-width:1300px;
margin:auto;

}

a{

text-decoration:none;
color:white;

}

ul{

list-style:none;

}

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

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(5,15,30,.92);
backdrop-filter:blur(15px);
border-bottom:1px solid rgba(255,255,255,.08);

}

.nav{

height:90px;
display:flex;
justify-content:space-between;
align-items:center;

}

.logo{

font-size:40px;
font-weight:800;

}

.logo span{

color:#2fb5ff;

}

.nav ul{

display:flex;
align-items:center;
gap:40px;

}

.nav ul li{

list-style:none;

}

.nav ul li a{

font-size:18px;
font-weight:500;
transition:.3s;

}

.nav ul li a:hover{

color:#2fb5ff;

}

.nav-btn{

padding:15px 30px;
background:#2563eb;
border-radius:10px;
font-weight:600;
transition:.3s;

}

.nav-btn:hover{

background:#1d4ed8;
transform:translateY(-3px);

}

/* ================= HERO ================= */

.hero{

min-height:100vh;
padding-top:150px;
display:flex;
align-items:center;

background:

radial-gradient(circle at top,#2749bb 0%,transparent 45%),
linear-gradient(#071120,#071120);

}

.hero-grid{

display:grid;
grid-template-columns:1fr 470px;
gap:80px;
align-items:center;

}

.badge{

display:inline-block;
padding:12px 28px;
background:#153764;
border-radius:100px;
font-size:18px;
margin-bottom:35px;

}

.hero h1{
    font-size:68px;
    font-weight:800;
    line-height:1.1;
    max-width:650px;
    margin:30px 0;
}


.hero p{

font-size:22px;
color:#cbd5e1;
max-width:650px;
line-height:1.7;
margin-bottom:40px;

}

.hero-buttons{

display:flex;
gap:20px;
margin-top:45px;

}

.primary-btn{

padding:18px 40px;
background:#2563eb;
border-radius:12px;
font-size:18px;
font-weight:600;
transition:.3s;

}

.primary-btn:hover{

transform:translateY(-4px);
box-shadow:0 20px 40px rgba(37,99,235,.35);

}

.secondary-btn{

padding:18px 40px;
border:2px solid #2fb5ff;
border-radius:12px;
font-size:18px;
font-weight:600;
transition:.3s;

}

.secondary-btn:hover{

background:#2fb5ff;

}

.hero-stats{

display:flex;
gap:60px;
margin-top:60px;

}

.hero-stats h2{

font-size:40px;
color:#2fb5ff;

}

.hero-stats span{

color:#c7d2e4;

}

/* ================= DASHBOARD ================= */

.dashboard-card{

background:rgba(255,255,255,.05);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,.08);
border-radius:28px;
padding:40px;
box-shadow:0 20px 70px rgba(0,0,0,.45);

}

.dashboard-top{

display:flex;
gap:10px;
margin-bottom:30px;

}

.dot{

width:13px;
height:13px;
border-radius:50%;

}

.red{

background:#ff605c;

}

.yellow{

background:#ffbd44;

}

.green{

background:#00ca4e;

}

.dashboard-card h2{

font-size:42px;
margin-bottom:15px;

}

.dashboard-card p{

line-height:1.8;
color:#d3d9e7;

}

.security-score{

margin-top:30px;

}

.security-score span{

color:#aebed7;

}

.security-score h1{

margin-top:15px;
font-size:70px;
color:#2fb5ff;

}

.progress{

width:100%;
height:12px;
background:#1b2b44;
border-radius:100px;
margin-top:25px;

}

.progress-fill{

width:98%;
height:100%;
border-radius:100px;
background:linear-gradient(90deg,#2fb5ff,#2563eb);

}

.status{

display:flex;
justify-content:space-between;
margin-top:35px;

}

.status strong{

display:block;
margin-top:8px;
color:#2fb5ff;

}

/* ===============================
   COMMON SECTIONS
================================== */

section{

padding:110px 0;

}

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title h2{

font-size:48px;
font-weight:700;
margin-bottom:15px;

}

.section-title p{

font-size:20px;
color:#b9c5d9;

}

/* ===============================
   TRUSTED
================================== */

.trusted{

background:#081423;
padding:70px 0;

}

.trusted h3{

text-align:center;
font-size:26px;
margin-bottom:45px;
font-weight:600;

}

.companies{

display:flex;
justify-content:center;
align-items:center;
gap:60px;
flex-wrap:wrap;

}

.companies span{

font-size:24px;
font-weight:600;
color:#7aa8ff;
transition:.3s;

}

.companies span:hover{

color:white;
transform:translateY(-5px);

}

/* ===============================
   PRODUCTS
================================== */

.cards{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;

}

.card{

background:#0b1930;
border-radius:22px;
padding:40px;
border:1px solid rgba(255,255,255,.08);
transition:.35s;

}

.card:hover{

transform:translateY(-12px);
box-shadow:0 20px 45px rgba(37,99,235,.28);

}

.card h3{

font-size:30px;
margin-bottom:20px;
color:#2fb5ff;

}

.card p{

font-size:18px;
line-height:1.8;
color:#d1d8e5;

}

/* ===============================
   FEATURES
================================== */

.feature-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;

}

.feature{

background:#0b1930;
padding:35px;
border-radius:22px;
border:1px solid rgba(255,255,255,.08);
transition:.35s;

}

.feature:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(37,99,235,.25);

}

.feature h3{

font-size:28px;
margin-bottom:18px;
color:#2fb5ff;

}

.feature p{

font-size:18px;
line-height:1.8;
color:#d3d9e6;

}

/* ===============================
   ABOUT
================================== */

.about{

text-align:center;

}

.about h2{

font-size:48px;
margin-bottom:30px;

}

.about p{

max-width:900px;
margin:auto;
font-size:21px;
line-height:2;
color:#c8d3e6;

}

/* ===============================
   CONTACT
================================== */

.contact{

text-align:center;

}

.contact h2{

font-size:48px;
margin-bottom:25px;

}

.contact p{

font-size:20px;
margin-top:15px;
color:#cfd7e5;

}

.contact .primary-btn{

display:inline-block;
margin-top:40px;

}

/* ===============================
   FOOTER
================================== */

footer{

background:#050d18;
padding:40px 0;
text-align:center;
border-top:1px solid rgba(255,255,255,.08);

}

footer p{

color:#9caec7;
font-size:17px;

}

footer span{

color:#2fb5ff;
font-weight:600;

}

/* ===============================
   SCROLL ANIMATION
================================== */

.fade{

opacity:0;
transform:translateY(40px);
transition:all .8s ease;

}

.fade.show{

opacity:1;
transform:translateY(0);

}

/* ===============================
   CUSTOM SCROLLBAR
================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#081423;

}

::-webkit-scrollbar-thumb{

background:#2563eb;
border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

background:#3b82f6;

}
      /* ===============================
        RESPONSIVE
      ================================== */

@media(max-width:1100px){

.hero{

grid-template-columns:1fr;
text-align:center;

}

.hero-right{

margin-top:60px;

}

.cards{

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

}

.feature-grid{

grid-template-columns:1fr;

}

}

@media(max-width:900px){

nav{

flex-direction:column;
gap:20px;

}

nav ul{

flex-wrap:wrap;
justify-content:center;

}

.hero h1{

font-size:60px;

}

.cards{

grid-template-columns:1fr;

}

.section-title h2{

font-size:38px;

}

.about h2,
.contact h2{

font-size:38px;

}

}

@media(max-width:600px){

.container{

width:92%;

}

.hero{

padding:120px 0;

}

.hero h1{

font-size:48px;
line-height:1.1;

}

.hero p{

font-size:18px;

}

.buttons{

flex-direction:column;

}

.primary-btn,
.secondary-btn{

width:100%;
text-align:center;

}

.hero-card{

width:520px;
padding:45px;

}

.hero-card h3{

font-size:32px;

}

.card,
.feature{

padding:28px;

}

.section-title h2{

font-size:34px;

}

.logo{

font-size:38px;

}

nav ul{

gap:18px;

}

nav ul li a{

font-size:18px;

}

}