/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0d1b2a; /* dark navy */
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between; /* logo left, nav links + button right */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1cc7ae;
}

/* Nav links + login button */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #c0cce0;
  font-weight: 500;
  transition: 0.2s;
}

.nav a:hover {
  color: #1f77ff;
}

/* Login Button Styling */
.nav a.btn {
  padding: 8px 16px;
  background: #1cc7ae;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.2s;
}

.nav a.btn:hover {
  background: #1550cc;
}

/* Prevent hero from being hidden behind fixed nav */
body {
  padding-top: 72px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav {
    gap: 12px;
  }

  .logo {
    font-size: 20px;
  }
}

/* ================== HERO ================== */
.hero {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #1cc7ae;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  color: #ffffff;
}

/* ================== NAVIGATION ================== */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.2s;
}

.nav a:hover {
  color: #1f77ff;
}

.nav .btn {
  padding: 8px 16px;
  background: #1f77ff;
  color: #fff;
  border-radius: 6px;
}

/* ================== SERVICES ================== */
.services {
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

/* ================== PRICING ================== */
.pricing {
  background: #eef2ff;
  padding: 80px 20px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pricing-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.pricing-item h3 {
  margin-bottom: 12px;
}

.pricing-item .price {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-item ul {
  text-align: left;
  margin-bottom: 16px;
}

.pricing-item button {
  background: #1f77ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.pricing-item button:hover {
  background: #1550cc;
}

/* ================== GET STARTED ================== */
.get-started {
  background-color: #0d1b2a;
  padding: 80px 20px;
  text-align: center;
}

.get-started h2 {
  margin-bottom: 16px;
  color: #1cc7ae;
}

.get-started p {
  color: #ffffff;
  margin-bottom: 24px;
}

.get-started .btn-primary {
   padding: 12px 28px;
   font-weight: 600;
   color: #0d1b2a;
 }

/* ================== SECURITY ================== */
.security {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

/* ================== FOUNDER ================== */
.founder {
  padding: 80px 20px;
  text-align: center;
}

.founder-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* ================== CONTACT ================== */
.contact {
  background: #0d1b2a;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.contact a {
  color: #1f77ff;
  text-decoration: none;
  margin: 0 8px;
}

.contact a:hover {
  text-decoration: underline;
}

.footer-nav {
  margin-top: 16px;
}

.footer-nav a {
  margin: 0 8px;
  color: #c0cce0;
}
