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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #f7f8fb;
  color: #111827;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

section {
  padding: 3.5rem 0;
}

h1,
h2,
h3 {
  color: #0b2b5a;
  font-weight: 600;
}

/* ============ NAVBAR ============ */
header {
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 0 0 2px #e5f4ea;
}

.nav-text {
  line-height: 1.1;
}

.nav-text .title {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0b2b5a;
}

.nav-text .tagline {
  font-size: 0.75rem;
  color: #6b7280;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  color: #1f2933;
}

.nav-links a.active {
  color: #2da34a;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: #2da34a;
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  font-size: 0.8rem;
  background: #f9fafb;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.6rem;
}

/* ============ HERO ============ */
.hero {
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: #e6f6eb;
  color: #166534;
  font-size: 0.75rem;
  margin-bottom: 0.9rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2da34a;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.hero h1 span {
  color: #2da34a;
}

.hero-subtitle {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
  margin-bottom: 1.7rem;
}

.hero-meta-item span:first-child {
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #9ca3af;
  letter-spacing: 0.08em;
}

.hero-meta-item span:last-child {
  font-weight: 600;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary {
  background: #0b2b5a;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.25);
}

.btn-primary:hover {
  background: #071b3a;
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

.btn-secondary:hover {
  background: #d1d5db;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Hero card */
.hero-card {
  background: radial-gradient(circle at top left, #12326b 0, #071834 60%);
  color: #ffffff;
  border-radius: 22px;
  padding: 1.9rem 1.7rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.4);
}

.hero-card-logo {
  width: 80px;
  height: 80px;
  border-radius: 26px;
  overflow: hidden;
  background: #020617;
  padding: 8px;
  margin-bottom: 1rem;
}

.hero-card h3 {
  margin-bottom: 0.4rem;
}

.hero-card small {
  display: block;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.hero-card p {
  font-size: 0.85rem;
}

/* ============ GENERIC SECTIONS ============ */
.section-heading {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-heading p {
  color: #6b7280;
  font-size: 0.9rem;
}

.columns-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.text-muted {
  color: #4b5563;
  font-size: 0.95rem;
}

.list-pills {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  font-size: 0.78rem;
  padding: 0.23rem 0.75rem;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

/* Cards / grids */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.card p {
  font-size: 0.9rem;
  color: #4b5563;
}

.badge-small {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin-bottom: 0.2rem;
}

/* Why choose us */
.why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.why-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.why-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e6f6eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #166534;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.contact-card p {
  margin-bottom: 0.6rem;
}

.contact-form {
  background: #f9fafb;
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  border: 1px solid #e5e7eb;
  font-size: 0.86rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.8rem;
}

input,
textarea {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

/* Industries / tags */
.tag-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tag {
  background: #f9fafb;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  font-size: 0.8rem;
  border: 1px solid #e5e7eb;
}

/* Footer */
footer {
  background: #020617;
  color: #9ca3af;
  font-size: 0.8rem;
  padding: 1.8rem 0;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid,
  .columns-2,
  .cards-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-grid {
    gap: 1.3rem;
  }

  .tag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-points {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 0.7rem 1.2rem 1rem;
    display: none;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 3rem 0;
  }
}

