* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.narrow {
  max-width: 800px;
}

/* Header */
.header {
  background: #0b0f14;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
}

.logo img {
  height: 42px;
  width: auto;
}

nav a {
  color: #fff;
  margin-left: 1.2rem;
  text-decoration: none;
  font-size: 0.95rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0b0f14, #1a2230);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 800px;
  margin: auto;
}

.hero-small {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 1rem 0 2rem;
}

.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.65);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 18vh;
}


.btn-primary {
  display: inline-block;
  background: #1f7cff;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section.light {
  background: #f6f7f9;
}

h2 {
  margin-bottom: 1.5rem;
}

/* Lists */
.list {
  max-width: 700px;
  margin: auto;
}

.list li {
  margin-bottom: 0.6rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Process */
.process {
  display: grid;
  gap: 1.2rem;
}

/* Footer */
.footer {
  background: #0b0f14;
  color: #aaa;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-top: 0.4rem;
  padding: 0.7rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1f7cff;
}

.contact-form button {
  margin-top: 1rem;
  width: fit-content;
}
