/*
Theme Name: SEEC International Theme
Author: SEEC
Version: 1.0
Description: Custom theme for SEEC International
*/
/* ================= ROOT VARIABLES ================= */
:root {
  --navy: #0B1C2D;
  --gold: #C9A44C;
  --platinum: #F7F7F7;
  --dark: #0F172A;
  --muted: #6B7280;
  --border: #E5E7EB;
}

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

/* ================= GLOBAL ================= */
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: #ffffff;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

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

/* ================= HEADER ================= */
.header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap img {
  height: 38px;
}

.logo-wrap span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}

/* ================= NAV ================= */
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

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

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #0B1C2D, #10283f);
  color: #ffffff;
  text-align: center;
  padding: 140px 20px;
}

.hero-logo {
  height: 80px;
  margin-bottom: 25px;
}

.hero-sub {
  color: var(--gold);
  margin: 10px 0;
}

.hero-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #d6d6d6;
}

/* ================= BUTTONS ================= */
.btn-primary,
.btn-secondary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 36px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ================= TRUST TEXT ================= */
.trust {
  margin-top: 25px;
  font-size: 14px;
  color: #cbd5e1;
}

/* ================= SECTIONS ================= */
section {
  padding: 90px 0;
}

/* ================= GRIDS & CARDS ================= */
.metrics,
.divisions,
.contact {
  background: var(--platinum);
}

.metrics-grid,
.about-grid,
.division-grid,
.industry-grid {
  display: grid;
  gap: 30px;
}

.metrics-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-grid,
.division-grid {
  grid-template-columns: repeat(3, 1fr);
}

.industry-grid {
  grid-template-columns: repeat(3, 1fr);
}

.metric-card,
.about-card,
.division-card,
.industry-grid div {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 30px;
  text-align: center;
}

/* ================= SECTION TITLES ================= */
.section-title {
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 15px auto 0;
}

/* ================= CTA ================= */
.cta {
  background: var(--navy);
  color: #ffffff;
  text-align: center;
}

.cta p {
  max-width: 700px;
  margin: 20px auto 40px;
  color: #d6d6d6;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--navy);
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ================= HOVER EFFECT ================= */
.hover-rise {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-rise:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* ================= MODAL ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 28, 45, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 2000;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #ffffff;
  padding: 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  border-radius: 6px;
}

.modal-btn {
  display: block;
  margin: 15px 0;
  padding: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

.modal-call {
  background: var(--gold);
  color: var(--navy);
}

.modal-email {
  background: var(--navy);
  color: #ffffff;
}

.modal-close {
  margin-top: 20px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .metrics-grid,
  .about-grid,
  .division-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .metrics-grid,
  .about-grid,
  .division-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }
}
