/* =========================
   GLOBAL
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f4f7fb;
color:#222;
line-height:1.7;
}

/* =========================
HEADER
========================= */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 0;
background:rgba(10,32,75,.88);
backdrop-filter:blur(12px);
z-index:1000;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:55px;
}

nav ul{
display:flex;
list-style:none;
gap:35px;
}

nav ul li a{
color:#fff;
text-decoration:none;
font-weight:500;
transition:.3s;
}

nav ul li a:hover{
color:#ff4b4b;
}

.login-btn{
padding:12px 30px;
background:#ff4b4b;
color:#fff;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:.3s;
}

.login-btn:hover{
background:#d62828;
}

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

.hero{

height:100vh;

background:url("hero-bg.jpg") center center/cover no-repeat;

position:relative;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

}

.overlay{

position:absolute;

width:100%;

height:100%;

background:linear-gradient(rgba(4,25,65,.75),rgba(4,25,65,.75));

}

.hero-content{

position:relative;

z-index:2;

max-width:850px;

color:#fff;

padding:20px;

animation:fadeUp 1.2s;

}

.hero h1{

font-size:58px;

margin-bottom:25px;

line-height:1.2;

}

.hero p{

font-size:20px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn-primary{

padding:16px 40px;

background:#ff4b4b;

color:white;

text-decoration:none;

border-radius:50px;

transition:.3s;

font-weight:600;

}

.btn-primary:hover{

transform:translateY(-5px);

}

.btn-secondary{

padding:16px 40px;

border:2px solid white;

color:white;

text-decoration:none;

border-radius:50px;

transition:.3s;

font-weight:600;

}

.btn-secondary:hover{

background:white;

color:#0b3a75;

}

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

section{

padding:100px 0;

}

h2{

text-align:center;

font-size:42px;

margin-bottom:25px;

color:#0b3a75;

}

.about p,

.security p{

max-width:900px;

margin:auto;

text-align:center;

font-size:18px;

}

/* =========================
CARDS
========================= */

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

margin-top:50px;

}

.card{

background:white;

padding:40px;

border-radius:20px;

box-shadow:0 10px 35px rgba(0,0,0,.08);

transition:.35s;

text-align:center;

}

.card:hover{

transform:translateY(-12px);

}

.card i{

font-size:45px;

margin-bottom:20px;

color:#ff4b4b;

}

.card h3{

margin-bottom:15px;

color:#0b3a75;

}

/* =========================
STATS
========================= */

.stats{

background:#0b3a75;

color:white;

}

.stat-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

text-align:center;

gap:40px;

}

.stat-grid h2{

color:white;

font-size:52px;

margin-bottom:10px;

}

/* =========================
FAQ
========================= */

.question{

background:white;

padding:25px;

margin:20px auto;

border-radius:15px;

box-shadow:0 5px 20px rgba(0,0,0,.06);

max-width:900px;

}

.question h3{

color:#0b3a75;

margin-bottom:10px;

}

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

form{

max-width:700px;

margin:auto;

display:flex;

flex-direction:column;

gap:20px;

}

input,

textarea{

padding:18px;

border:1px solid #ddd;

border-radius:12px;

font-size:16px;

}

textarea{

height:170px;

resize:none;

}

button{

padding:18px;

background:#ff4b4b;

color:white;

border:none;

font-size:17px;

border-radius:12px;

cursor:pointer;

transition:.3s;

}

button:hover{

background:#d62828;

}

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

footer{

background:#081d46;

padding:35px;

text-align:center;

color:white;

}

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

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}

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

@media(max-width:900px){

.hero h1{

font-size:40px;

}

.hero p{

font-size:18px;

}

nav{

display:none;

}

}













html{

scroll-behavior:smooth;

}

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:#0B3A75;

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#eee;

}

.card{

cursor:pointer;

}

.card:hover{

box-shadow:0 20px 60px rgba(0,0,0,.12);

}

.hero::after{

content:"";

position:absolute;

bottom:0;

left:0;

width:100%;

height:120px;

background:linear-gradient(transparent,#f4f7fb);

}