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

/* BASE */
body { 
  font-family:"Segoe UI", Arial, sans-serif; 
  background:#ffffff; /* clean white background */
  color:#2c3e50; 
}

/* HERO */
.hero { 
  height:100vh; 
  background:linear-gradient(135deg,#e1f7ff,#d3edff); /* soft white → light blue gradient */
  display:flex; 
  align-items:center; 
  justify-content:center; 
  padding:40px; 
}

.hero-box { 
  max-width:650px; 
  background:rgba(33, 150, 243, 0.08); /* subtle blue tint */
  padding:50px; 
  border-radius:18px; 
  text-align:center; 
  color:#1565c0; /* deep blue text */
}

.hero-box h1 { 
  font-size:42px; 
  margin-bottom:20px; 
  color:#0d47a1; /* darker blue for headings */
}

.hero-text { 
  font-size:17px; 
  line-height:1.6; 
  margin-bottom:35px; 
  opacity:0.9; 
  color:#1976d2; /* medium blue for body text */
}

.hero-info { 
  display:flex; 
  justify-content:space-around; 
  margin-bottom:40px; 
}

.hero-info h3 { 
  font-size:26px; 
  color:#1565c0; 
}

.hero-info span { 
  font-size:13px; 
  opacity:0.85; 
  color:#1e88e5; 
}

.primary-btn { 
  padding:14px 40px; 
  font-size:16px; 
  border-radius:30px; 
  border:none; 
  background:#2196f3; /* vibrant blue */
  color:white; 
  cursor:pointer; 
  transition:background 0.3s ease, transform 0.2s ease;
}

.primary-btn:hover { 
  background:#1565c0; /* darker blue on hover */
  transform:scale(1.05); 
}


/* CONTENT */
.topbar { 
  height:70px; 
  background:#ffffff; 
  display:flex; 
  align-items:center; 
  gap:20px; 
  padding:0 32px; 
  box-shadow:0 2px 10px rgba(0,0,0,0.08); 
}

.logo { 
  font-size:22px; 
  font-weight:600; 
  color:#1565c0; /* deep blue logo */
}

.search-input { 
  flex:1; 
  padding:10px 16px; 
  font-size:15px; 
  border-radius:8px; 
  border:1px solid #bbdefb; /* light blue border */
  background:#f5fbff; /* subtle bluish white background */
}

.page { 
  max-width:1200px; 
  margin:0 auto; 
  padding:40px 32px; 
}

.page-header { 
  margin-bottom:30px; 
}

.page-header h2 { 
  font-size:28px; 
  margin-bottom:6px; 
  color:#0d47a1; /* dark blue heading */
}

.page-header p { 
  font-size:15px; 
  color:#2196f3; /* medium blue subtext */
}

.results-grid { 
  display:grid; 
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); 
  gap:24px; 
}

.result-card { 
  background:#ffffff; 
  padding:22px; 
  border-radius:12px; 
  box-shadow:0 6px 14px rgba(0,0,0,0.08); 
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.result-card:hover { 
  transform:translateY(-4px); 
  box-shadow:0 8px 18px rgba(33,150,243,0.25); /* bluish shadow on hover */
}

.result-card h3 { 
  font-size:18px; 
  margin-bottom:10px; 
  color:#1565c0; /* blue title */
}

.result-card p { 
  font-size:14px; 
  color:#555; 
  line-height:1.5; 
}

.next-section { 
  margin-top:50px; 
  text-align:center; 
}

.secondary-btn { 
  padding:14px 36px; 
  font-size:15px; 
  border-radius:30px; 
  border:none; 
  background:#2196f3; /* vibrant blue button */
  color:#ffffff; 
  cursor:pointer; 
  transition:background 0.3s ease, transform 0.2s ease;
}

.secondary-btn:hover { 
  background:#1565c0; /* darker blue hover */
  transform:scale(1.05); 
}


/* LOADER PAGE */
.loader-page { 
  height:100vh; 
  background:#f4f6f9; 
  display:flex; 
  justify-content:center; 
  align-items:center; 
  flex-direction:column; 
  gap:20px; 
}

.loader-box { 
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  gap:14px; 
  text-align:center; 
}

.loader-page p { 
  font-size:16px; 
  color:#555; 
}

#percent { 
  font-size:28px; 
  font-weight:600; 
  color:#1565c0; /* blue percentage text */
  margin-top:6px; 
}
