*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Segoe UI", Arial, sans-serif;
}

body{
background:#f5f7fb;
color:#0f172a;
}


.navbar{
position:sticky;
top:0;
background:linear-gradient(90deg,#0b1e36,#102a44);
z-index:1000;
}

.nav-container{
max-width:1300px;
margin:auto;
padding:18px 30px;
display:flex;
justify-content:space-between;
align-items:center;
}

.nav-logo{
color:#fff;
font-size:20px;
font-weight:600;
}

.nav-links a{
color:#e5e7eb;
margin:0 12px;
text-decoration:none;
font-weight:500;
}

.nav-links a.active,
.nav-links a:hover{
color:#60a5fa;
}


.page{
padding:80px 6% 100px;
}

.page-title{
text-align:center;
font-size:38px;
color:#0b1e36;
}

.page-subtitle{
text-align:center;
max-width:820px;
margin:14px auto 50px;
color:#64748b;
}


.stats{
display:flex;
justify-content:center;
gap:20px;
margin-bottom:50px;
flex-wrap:wrap;
}

.stat{
background:white;
padding:20px 30px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
}

.stat h2{
color:#3b82f6;
}


.section-title{
text-align:center;
font-size:28px;
margin-bottom:30px;
color:#0b1e36;
}

.graph-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
margin-bottom:40px;
}

.graph-card{
background:white;
padding:20px;
border-radius:16px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.graph-card img{
width:100%;
border-radius:10px;
margin-bottom:10px;
}


.rating-breakdown{
max-width:700px;
margin:40px auto;
}

.bar{
margin-bottom:20px;
}

.progress{
background:#e2e8f0;
height:10px;
border-radius:20px;
overflow:hidden;
}

.progress div{
height:100%;
background:#3b82f6;
border-radius:20px;
animation:grow 1.5s ease forwards;
}

@keyframes grow{
from{width:0}
}


.reviews{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.card{
background:white;
padding:25px;
border-radius:16px;
text-align:center;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.card img{
width:80px;
height:80px;
border-radius:50%;
margin-bottom:10px;
}

.stars{
color:gold;
margin:10px 0;
font-size:18px;
}


.footer{
background:#0b1e36;
color:#fff;
text-align:center;
padding:22px;
margin-top:60px;
}


@media(max-width:768px){
.page-title{
font-size:28px;
}
}


:root {
  --navy-dark: #0f172a;
  --navy: #1e3a8a;
  --accent: #60a5fa;
  --bg: #ffffff;
}

footer, .footer {
  background: #0f172a !important;
  color: white !important;
  text-align: center !important;
  padding: 20px !important;
  font-size: 16px !important;
}

.navbar {
  background: rgba(15, 23, 42, 0.95) !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #60a5fa !important;
}


@media (min-width: 901px) {
  .nav-container, .navbar-container {
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 18px 30px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
    min-height: 70px !important;
  }
}

