:root {
  color-scheme: light;
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-soft: #f1f8ff;
  --surface-strong: #e7eff8;
  --text: #112c44;
  --text-muted: #50667f;
  --accent: #009adf;
  --accent-soft: #e7f4ff;
  --accent-2: #1fa6e3;
  --highlight: #ff7f00;
  --success: #10b981;
  --border: #d7e3f3;
  --shadow: 0 28px 60px rgba(17, 44, 68, 0.08);
  --metric: #2A5982;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  opacity: 0;
  transition: opacity 380ms ease;
}

body.is-visible {
  opacity: 1;
}

.page-transition-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  transition: opacity 280ms ease;
  z-index: 9999;
}

.page-transition-overlay.is-active {
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section--compact {
  padding: 56px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(0, 154, 223, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  transition: color 200ms ease;
}

.navbar__brand:hover {
  color: var(--accent);
}

.navbar__brand img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.95rem;
}

.hero__visual img,
.card__visual,
.product-hero-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: block;
  object-fit: cover;
}

.footer a,
.panel p,
.hero__phone-paragraph,
.section-subtitle,
.hero__text,
.card--service p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.6;
}

.card--service ul {
  margin: 0 0 24px;
  padding-left: 20px;
  list-style: none;
}

.card--service li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}

.card--service li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.card--product p,
.card--metric p,
.card--testimonial p {
  overflow-wrap: anywhere;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 200ms ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
}

/* Dropdown Links */
.dropdown-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text);
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 8px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(0, 154, 223, 0.25);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 154, 223, 0.22);
}

.btn--secondary {
  background: transparent;
  border: 1.6px solid rgba(255, 255, 255, 0.7);
  color: var(--surface);
}

.btn--accent {
  background: var(--highlight);
  color: #fff;
  min-height: 55px;
  padding: 0 42px;
  font-size: 1.125rem;
}

.btn--book-a-call {
  color: var(--text-muted);
  border: 1.6px solid rgba(218, 216, 216, 0.7);
  background-color: transparent;
}

/* Contact form styles: used by contact.html for form layout and field spacing */
.contact-form {
  padding: 32px;
}

.contact-form .form-field {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-form .form-field label {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.contact-form .form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status[data-state='success'] {
  color: #137547;
}

.form-status[data-state='error'] {
  color: #b42318;
}

/* Hidden honeypot input styling: keeps the field invisible to users while remaining in the DOM */
.form-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 96px;
  background: linear-gradient(135deg, rgba(0, 154, 223, 0.05) 0%, rgba(255, 127, 0, 0.03) 100%);
}

/* NEW: Centered Dark Hero for Services */
.hero--dark {
  background-image: url('./images/services_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 100px 0 160px;
  /* Extra bottom padding for overlapping cards */
}

.hero--dark .hero__grid {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.hero--dark .hero__eyebrow {
  background: transparent;
  color: #fff;
  margin: 0 auto;
}

/* .hero--dark .hero__eyebrow span {
  background: #fff;
} */

.hero--dark .hero__title {

  color: #fff;
}

.hero--dark .hero__text {
  margin: 0 auto 10px;
  color: rgba(255, 255, 255, 0.8);
}

.hero--dark .hero__actions {
  justify-content: center;
  margin-top: 32px;
}

.hero--dark .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(0, 154, 223, 0.12);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.9rem;
  max-width: fit-content;
  font-weight: 500;
  line-height: 1.5;
}

.hero__eyebrow span {
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2.5rem, 3.0vw, 4.0rem);
  line-height: 1.05;
  margin: 24px auto;
  margin-top: 12px;
  max-width: 680px;
  font-weight: 700;
  color: var(--text);
}

.hero__content {
  padding: 0 111px;
}

.hero__content div {
  text-align: left;
  padding: 10px 46px;
}

.hero__text {
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero__badges {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d7e3f3;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.badge::before {
  content: "✓";
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  min-height: 400px;
  border-radius: 32px;
  background:
    linear-gradient(180deg,
      rgba(0, 154, 223, 0.22) 0%,
      rgba(255, 255, 255, 0.05) 100%),
    #edf6ff;
  box-shadow: 0 40px 80px rgba(0, 154, 223, 0.15);
  overflow: hidden;
}

.index-visual-img {
  border-top-left-radius: 311px !important;
  border-bottom-right-radius: 311px !important;
}

.hero__feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  min-height: 560px;
}

.hero__feature-card {
  background: #fff;
  border: 1px solid rgba(0, 154, 223, 0.14);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0, 154, 223, 0.08);
}

.hero__feature-card h3 {
  margin-bottom: 22px;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  line-height: 1.3;
}

.hero__feature-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

.hero__feature-list li {
  margin-bottom: 14px;
  position: relative;
}

.hero__feature-list li::before {
  content: "•";
  position: absolute;
  left: -16px;
  color: var(--accent);
  font-weight: 700;
}

.hero__phone {
  position: absolute;
  inset: 10px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);

  box-shadow: 0 30px 70px rgba(0, 154, 223, 0.18);
}

.hero__phone-inner {
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  background: #f8fbff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__phone-content {
  padding: 20px 24px 24px;
  flex: 1;
  overflow-y: auto;
  align-content: center;
}

.hero__phone-title {
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}

.hero__phone-paragraph {
  color: var(--text-muted);
  margin: 15px 0 30px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero__phone-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.panel {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 200ms ease;
}

.panel:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 16px rgba(0, 154, 223, 0.1);
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  color: var(--accent);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-action:hover,
.contact-action:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 18px 32px rgba(0, 154, 223, 0.16);
  transform: translateY(-2px);
  background: rgba(0, 154, 223, 0.04);
}

.contact-action svg {
  width: 32px;
  height: 32px;
  color: currentColor;
}

.contact-email-action {
  margin-top: 10px;
}

.contact-email-action a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.contact-email-action a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .contact-actions {
    grid-template-columns: 1fr;
  }
}

.panel p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: break-word;
}

.hero__phone-panel p,
.panel p {
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .hero__phone-panel {
    grid-template-columns: 1fr;
  }
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(2.3rem, 2.5vw, 3rem);
  line-height: 1.05;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  letter-spacing: -0.5px;
}

.section-subtitle {
  margin: 0 auto 40px;
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

/* Overlapping Services Cards */
.section--services-cards {
  margin-top: -100px;
  padding-top: 0;
  position: relative;
  z-index: 10;
}

.card--service-icon {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  text-align: left;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.service-icon,
.services-built-icon {
  background: var(--accent);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.service-icon svg {
  width: 34px;
  height: 34px;
}

.card--service-icon h3 {
  font-size: 1.84rem;
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.3;
}

.card--service-icon p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 24px;
  flex-grow: 1;
}

.card--service-icon h3,
.card--service-icon p {
  padding-right: 20px;
}

.pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;

}

.pill {
  background: var(--surface-strong);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 11px;
  font-weight: 600;
}

.card--service {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: all 300ms ease;
}

.card--service:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 154, 223, 0.15);
  transform: translateY(-4px);
}

.card--service h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  margin: 0 0 16px;
  color: var(--text);
}

.card--service h3::before {
  content: "";
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 8px;
  flex-shrink: 0;
}

.card--product {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 300ms ease;
}

.card--product:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 154, 223, 0.15);
  transform: translateY(-4px);
}

.card--product h3 {
  font-size: 1.3rem;
  margin: 16px 0 12px;
  color: var(--text);
}

.learn-more {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

/* What we deliver */
.deliver-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.deliver-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  gap: 40px;
}

.deliver-item__header {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 35px;
}

.deliver-icon {
  background: var(--accent);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.deliver-icon svg {
  width: 34px;
  height: 34px;
}

.deliver-item__header h4 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text);
}

.deliver-item ul {
  margin: 0;
  padding: 0 0 0 20px;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Our Delivery Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-item {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--highlight);
  color: #f8efe9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.process-item h4 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: var(--text);
}

.process-item p {
  margin: 20px 9px;
  font-size: 0.95rem;
  color: var(--text-muted);

}

/* Service Impact Metrics */
.card--metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

/* .card--metric:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 154, 223, 0.15);
} */

.card--metric h3 {
  margin: 0 0 30px 0;
  font-size: 1.3rem;
  color: var(--metric);
  flex-grow: 1;
}

.metric__value {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.metric-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-bottom svg {
  width: 58px;
  height: 58px;
  color: var(--metric);
  flex-shrink: 0;
}

.metric-bottom span {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Bottom CTA Card */
.cta-card {
  background-image: url('./images/service_bottom_img.png');
  background-size: cover;
  background-position: center;
  background-color: #a7bbd2;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-card__content {
  padding: 64px;
  color: #fff;
  flex: 1;
  max-width: 600px;
}

.cta-card__content h2 {
  font-size: 1.75rem;
  margin: 0 0 32px;
  line-height: 1.2;
}


.section--highlight {
  background: var(--surface-soft);
}

.section--border-top {
  border-top: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  align-items: start;
  border-top: 2px solid #e6e6e6;
  padding-top: 50px;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* .list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
} */

.circle-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

/* about.html testimonial */

.testimonial {
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.testimonial__quote {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 600;
}

.testimonial__author {
  margin-top: 24px;
  font-weight: 600;
  font-size: 1rem;
}

.footer {
  background: #0a192f;
  color: rgba(255, 255, 255, 0.92);
  padding: 35px 0 8px;
  z-index: 3;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 19px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer h4 {
  margin: 0 0 24px;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
}

.footer a {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 200ms ease;
  font-size: 0.95rem;
}

.footer a:hover {
  color: #fff;
}


.footer .contact-info {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 40px;
}

.footer .contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer .contact-info a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer__bottom {
  margin-top: 0px;
  padding-top: 0px;
  border: none;
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 1040px) {

  .hero__grid,
  .split,
  .grid--3,
  .grid--4,
  .footer__grid,
  .process-grid {
    grid-template-columns: 1fr !important;
  }

  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .deliver-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .deliver-item__header {
    flex: auto;
  }

  .cta-card {
    flex-direction: column;
  }

  .cta-card__image {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  .hero {
    padding: 56px 0 72px;
  }

  .hero--dark {
    padding: 80px 0 120px;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero__phone-panel {
    grid-template-columns: 1fr;
  }

  .navbar__actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links {
    gap: 16px;
  }

  .btn {
    min-width: 0;
  }

  .cta-card__content {
    padding: 32px;
  }
}

.dark--border {
  background-color: #00182E;
}

.analytic--border {
  border-top: 1px solid var(--border);
}

/* here */

/* Header Adjustments */
.nav-link-bold {
  font-weight: 600;
  color: var(--text);
  margin-right: 8px;
  font-size: 0.95rem;
}

/* Hero Section Updates */
.hero__eyebrow-text {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}

.badge-flat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.badge-flat svg {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

/* Service Card Updates */
.card--service h3::before {
  display: none;
  /* Remove previous gradient box from title */
}

.card--service h3 {
  gap: 0;
  margin: 16px 0 12px;
}

.card--service .service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.card--service .service-icon svg {
  width: 24px;
  height: 24px;
}

/* Overriding internal buttons to text links inside cards */
.learn-more {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 8px;
  text-decoration: none;
  transition: color 200ms ease;
}

.learn-more:hover {
  color: var(--accent-2);
}

/* innovative information section modification */
.innovative-information-padding {
  padding: 84px 0 45px;
}

.innovative-information-title {
  font-size: clamp(1.7rem, 2.9vw, 3.5rem);
  font-weight: 700;
}

.innovative-information-text {
  max-width: 504px;
  line-height: 1.4;
}

.explore {
  color: var(--accent);
  border-color: rgba(0, 154, 222, 0.4);
}

/* stats card*/
.centered {
  justify-content: center;
}

.stat-container {
  display: grid;
  grid-template-columns: repeat(4, 230px);
  gap: 30px;
}

.stat-card {
  padding: 16px 24px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1)
}

.stat-h3 {
  color: var(--accent);
  font-size: 2.0rem;
  font-weight: bold;
  font-family: sans-serif;
}

.stat-card p {
  width: 160px;
  margin: -5px 0 0 0;
  line-height: 1.3;
}

/* services built section */


.services-title {
  font-size: 2.0rem;
  margin: 7px;
}

.services-subtitle {
  margin-bottom: 20px;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.services-built-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.services-built-top {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 3px;
  align-items: center;
}

.services-built-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
}

.services-built-icon svg {
  width: 28px;
  height: 28px;
}

.services-built-top h3 {
  font-size: 0.95rem;
  width: 165px;
  margin-top: 0;
  margin-bottom: 0;
}

.services-built-card ul {
  padding-left: 16px;
  margin: 5px;
}

/* .services-icon {
  color: var(--accent-soft);
  background-color: var(--accent);
} */

/* previously for stats card */
.card--metric {
  align-items: flex-start;
  padding: 32px 24px;
}

.card--metric h3 {
  display: none;
  /* using <p> for the text instead as per image */
}

.card--metric p {
  margin: 12px 0 0 0;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

/* solutions for tomorrrow's growth */
.solution-title {
  font-size: clamp(1.5rem, 1.96vw, 2.5rem);
  letter-spacing: 0;
  margin-bottom: 35px;
}

.solution-card {
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 0px 30px rgba(160, 160, 160, 0.1);
  display: flex;
  flex-direction: column;
}

.bg-1 {
  background-image: url("./images/green.png");
  background-size: contain;
}

.bg-2 {
  background-image: url("./images/blue.png");
  background-size: contain;
}

.bg-3 {
  background-image: url("./images/purple.png");
  background-size: contain;
}

.solution-card h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
}

.solution-card p {
  margin: 12px 0 28px 0;
  width: 220px;
}

.green {
  color: #1ac676;
}

.blue {
  color: #102B67;
}

.purple {
  color: #9545c4;
}

.green-pill {
  background-color: #DAEFE8;
}

.purple-pill {
  background-color: #EFE1FB;
}

.blue-pill {
  background-color: #E4F1F7;
}

/* Pills matching */
/* .pills {
  margin: 16px 0;
  gap: 8px;
}
.pill {
  background: #f1f5f9;
  border: 1px solid var(--border);
  font-size: 0.75rem;
} */

/* Why Choose List Adjustments */
.reason-section {
  padding: 0 0 0px 0;
}

.reason-title {
  font-size: clamp(1.7rem, 2.1vw, 2.5rem);
  margin-bottom: 0;
}

.reason-subtitle {
  width: 500px;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-left: 0;
  margin-top: 22px;
  margin-bottom: 30px;
}

.reason-title,
.reason-subtitle {
  text-align: left;
}

.circle-icon-outline {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--accent);
  color: var(--accent);
  flex-shrink: 0;
}

.list-item-partition {
  border-left: 3px solid #e6e6e676;
  padding: 0 15px;
}

.list-item {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;

}

.list-item span {
  margin-right: 20px;

}

.list-item div {
  width: 180px;
  font-size: 0.95rem;
  line-height: 1.3;
}

/* Testimonials */
.testimonial--flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 45px;
}

.testimonial-section-title {
  font-size: clamp(1.5rem, 2.35vw, 2.7rem);
  max-width: 800px;
  font-weight: 550;
  margin: 0 auto 30px;
  text-align: center;
  color: var(--text);
  line-height: 1.05;
}

.testimonial-card {
  border-radius: 24px;
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.light {
  background: var(--surface);
  color: #0A192F;
}

.dark {
  background: #0a192f;
  color: #ffffff;
}

.testimonial-content {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.quote-icon {
  font-size: 4rem;
  /* color: var(--accent); */
  line-height: 1;
  font-family: serif;
  opacity: 0.8;
}

.testimonial-quote {
  font-size: 1.12rem;
  line-height: 1.8;
  margin: 9px 0 26px;
  font-weight: 400;
  max-width: 400px;
}

.accent {
  color: var(--accent);
}

.testimonial__author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 9px;
}

.avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  /* background: #fff; */
  /* fallback */
}

.author-name {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02rem;
  color: #0A192F;
}

.author-department {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.03rem;
  color: var(--text-muted);
}

.author-dark {
  color: var(--surface);
}

.author-department-dark {
  color: #cdc8c8;
}

.avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 154, 223, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
}

.contrast {
  color: #0A192F;
}

/* Partner Logos */
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0 70px;
}

.logo-placeholder {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-placeholder::before {
  content: "❖";
  font-size: 1.5rem;
  color: var(--accent);
}

/* CTA Banner */
.underlap {
  margin-bottom: -78px;
  padding-top: 10px;
}

.cta-banner {
  background: var(--accent);
  border-radius: 24px;
  padding: 40px 24px 64px 24px;
  text-align: center;
  width: min(1350px, calc(100% - 48px));
  /* box-shadow: 0 20px 40px rgba(0, 154, 223, 0.2); */
}

.cta-banner-title {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.85rem, 1.9vw, 2.5rem);
  margin: 0 0 15px;
  line-height: 1.05;
}

.cta-banner-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 23px;
}

.cta-banner-actions {
  justify-content: center;
  margin-top: 0;
}

.cta-banner-btn {
  padding: 0 42px;
}

/* --- NEW STYLES FOR PRODUCT PAGES (InternMatch & FarmConnect) --- */
.intermatch-hero-section-padding {
  padding-top: 25px;
  padding-bottom: 0;
}

.internmatch-title {
  margin-bottom: 16px;
  margin-top: 0;
}

.internmatch-subtitle {
  font-size: 1.25rem;
  width: 370px;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 600;
}

.internmatch-text {
  margin-bottom: 32px;
  width: 400px;
}


.btn--orange {
  background: #ff7f00;
  color: #fff;
}

.btn--orange:hover {
  background: #e67300;
  box-shadow: 0 20px 40px rgba(255, 127, 0, 0.25);
  color: #fff;
}

/* Stats Pill Row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.icon-circle-small {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle-small.blue {
  background: #e0f2fe;
  color: #0284c7;
}

.icon-circle-small.teal {
  background: #ccfbf1;
  color: #0f766e;
}

.icon-circle-small svg {
  width: 14px;
  height: 14px;
}

/* Challenges vs Solutions */
.challenge-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cs-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.cs-card-title-red {
  color: #ef4444;
  margin-top: 0;
  margin-bottom: 24px;
}

.cs-card-title-green {
  color: #10b981;
  margin-top: 0;
  margin-bottom: 24px;
}

.cs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.icon-circle-xs {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  flex-shrink: 0;
}

.icon-circle-xs.red {
  background: #fee2e2;
  color: #ef4444;
}

.icon-circle-xs.green {
  background: #d1fae5;
  color: #10b981;
}

/* Core Features Grid */
.feature-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card-center {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.feature-card-center .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e0f2fe;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-card-center h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--text);
}

.feature-card-center p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* Horizontal Cards */
.horizontal-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.who-its-for-card {
  border-color: rgba(14, 165, 233, 0.16);
  box-shadow: 0 18px 45px rgba(14, 165, 233, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.who-its-for-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(14, 165, 233, 0.12);
}

.who-its-for-card h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--accent);
}

.who-its-for-card p {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}

.who-its-for-grid {
  gap: 24px;
}

.icon-circle-lg {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle-lg.blue {
  background: var(--accent);
  color: #fff;
}

.icon-circle-lg.orange {
  background: rgba(255, 127, 0, 0.1);
  color: #ff7f00;
}

.icon-circle-lg.green-soft {
  background: #dcfce7;
  color: #15803d;
}

.icon-circle-lg.grey-soft {
  background: #f1f5f9;
  color: #64748b;
}

/* Dark Metrics */
.dark-metrics {
  background: #0a192f;
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* internmatch testimonial */
.intern-card-content {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 5px;
}

.internmatch-testimonial-img {
  width: 100%;
}

.quote-width {
  max-width: 630px !important;
  margin-left: 0 !important;
}

.intern-author-margin {
  margin-left: 57px;
}

/* Integrations */
.integration-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Subscribe Banner */
.subscribe-cta {
  background: var(--accent);
  color: #fff;
  border-radius: 16px;
  padding: 48px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.subscribe-form {
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
}

.subscribe-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 16px;
  font-family: inherit;
}

.directory {
  background-color: transparent;
  color: var(--text-muted);
  position: absolute;
  top: 15px;
}

.farmconnect-title {
  margin-bottom: 16px;
  margin-top: 0;
}

.farmconnect-subtitle {
  font-size: 1.35rem;
  width: 350px;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 600;
}

.farmconnect-text {
  margin-bottom: 32px;
  width: 380px;
}

.farmconnect-visual,
.internmatch-visual,
.index-visual {
  background: transparent;
  box-shadow: none;
  min-height: auto;
}

.farmconnect-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 5px 0 18px;
  padding: 10px;

}

.farmconnect-stat-pill {
  background-color: #FAFBFA;
  padding: 5px 15px;
  height: 50px;
  display: flex;
  gap: 8px;
  line-height: 1;
  color: var(--text-muted);
  border-radius: 8px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;

}

/* why Farmconnect */
.why-farmconnect-icon-content h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--text);
}

.why-farmconnect-icon-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  width: 145px;
}



/* powerful features */
.powerful-container-division {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 32px 12px 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-row .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f1f5f9;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  height: 26px;
  width: 26px;
}

.icon-content h4 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.icon-content p {
  margin-top: -1px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* use cases */
.usecase-title,
.powerful-title,
.why-farmconnect-title {
  font-size: 2.0rem;
}

.usecase-container {
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.usecase-container h4 {
  margin: 0 0 8px;
  color: var(--text);
}

.usecase-container strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

.usecase-container p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.usecase-container div {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* FarmConnect specific Analytics */
.analytics-title {
  text-align: left;
  margin-bottom: 24px;
  font-size: 2.0rem;
}

.analytics-card img {
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

/* farmconnect testimonials */
.farmconnect-testimonial-title {
  font-size: 1.5rem;
  font-weight: 620;
  margin: 0 auto 35px;
  text-align: center;
  color: var(--text);
}

.farmconnect-testimonial-card {
  border-radius: 16px;
  padding: 30px 40px;
  background: rgba(226, 236, 252, 0.6);
  color: var(--text);
  margin: 0 auto 40px;
}

.farmconnect-testimonial-quote {
  margin: 4px 0 26px 20px;
  font-weight: 400;
  max-width: 430px;
  font-size: 1.3rem;
  letter-spacing: 0.7px;
}

.farmconnect-content-padding {
  padding-left: 10px;
}

.farmconnect-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.farmconnect-author-info b {
  color: var(--text);
}

.farmconnect-author-info span {
  color: var(--text-muted);
  font-size: 0.85rem;
}


/* FarmConnect Banner */
.farm-cta-banner {
  background: url('./images/farm_connect_bottom.png');
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 300px;
}

.farm-cta-content {
  padding: 48px 60px;
}

.farm-cta-content h2 {
  font-size: 2.2rem;
  margin: 0 0 40px;
  line-height: 1.1;
}

@media (max-width: 1040px) {

  .challenge-solution-grid,
  .feature-grid-4,
  .dark-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {

  .challenge-solution-grid,
  .feature-grid-4,
  .dark-metrics {
    grid-template-columns: 1fr;
  }

  .subscribe-cta {
    padding: 32px;
    flex-direction: column;
    text-align: center;
  }

  .subscribe-cta>div {
    margin-right: 0 !important;
  }

  .farm-cta-content {
    padding: 32px;
  }

  .farmer-img {
    opacity: 0.2;
  }
}