:root {
  --primary: #1e40af;
  --accent: #38bdf8;
  --dark: #020617;
  --light: #f8fafc;
  --soft-blue: #eef2ff;
  --soft-slate: #f1f5f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: white;
}

.section-title,
.hero-title,
.sub-title,
h3,
h4 {
  font-family: 'Manrope', sans-serif;
}


/* NAV */
.nav {
  position: fixed;
  width: 100%;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  z-index: 1000;
}

nav a {
  font-weight: 500;
  color: #0f172a;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* .logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
} */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 36px;          /* adjust if needed */
  width: auto;
  display: block;
}

@media (max-width: 900px) {
  .logo img {
    height: 30px;
  }
}

nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: #020617;
}

.btn-nav {
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

/* HERO */
/* HERO BACKGROUND IMAGE */
.hero-bg {
  background:
    linear-gradient(rgba(2, 6, 23, 0.15),
      rgba(2, 6, 23, 0.25)),
    url("../images/hero.png") center/cover no-repeat;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-inner {
  max-width: 900px;
  padding: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero-title span {
  color: var(--primary);
}

.hero-text {
  margin: 2rem auto;
  font-size: 1.2rem;
  max-width: 700px;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.2rem;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), #2563eb);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(30, 64, 175, 0.35);
}


/* SECTIONS */
.section {
  padding: 7rem 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: auto;
  margin-bottom: 4rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service-card {
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;

}

/* .service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
} */

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1);
}


.service-card h3 {
  padding: 1.5rem;
}

.service-card p {
  padding: 0 1.5rem 2rem;
}

/* ABOUT */
.dark {
  background: var(--dark);
  color: white;
  border-radius: 15px;
  margin-bottom: 3rem;
  ;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.about-text p {
  padding: .5rem 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.about-stats h3 {
  font-size: 2.5rem;
  color: var(--accent);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: white;
  padding: 6rem 1.5rem;
}

.cta-inner {
  max-width: 600px;
  margin: auto;
  text-align: center;

}

.cta-inner p{
  padding-top:1rem
}
.cta-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}

.cta-form input,
.cta-form textarea {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: none;
}

.cta-form button {
  padding: 1rem;
  background: #051767;
  color: white;
  border: none;
  border-radius: 6px;
}

/* FOOTER */
.footer {
  padding: 1.25rem;
  text-align: center;
}

.footer p {
  font-size: .75rem;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }
}


/* New */

/* CONTENT SECTIONS */
.content-section {
  padding: 6rem 1.5rem;
}


.bg-light {
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

.bg-soft {
  background: linear-gradient(180deg, #f1f5f9, #ffffff);
}

.bg-dark {
  background: linear-gradient(135deg, #020617, #020617);
}


.content-wrap {
  max-width: 1000px;
  margin: auto;
}

.center {
  text-align: center;
}

/* TYPOGRAPHY */


.section-title {
  font-size: clamp(2.2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 2.4rem;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}

.sub-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1.2rem;
}


.light-text {
  color: #e5e7eb;
}

/* LAYOUT */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.two-column h3{
  margin-bottom: 1rem
}
/* LISTS */
.clean-list {
  list-style: none;
  padding: 0;
}

.clean-list li {
  padding: 0.6rem 0;
  font-size: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.two-col-list {
  columns: 2;
  column-gap: 3rem;
}

/* APPROACH */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.approach-grid h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* INDUSTRIES */
.industry-line {
  font-size: 1.05rem;
  font-weight: 500;
  color: #475569;
}

.approach-strip {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid #e2e8f0;
}


/* RESPONSIVE */
@media (max-width: 900px) {

  .two-column,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .two-col-list {
    columns: 1;
  }
}

/* INDUSTRY ICON GRID */
.industry-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2.5rem;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.8rem 1rem;
  border-radius: 14px;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-item img {
  width: 36px;
  height: 36px;
  opacity: 0.85;
}

.industry-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
}

.industry-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.content-section:not(:first-of-type) {
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

/* APPROACH – STATEMENT STRIPS */
.approach-strips {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.approach-strip {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  padding: 1.8rem 2rem;
  background: white;
  border-radius: 12px;
}

.approach-strip h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
}

.approach-strip p {
  margin: 0;
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .approach-strip {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

.approach-strip {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.approach-strip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}


/* COMPANY OVERVIEW – IMPACT SECTION */
.overview-section {
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  padding: 7rem 1.5rem;
}

.overview-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* LEFT SIDE */
.overview-highlight h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.overview-highlight p {
  font-size: 1.1rem;
  color: #334155;
  max-width: 420px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 2.5rem;
}

/* RIGHT SIDE */
.overview-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 2.5rem;
}

.overview-points {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.overview-points div {
  padding-left: 1.2rem;
  border-left: 3px solid #1e40af;
}

.overview-points strong {
  display: block;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.overview-points span {
  font-size: 0.95rem;
  color: #475569;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .overview-wrap {
    grid-template-columns: 1fr;
  }

  .overview-highlight h2 {
    font-size: 2.2rem;
  }
}

/* VISION & MISSION – ELEVATED DESIGN */
.vision-mission-section {
  padding: 7rem 1.5rem;
  background: radial-gradient(
      1200px 400px at 20% -10%,
      rgba(56,189,248,0.15),
      transparent
    ),
    linear-gradient(135deg, #020617, #020617);
}

.vm-wrap {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

/* CARDS */
.vm-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.vm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    rgba(56,189,248,0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vm-card:hover::before {
  opacity: 1;
}

/* TEXT */
.vm-label {
  display: inline-block;
  font-size: 2.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 1rem;
  font-weight: 600;
}

.vm-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.vm-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5f5;
}


/* WHY LUMVERA – CONFIDENCE SECTION */
.why-section {
  padding: 7rem 1.5rem;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

.why-wrap {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.why-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.why-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.4rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 1rem;
}

.why-header p {
  font-size: 1.1rem;
  color: #334155;
  line-height: 1.7;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* ITEMS */
.why-item {
  padding: 2.2rem;
  border-radius: 16px;
  background: white;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item h4 {
font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #0f5499;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 1rem;
    text-align: center;
}

.why-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vm-wrap {
    grid-template-columns: 1fr;
  }
}

.vm-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}
