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

body {
  background: #fff;
  color: #222;
  line-height: 1.6;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #0d2b5c;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #0d2b5c;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #fdd835;
}

.login-link {
  background-color: #fdd835;
  padding: 6px 16px;
  border-radius: 20px;
  color: #000;
  font-weight: 600;
}

.login-link:hover {
  background-color: #fbc02d;
  color: #000;
}


/* Optional for mobile responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}


.hero {
  background: url('img/hero.png') center/cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}


.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero h1 span {
  color: #fdd835;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #fdd835;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

.benefits {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.benefits h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
}

.benefit-item img {
  height: 100px;
  margin-bottom: 20px;
}

.benefit-item p {
  max-width: 200px;
}

.app-preview {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.app-preview .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.app-preview .text-content {
  flex: 1 1 400px;
}

.app-preview .text-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0d2b5c;
}

.app-preview .text-content p {
  font-size: 1rem;
  color: #333;
}

.app-preview .image-content {
  flex: 1 1 50px;
  text-align: center;
}

.app-preview .image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.download-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #1e88e5;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.download-button:hover {
  background-color: #1565c0;
}



.footer {
  background: #0d2b5c;
  color: white;
  padding: 40px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-weight: 600;
}

.footer-info {
  font-size: 0.9rem;
}

.social-icons a {
  margin-right: 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
}

.auth-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #1e88e5, #0d2b5c);
  padding: 20px;
}

.auth-form {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.auth-form h2 {
  margin-bottom: 20px;
  color: #0d2b5c;
}

.auth-form input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.auth-form button {
  width: 100%;
  padding: 12px;
  background-color: #fdd835;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.auth-form button:hover {
  background-color: #fbc02d;
}

.auth-form p {
  margin-top: 15px;
  font-size: 0.9rem;
}

.auth-form a {
  color: #1e88e5;
  text-decoration: none;
}

.dashboard-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 240px;
  background-color: #0d2b5c;
  color: #fff;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

.sidebar-header {
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
}

.sidebar-menu li {
  margin: 20px 0;
}

.sidebar-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.sidebar-menu a:hover {
  color: #fdd835;
}

/* Main content */
.main-content {
  margin-left: 240px;
  flex: 1;
}

.main-content h1, .main

* {
  box-sizing: border-box;
}

.header {
  display: flex;
  align-items: center;
  background: #0d3f7a;
  color: white;
  padding: 10px 20px;
}
.header h1 {
  margin: 0 auto;
  font-size: 16px;
  text-align: center;
}
.back-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.progress-container {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background: #eee;
}
.progress-step {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #bbb;
}
.progress-step.active {
  background: #0d3f7a;
}

.form-container {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
}
.form-container h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
}

form label {
  display: block;
  font-weight: bold;
  margin: 10px 0 5px;
}
form input, form select {
  width: 100%;
  padding: 10px;
  background: #e6f0ff;
  border: none;
  border-radius: 5px;
  margin-bottom: 15px;
}
.row {
  display: flex;
  gap: 10px;
}
.row > div {
  flex: 1;
}
.inline-input {
  display: flex;
  align-items: center;
}
.inline-input input {
  flex: 1;
}
.inline-input span {
  margin-left: 5px;
}

.next-btn {
  background: #ddd;
  color: #333;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  float: right;
  margin-top: 20px;
}
.next-btn:hover {
  background: #ccc;
}

.progress-bar-filled {
  height: 4px;
  background: #70e0e4;
  position: absolute;
  top: 50%;
  left: 16px;
  right: 0;
  z-index: 0;
}

.progress-container {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  background: #eee;
  padding: 20px 40px;
}

.progress-step {
  width: 16px;
  height: 16px;
  background: #bbb;
  border-radius: 50%;
  z-index: 1;
}

.progress-step.active {
  background: #0d3f7a;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.back-btn-dark, .next-btn-dark {
  background: #0d3f7a;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
}
.back-btn-dark:hover, .next-btn-dark:hover {
  background: #094173;
}

textarea {
  width: 100%;
  padding: 10px;
  background: #e6f0ff;
  border: none;
  border-radius: 5px;
  resize: none;
  margin-bottom: 15px;
}

.progress-bar-filled {
  height: 4px;
  background: #70e0e4;
  position: absolute;
  top: 50%;
  left: 16px;
  right: 0;
  z-index: 0;
}

a {
  text-decoration: none;
}


