:root{
  --bg:#ffffff;
  --card:#f3f7fb;
  --accent:#ff7a00;
  --text:#002D62;
  --muted:#587CA0;
  --glass: rgba(0,0,0,0.04);
  --maxw: 1200px;
  --radius:14px;
}

/* Base */
* {
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, Arial, Helvetica, sans-serif;
  margin: 0;
  color: var(--text);
  background: #ffffff;      /* PURE WHITE PAGE BACKGROUND */
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px;
}


/* ============================
   HERO — Clean & Modern
   ============================ */

.hero {
  padding: 44px 20px;
  background: linear-gradient(135deg, #ffedd5 0%, #ffe8c7 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 0px;
}

/* Soft background glow */
.hero::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,122,0,0.15);
  filter: blur(45px);
  pointer-events: none;
}

/* Layout: text + image */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 0;
}

/* Text content */
.hero-copy h1 {
  font-size: 3rem;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--text);
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 20px;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hero-cta .btn.primary {
  background: linear-gradient(90deg, var(--accent), #ff9c43);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(255,122,0,0.18);
  text-decoration: none;
}

.hero-cta .btn.ghost {
  padding: 14px 28px;
  border-radius: 12px;
  background: rgba(255,122,0,0.12);
  color: var(--accent);
  font-weight: 700;
  border: 1px solid rgba(255,122,0,0.20);
  text-decoration: none;
}

/* HERO IMAGE */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-height: 420px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,45,98,0.08);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 20px 12px;
  }
  .hero-image {
    max-height: 320px;
  }
  .hero-copy h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 520px) {
  .hero-cta .btn.primary,
  .hero-cta .btn.ghost {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  .hero-image {
    max-height: 260px;
  }
}


/* --------------WHY CHOOSE SECTION ----------------------- */

.why-choose {
  padding: 50px 28px;
  margin: auto;
}

.why-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin-bottom: 32px;
  position: relative;
}

/* Title underline accent */
.why-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
  display: block;
  margin: 14px auto 0 auto;
}

/* Grid layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* Card styling */
.why-item {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(2,34,70,0.06);
  text-align: center;
  box-shadow: 0 10px 24px rgba(2,34,70,0.04);
  transition: .25s ease;
}

/* Hover effect */
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(2,34,70,0.08);
  border-color: rgba(255,122,0,0.18);
}

/* Icon circle */
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255,122,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  font-size: 26px;
  color: var(--accent);
  box-shadow: 0 8px 20px rgba(255,122,0,0.08);
}

/* Title */
.why-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

/* Text */
.why-item p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------------SERVICES SECTION -------------------- */

/* Outer boxed container */
.services-highlight {
  max-width: var(--maxw);
  margin: 50px auto;
  padding: 40px 28px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 32px rgba(2,34,70,0.04);
  position: relative;
}

/* Small accent stripe at the top */
.services-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 6px;
  background: var(--accent);
  border-radius: 6px 6px 0 0;
}

/* Section heading */
.services-highlight .section-title {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}

/* Underline accent */
.services-highlight .section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--accent);
  margin-top: 10px;
  border-radius: 4px;
}

/* Service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Individual card */
.service-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(2,34,70,0.06);
  box-shadow: 0 8px 18px rgba(2,34,70,0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: 0.25s ease;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(2,34,70,0.12);
  border-color: rgba(255,122,0,0.18);
}

/* Icon + title wrapper */
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon circle */
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,122,0,0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 52px;
  box-shadow: 0 6px 20px rgba(255,122,0,0.08);
}

/* Card title */
.service-card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 700;
}

/* Description */
.card-desc {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Learn more link */
.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,122,0,0.06);
  border: 1px solid rgba(255,122,0,0.16);
  transition: 0.25s ease;
}

/* Hover */
.card-link:hover {
  background: rgba(255,122,0,0.14);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(255,122,0,0.14);
}

/* CTA row */
.services-cta {
  margin-top: 30px;
  text-align: right;
}

/* See all products button */
.services-cta .btn.Primary {
  display: inline-block;
  background: #ff7a00;
  color: #fff;
  padding: 12px 22px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,122,0,0.22);
  transition: 0.25s ease;
}

/* CTA hover */
.services-cta .btn.Primary:hover {
  background: rgba(255,122,0,0.20);
  border-color: rgba(255,122,0,0.35);
  transform: translateY(-3px);
}

/* ============================================
   HOW IT WORKS SECTION — Index Page
   ============================================ */

.process {
  margin: auto;
  padding: 10px 0;
}

/* Title */
.process .section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

/* Accent line under heading */
.process .section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--accent);
  margin: 14px auto 0 auto;
  border-radius: 4px;
}

/* 3-column cards */
.process .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

/* Each step card */
.process .card {
  background: #ffffff;
  padding: 26px 20px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 28px rgba(2,34,70,0.05);
  transition: 0.25s ease;
  position: relative;
  text-align: center;
}

/* Hover effect */
.process .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2,34,70,0.10);
  border-color: rgba(255,122,0,0.22);
}

/* Step number circle */
.process .card::before {
  content: attr(data-step);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: rgba(255,122,0,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(255,122,0,0.20);
}

/* Title */
.process .card h3 {
  margin-top: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

/* Description */
.process .card p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.55;
  margin-top: 8px;
}


/* Testimonials */
.test-grid{display:grid;grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));gap:18px}
.testimonial{background:#f8fbff;padding:18px;border-radius:12px;border-left:4px solid var(--accent);box-shadow:0 6px 20px rgba(2,34,70,0.04)}
.testimonial cite{display:block;margin-top:8px;color:var(--muted);font-size:0.9rem}

/* ============================
   PARTNERS SECTION
============================ */

.partners  {
  background: #fff;
  padding: 40px 28px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 20px rgba(2,34,70,0.04);
  margin: 40px auto;
  text-align: center;
  padding-bottom: 60px;
}

/* Intro paragraph */
.partners-intro {
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Grid of logos */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  margin: 20px 0 30px;
  align-items: center;
}

.partner-card {
  background: #f8fafc;
  padding: 16px 10px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.partner-card img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(45%);
  opacity: 0.9;
  transition: .3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Footnote */
.partners-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
}

/* Bottom CTA */
.partners-cta {
  margin-top: 40px;
  margin-bottom: 60px;
}

.partners-cta .btn.primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(255,122,0,0.15);
  text-decoration: none;
}

.partners-cta .btn.primary:hover {
  background: #e56f00;
}




