/* =====================
   VARIABLES
===================== */
:root {
  --dark: #020617;
  --blue: #1e3a8a;
  --teal: #2dd4bf;
  --gray: #64748b;
  --light: #f8fafc;

  --brand-blue: #2596be;
  --brand-green: #7fc353;
}

/* =====================
   RESET & BASE
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #0f172a;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

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

/* =====================
   TYPOGRAPHY
===================== */
h1, h2, h3, h4 {
  margin: 0 0 14px;
  font-weight: 700;
}

h1 span,
h2 span {
  color: var(--brand-green);
}

p {
  margin: 0 0 16px;
  /* color: #475569; */
  color:white;
}

.lead {
  font-size: 17px;
  font-weight: 500;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* =====================
   HEADER
===================== */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 70px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  padding: 120px 0;
  color: #ffffff;
}

.hero-bg {
  background: url("../assets/images/head.png") center/cover fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg, rgba(30, 58, 138, .85), rgb(126 129 143 / 90%));
}

.hero-content {
  position: relative;
  max-width: 900px;
}

/* =====================
   INSURANCE SERVICES
===================== */
.insurance-services {
  padding: 20px 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.insurance-grid  p {
  margin: 0 0 16px;
 color: #475569;
  
}
.insurance-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 36px;
  box-shadow: 0 30px 60px rgba(2,6,23,.08);
  border-top: 6px solid var(--blue);
  transition: transform .4s ease, box-shadow .4s ease;
}

.insurance-card:nth-child(2) {
  border-top-color: var(--teal);
}

.insurance-card:nth-child(3) {
  border-top-color: #0ea5e9;
}

.insurance-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(2,6,23,.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--blue);
}

.insurance-card ul {
  padding-left: 18px;
}

.insurance-card li {
  margin-bottom: 8px;
  color: #334155;
}

/* =====================
   IT SERVICES
===================== */
.it-services {
  position: relative;
  padding: 110px 0;
  color: #ffffff;
  overflow: hidden;
}

/* Background image only blurred */
.it-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.it-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.15);
}

/* Overlay */
.it-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(2,6,23,.75); */
  z-index: 1;
}

/* Content layer */
.it-services .container {
  position: relative;
  z-index: 2;
}

.it-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.it-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 32px;
}

.it-pillar {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  border-radius: 22px;
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .4s ease;
}

.it-pillar:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,.15);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.pillar-icon svg {
  stroke: var(--teal);
}

/* =====================
   WORKSHOPS
===================== */
.ai-workshops {
  padding: 20px 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.ai-workshops p{
	color:black;
}
.workshop-header {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.workshop-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.workshop-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 36px;
  box-shadow: 0 30px 60px rgba(2,6,23,.08);
  transition: all .45s ease;
}

.workshop-card.highlight {
  border-top: 4px solid var(--teal);
}

.workshop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 100px rgba(2,6,23,.12);
}

.workshop-card .step {
  position: absolute;
  top: -18px;
  right: 24px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
}

/* =====================
   CTA & FOOTER
===================== */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--blue), var(--dark));
  color: #ffffff;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 40px;
  background: var(--teal);
  color: #022c22;
  border-radius: 12px;
  font-weight: 600;
}

.footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 32px;
  text-align: center;
}

/* =====================
   ANIMATIONS
===================== */
.animate {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .8s ease forwards;
}

.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .workshop-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 16px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 90px 0;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 30px;
  }

  .insurance-card,
  .workshop-card,
  .it-pillar {
    padding: 36px 24px;
  }
}
/* =====================
   HOW WE WORK
===================== */
.how-we-work {
  padding: 110px 0;
  background: #ffffff;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 80px;
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}

/* Card */
.process-step {
  background: #ffffff;
  border-radius: 22px;
  padding: 44px 32px;
  box-shadow: 0 25px 60px rgba(2,6,23,.08);
  border-top: 4px solid var(--brand-green);
  transition: all .4s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(2,6,23,.12);
}

/* Step number */
.process-step .step {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--brand-green);
  display: block;
  margin-bottom: 16px;
}

/* Text */
.process-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--blue);
}

.process-step p {
  font-size: 14px;
  color: #475569;
}

/* Mobile */
@media (max-width: 768px) {
  .how-we-work {
    padding: 80px 0;
  }

  .process-step {
    padding: 32px 24px;
  }
}


/* Fix SVG icon color consistency */
.insurance-grid svg,
.insurance-grid svg path {
  fill: currentColor !important;
  stroke: currentColor !important;
}

.insurance-grid {
  color: var(--blue);
}