:root {
  --navy: #1c3a5c;
  --teal: #2a9ab5;
  --light: #40bcd4;
  --gray: #f5f7fa;
  --text: #2d3748;
  --muted: #64748b;
}

/* =============================================
       RESET & BASE
    ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Shared labels / headings */
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy);
}
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover {
  background: var(--teal);
}

/* =============================================
       HEADER / NAVIGATION
       — Edit logo text, nav links here
    ============================================= */
.header {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  line-height: 1;
}
.logo-text strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 2px;
}
.logo-text span {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--teal);
}
.nav .contact-btn {
  background: var(--teal);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.nav .contact-btn:hover {
  background: var(--navy);
  color: #fff;
}

/* =============================================
       HERO SECTION
       — Edit headline, subtext, and CTA buttons
    ============================================= */
.hero {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #0f2641 60%,
    #1a4060 100%
  );
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
/* decorative circles */
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(42, 154, 181, 0.1);
  right: -100px;
  top: -120px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 50px solid rgba(42, 154, 181, 0.07);
  right: 150px;
  bottom: -80px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* HERO LEFT — text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 154, 181, 0.2);
  border: 1px solid rgba(42, 154, 181, 0.4);
  color: var(--light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light);
  display: block;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--light);
}
.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* HERO RIGHT — card */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(8px);
}
.hero-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}
.check {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}
.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-contact a {
  color: var(--light);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =============================================
       TRUST BAR
       — Edit numbers/stats here
    ============================================= */
.trust-bar {
  background: var(--gray);
  padding: 36px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-stat {
  text-align: center;
}
.trust-stat h3 {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.trust-stat h3 span {
  color: var(--teal);
}
.trust-stat p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}
.trust-divider {
  width: 1px;
  height: 48px;
  background: #d1dae8;
}

/* =============================================
       SERVICES SECTION
       — Add, edit, or remove service cards here
    ============================================= */
.services {
  padding: 90px 0;
  background: #fff;
}
.services .section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 34px 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(42, 154, 181, 0.12);
  transform: translateY(-5px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.svc-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e8f4f8, #ceeaf2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================
       WHY CHOOSE US SECTION
       — Edit the value propositions here
    ============================================= */
.why {
  padding: 90px 0;
  background: var(--gray);
}
.why .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-visual {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 20px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.07);
  right: -60px;
  bottom: -60px;
}
.why-visual-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px 22px;
}
.why-visual-item span {
  font-size: 26px;
}
.why-visual-item div strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.why-visual-item div p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin: 0;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-num {
  width: 38px;
  height: 38px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.why-point h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.why-point p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================
       HOW WE WORK SECTION (Process Steps)
       — Edit steps here
    ============================================= */
.process {
  padding: 90px 0;
  background: #fff;
}
.process .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
/* connecting line */
.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px #fff;
}
.step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* =============================================
       WHO WE SERVE (Target Clients)
       — Edit industries here
    ============================================= */
.serve {
  padding: 90px 0;
  background: var(--navy);
}
.serve .section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.serve .section-header .label {
  color: var(--light);
}
.serve .section-header .section-title {
  color: #fff;
}
.serve .section-header .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.serve-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.2s;
}
.serve-card:hover {
  background: rgba(42, 154, 181, 0.2);
  border-color: var(--teal);
}
.serve-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.serve-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.serve-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* =============================================
       CTA BANNER
       — Edit the CTA headline and button here
    ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
}
.cta-banner .btn-outline {
  border-color: #fff;
  color: #fff;
  padding: 14px 36px;
  font-size: 16px;
}
.cta-banner .btn-outline:hover {
  background: #fff;
  color: var(--navy);
}

/* =============================================
       CONTACT SECTION
       — Edit contact info and form here
    ============================================= */
.contact {
  padding: 90px 0;
  background: #fff;
}
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-left {
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.c-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e8f4f8, #ceeaf2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.contact-item p,
.contact-item a {
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}
.contact-item a:hover {
  color: var(--teal);
}

/* FORM */
.contact-form {
  background: var(--gray);
  border-radius: 16px;
  padding: 40px;
}
.contact-form h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d1dae8;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 14px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--teal);
}
.contact-form textarea {
  height: 120px;
  resize: vertical;
}
.contact-form button {
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.contact-form button:hover {
  background: var(--navy);
}

/* =============================================
       FOOTER
       — Edit links and copyright here
    ============================================= */
.footer {
  background: #0a1e36;
  color: #8ba3be;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-text strong {
  color: #fff;
}
.footer-brand p {
  font-size: 14px;
  color: #6b89a5;
  margin-top: 14px;
  line-height: 1.75;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #8ba3be;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: #6b89a5;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: #3a5570;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: #3a5570;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--light);
}
.logo-wrapper {
  max-width: 280px;
}

.vignix-logo {
  width: 10%;
  height: auto;
  display: block;

  background: transparent;
  image-rendering: optimizeQuality;
}

/* Optional visual fallback if the image has a white background and you cannot provide a transparent PNG.
   Use by adding class "vignix-logo--blend" to the <img> (visual hack, not a true removal). */
.vignix-logo--blend {
  mix-blend-mode: multiply;
}
/* =============================================
       RESPONSIVE (Mobile)
    ============================================= */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why .container {
    grid-template-columns: 1fr;
  }
  .why-visual {
    display: none;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .serve-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact .container {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .nav a:not(.contact-btn) {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .trust-divider {
    display: none;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .serve-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
