@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fdfdfd;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.grid {
  display: grid;
  gap: 2rem;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
.header {
  background: #0b132b;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-box {
  background: #fca311;
  color: #fff;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  font-weight: bold;
}
.nav a {
  margin-left: 1.5rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s;
}
.nav a:hover {
  color: #fca311;
}
.hero {
  padding: 6rem 2rem;
  background: linear-gradient(to right, #14213d, #0b132b);
  color: #fff;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  color: #ddd;
}
.btn {
  display: inline-block;
  padding: 0.9rem 1.7rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 1rem;
  cursor: pointer;
}
.btn-primary {
  background: #fca311;
  color: #0b132b;
}
.btn-primary:hover {
  background: #ffba3b;
}
.btn-outline {
  border: 2px solid #fca311;
  color: #fca311;
}
.btn-outline:hover {
  background: #fca311;
  color: #0b132b;
}
.features {
  padding: 5rem 2rem;
  background: #f4f7fb;
}
.features .grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #14213d;
}
.card .subtitle {
  color: #555;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.card ul li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}
pre {
  background: #0b132b;
  color: #fca311;
  padding: 1rem;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.9rem;
  margin-top: 1rem;
  overflow-x: auto;
}
.cta {
  padding: 5rem 2rem;
  background: #fca311;      
  color: #0b132b;        
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.cta p {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;               
  flex-wrap: wrap;         
  margin-top: 1rem;
}
.cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-buttons .btn-primary {
  background: #0b132b;
  color: #ffffff;
}
.cta-buttons .btn-primary:hover {
  background: #142c66;
  transform: scale(1.05);
}
.cta-buttons .btn-outline {
  border: 2px solid #0b132b;
  color: #0b132b;
  background: transparent;
}
.cta-buttons .btn-outline:hover {
  background: #0b132b;
  color: #ffffff;
  transform: scale(1.05);
}
.footer {
  background: #0b132b;
  color: #fff;
  padding: 4rem 2rem;
}
.footer .grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.footer h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fca311;
}
.footer ul li {
  margin-bottom: 0.5rem;
}
.footer a {
  color: #ccc;
  transition: color 0.3s;
}
.footer a:hover {
  color: #fca311;
}
.footer-note {
  text-align: center;
  margin-top: 2rem;
  color: #aaa;
  font-size: 0.9rem;
}
