/* ============================================================
   VISIONTECHPLG AFRICA — MAIN STYLESHEET
   Responsive: mobile (≤640) / tablet (641–1024) / desktop (1025+)
   ============================================================ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --navy:        #1a2d6b;
  --blue:        #2048bb;
  --blue-mid:    #2f3588;
  --cyan:        #2aa3dc;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --light-bg:    #eef2f8;
  --text-dark:   #0d1630;
  --text-body:   #444444;
  --text-muted:  #888888;
  --border:      #dde3f0;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.16);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 40px;
  --transition:  0.3s ease;
  --nav-h:       100px;
  --font:        'Poppins', sans-serif;
  --banner-bg:   #ffffff;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* Merged: opacity fade-in + base sizing + no horizontal scroll */
html,
body { overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
}
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
input, select, textarea { font-family: var(--font); font-size: 14px; }

/* Merged: opacity/transition + max-width/height/display — single img rule */
img {
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.45s ease;
}
img.img-loaded { opacity: 1; }

/* Merged: both slider overflow rules into one global rule */
.slider-wrapper,
.ind-slider-outer { overflow: hidden; max-width: 100%; }

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) { .container { padding-inline: 40px; } }

/* ── Utility ─────────────────────────────────────────────── */
.br-hide { display: inline; }
@media (max-width: 640px) { .br-hide { display: none; } }

.u-text-center { text-align: center !important; }
.u-text-left { text-align: left !important; }
.u-mx-auto { margin-inline: auto !important; }
.u-mt-8 { margin-top: 8px !important; }
.u-mt-20 { margin-top: 20px !important; }
.u-mt-40 { margin-top: 40px !important; }
.u-mt-48 { margin-top: 48px !important; }
.u-mb-0 { margin-bottom: 0 !important; }
.u-mb-28 { margin-bottom: 28px !important; }
.u-mb-40 { margin-bottom: 40px !important; }
.u-mb-48 { margin-bottom: 48px !important; }
.u-mb-56 { margin-bottom: 56px !important; }
.u-mb-64 { margin-bottom: 64px !important; }
.u-mw-680 { max-width: 680px !important; }
.u-mw-700 { max-width: 700px !important; }
.u-mw-720 { max-width: 720px !important; }
.u-mw-780 { max-width: 780px !important; }
.u-mw-820 { max-width: 820px !important; }
.u-mw-840 { max-width: 840px !important; }
.u-mw-860 { max-width: 860px !important; }
.u-single-col { grid-template-columns: 1fr !important; }
.u-slider-shell,
.slider-outer {
  position: relative;
  padding: 0 56px;
}

/* Skeleton shimmer while image loads */
.img-skeleton-wrap {
  position: relative;
  background: linear-gradient(90deg, #e8eaf0 25%, #f4f5f9 50%, #e8eaf0 75%);
  background-size: 400% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.img-skeleton-wrap.done { background: none; animation: none; }
@keyframes shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ── Top Progress Bar ────────────────────────────────────── */
.vt-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 100%);
  z-index: 9999;
  pointer-events: none;
  transition: width 0.25s ease, opacity 0.5s ease;
  border-radius: 0 2px 2px 0;
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Partner name badge (single definition — 14px) ───────── */
.partner-name-badge {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}
.partner-name-badge span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-body);
  margin-top: 2px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.14); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) { .nav-wrap { padding-inline: 40px; } }

.nav-brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 1 !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links > a,
.nav-item-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text-dark);
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
}

.nav-links > a:hover,
.nav-item-link:hover,
.nav-links > a.nav-active,
.nav-item-link.nav-active,
.nav-dropdown li a.nav-active {
  color: var(--blue);
}

.nav-item {
  position: relative;
}

.nav-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.nav-item:hover .nav-chevron,
.nav-item.dropdown-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown li a:hover,
.nav-dropdown li a.nav-active {
  background: var(--off-white);
  color: var(--blue);
}

.nav-dropdown li a.nav-active {
  font-weight: 600;
}

.nav-contact-btn {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.4px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-contact-btn:hover { background: var(--navy) !important; transform: translateY(-1px) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 40px;
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > a,
  .nav-item-link {
    width: 100%;
    padding: 14px 12px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .nav-links > a.nav-active,
  .nav-item-link.nav-active,
  .nav-dropdown li a.nav-active {
    color: var(--blue);
  }

  .nav-dropdown li a.nav-active {
    background: var(--off-white);
    font-weight: 600;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item-link {
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0 0 4px 12px;
    border-left: 3px solid var(--blue);
    margin: 0 0 4px 12px;
    min-width: unset;
  }

  .nav-item.dropdown-open .nav-dropdown {
    display: block;
  }

  .nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown li a {
    padding: 9px 12px;
    font-size: 12px;
    border-radius: 0;
  }

  .nav-dropdown li a:hover,
  .nav-dropdown li a.nav-active {
    background: var(--off-white);
    color: var(--blue);
  }

  .nav-contact-btn {
    margin-top: 12px;
    text-align: center !important;
    justify-content: center;
  }

}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.nav-backdrop.show { display: block; }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg,
.inner-hero .hero-bg,
.ty-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,5,19,0.82) 0%, rgba(0,5,19,0.35) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  width: 100%;
}
.hero-text h1 {
  font-size: clamp(26px, 2.5vw, 58px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 720px;
}
.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.btn-schedule {
  display: inline-block;
  background: var(--cyan);
  color: var(--white);
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
}
.btn-schedule:hover { background: var(--blue); transform: translateY(-2px); }

/* ── Inner Hero (sub-pages) ──────────────────── */
.inner-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.inner-hero .hero-content {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
}
.inner-hero h1 {
  font-size: clamp(22px, 2.5vw, 44px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 920px;
}
.inner-hero-sub {
  font-size: clamp(13px, 1.6vw, 16px);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.home-page .hero > .hero-bg { background-image: url('../images/hero-banner.jpg'); }
.contact-page .inner-hero > .hero-bg { background-image: url('../images/contact-hero-bg.jpg'); }
.managed-page .inner-hero > .hero-bg { background-image: url('../images/managed-it-hero-bg.jpg'); }
.datacentre-page .inner-hero > .hero-bg { background-image: url('../images/data-center-hero-bg.png'); }
.dt-page .inner-hero > .hero-bg { background-image: url('../images/digital-transformation-partner-Banner.jpg'); }
.ai-page .inner-hero > .hero-bg { background-image: url('../images/hero-ai.jpg'); }
.cyber-page .inner-hero > .hero-bg { background-image: url('../images/hero-cybersecurity.png'); }
.dprd-page .inner-hero > .hero-bg { background-image: url('../images/dt-hero-bg.png'); }
.dt-page-section{ margin-bottom: 64px;}
.home-page .why-section > .why-bg,
.dt-page .page-why-section > .why-bg,
.managed-page .page-why-section > .why-bg { background-image: url('../images/why-visiontech.jpg'); }
.ai-page .page-why-section > .why-bg { background-image: url('../images/why-ai.jpg'); }
.cyber-page .page-why-section > .why-bg { background-image: url('../images/why-cyber-sec.jpg'); }
.datacentre-page .page-why-section > .why-bg { background-image: url('../images/why-datacenter.png'); }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.page-section { padding: 20px 0; }
.bg-white { background: var(--white); }
.bg-light  { background: var(--off-white); }

.page-section.bg-white + .page-section.bg-white,
.partner-carousel-section + .page-section.bg-white {
  background: var(--off-white);
}

.page-section.bg-light + .page-section.bg-light {
  background: var(--white);
}

.sec-heading {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 16px;
}
.sec-heading.blue { color: var(--blue); }
.sec-subheading {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 600;
  color: var(--blue-mid);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.4;
}
.sec-body {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--text-body);
  line-height: 1.85;
}

/* ============================================================
   HOMEPAGE — INTRO
   ============================================================ */
.intro-section { padding: 80px 0; background: var(--white); }
.intro-heading {
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 48px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-copy p { font-size: 15px; color: var(--text-body); line-height: 1.85; margin-bottom: 16px; }
.intro-img img { border-radius: var(--radius-md); width: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-img { order: -1; }
}

/* ============================================================
   HOMEPAGE — ENABLE
   ============================================================ */
.enable-section { padding: 80px 0; background: var(--off-white); }
.enable-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}
.enable-card-label {
  font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 24px;
}
.enable-checklist { display: flex; flex-direction: column; gap: 12px; }
.enable-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.enable-item { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; line-height: 1.6; }
.chk-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.chk-icon img { width: 100%; height: 100%; object-fit: contain; opacity: 1 !important; }
.enable-footer-text {
  font-size: 15px; color: var(--text-body); line-height: 1.85; text-align: center;
  margin-top: 40px; max-width: 940px; margin-inline: auto;
}

/* ============================================================
   HOMEPAGE — SOLUTIONS
   ============================================================ */
.solutions-section { padding: 80px 0; background: var(--white); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.sol-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.sol-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.sol-icon { width: 56px; height: 56px; margin-bottom: 20px; }
.sol-icon img { width: 100%; height: 100%; object-fit: contain; opacity: 1 !important; }
.sol-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.sol-body  { font-size: 13px; color: var(--text-body); line-height: 1.75; }

@media (max-width: 1024px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   HOMEPAGE — APPROACH
   ============================================================ */
.approach-section { padding: 80px 0; background: var(--off-white); }
.approach-bold {
  font-size: clamp(17px, 2.5vw, 26px);
  font-weight: 700; color: var(--navy);
  text-align: center; margin-bottom: 12px;
}
.approach-section .approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.approach-img img { border-radius: var(--radius-md); width: 100%; object-fit: cover; }
.approach-points { display: flex; flex-direction: column; gap: 24px; }
.ap-item { display: flex; gap: 16px; align-items: flex-start; }
.ap-icon { flex-shrink: 0; width: 44px; height: 44px; }
.ap-icon img { width: 100%; height: 100%; object-fit: contain; opacity: 1 !important; }
.ap-text p { font-size: 14px; line-height: 1.75; color: var(--text-body); }
.ap-text strong { color: var(--navy); }
.approach-tagline {
  font-size: 14px; font-style: italic; color: var(--blue-mid); font-weight: 500;
  padding-top: 12px; border-top: 1px solid var(--border); margin-top: 4px;
}

@media (max-width: 768px) {
  .approach-section .approach-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   HOMEPAGE — INDUSTRIES SLIDER
   ============================================================ */
.industries-section { background: var(--white); padding: 80px 0; }
.ind-sub-black { font-size: 17px; font-weight: 700; color: #000; margin-bottom: 10px; text-align: left; }
.industries-section .sec-heading { text-align: center; color: #000; margin-bottom: 10px; }
.industries-section .sec-body { text-align: left; margin-bottom: 36px; }

.ind-slider-outer { 
  position: relative; 
  margin: 0 auto 28px; /* Centers the slider section horizontally on the page */
  overflow: hidden;    /* Masks out the non-active slider boxes */
  
  /* CRITICAL: Fits exactly 3 boxes (150px * 3) + 2 gaps (24px * 2) */
  width: 498px; 
  max-width: 100%;     /* Fluid handling on smaller browser viewports */
}

.ind-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  width: max-content;  /* Locks cards flat in a single long horizontal row */
}

.ind-card {
  /* Forced square dimensions as specified */
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  box-sizing: border-box; /* Forces padding/borders inside the 150px x 150px box boundary */
  
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 12px;     /* Reduced padding slightly so content fits inside a smaller box */
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  
  /* Flex alignments to keep your contents vertically stacked and centered */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ind-card:hover,
.ind-card.active { border-color: var(--navy); box-shadow: 0 4px 18px rgba(47,53,136,0.10); }

/* Adjusted inner icon sizes so they scale elegantly inside a smaller 150px card */
.ind-icon { width: 45px; height: 45px; margin: 0 auto 10px; }
.ind-icon img { width: 45px; height: 45px; object-fit: contain; }

/* Adjusted typography scale for the smaller layout frame */
.ind-label { font-size: 13px; font-weight: 700; color: #000; line-height: 1.2; }

.ind-dots { display: flex; gap: 8px; justify-content: center; padding-top: 4px; margin: 8px;}
.dot-btn {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: none;
  background: #c9cad4;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.dot-btn.active { background: var(--navy); transform: scale(1.25); }
.ind-footer-text { font-size: 14.5px; color: var(--text-body); line-height: 1.75; margin-top: 8px; }
/* ============================================================
   WHY SECTION (Homepage + inner pages)
   ============================================================ */
.why-section,
.page-why-section { position: relative; padding: 40px 0; overflow: hidden; }
.why-bg {
  position: absolute; inset: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 0;
}
.why-overlay { position: absolute; inset: 0; background: rgba(39,149,203,0.74); z-index: 1; }
.why-inner { position: relative; z-index: 2; }
.why-heading {
  font-size: clamp(22px, 2.3vw, 28px);
  font-weight: 600; color: var(--white);
  margin-bottom: 32px; line-height: 1.2;
  text-align: center;
}
.why-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-inline: auto; /* ← centers the card */
}
.why-card-title { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 20px; line-height: 1.55; }
.why-card-intro { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.9); }
.why-chk { flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; }
.why-chk img { width: 100%; height: 100%; object-fit: contain; opacity: 1 !important; }
.why-tagline { color: var(--white); font-size: 15px; font-weight: 600; margin-top: 20px; font-style: italic; }

/* ============================================================
   CLIENTELE / LOGO SLIDER
   ============================================================ */
.clientele-section { background: var(--white); padding: 60px 0 72px; display: none;}
.clientele-section .sec-heading { margin-bottom: 36px; }

.clientele-slider-wrap {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 64px;
}

.slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
/* ============================================================
   CLIENTELE / LOGO SLIDER ADJUSTMENTS
   ============================================================ */
/* ============================================================
   CLIENTELE & PARTNER LOGO SLIDERS - UNIFIED DIMENSIONS
   ============================================================ */

/* 1. Target slides for BOTH sliders */
.slide,
[id*="partner"] .slide, 
[id*="logo"] .slide {
  display: flex !important;
  gap: 16px !important;
  flex: 0 0 100% !important;
  min-width: 100% !important;
  box-sizing: border-box !important;
  align-items: center !important;
  justify-content: center !important; /* Centers the 3 items perfectly */
}

/* 2. Lock item cards for BOTH sliders to the EXACT 5-item row width */
.logo-card,
.partner-card,
[id*="partner"] .slide > div,
[id*="logo"] .slide > div {
  /* Forces every single card to freeze at the width of a 5-item layout */
  flex: 0 0 calc((100% - (16px * 4)) / 5) !important;
  width: calc((100% - (16px * 4)) / 5) !important;
  max-width: calc((100% - (16px * 4)) / 5) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 110px !important;                 /* Uniform height */
  padding: 18px 16px !important;
  box-sizing: border-box !important;
  border-radius: 8px;
}

/* 3. Keep all inner partner and client images proportional */
.logo-card img,
.partner-card img,
[id*="partner"] .slide img,
[id*="logo"] .slide img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #dde2f0;
  box-shadow: 0 3px 12px rgba(0,0,0,0.10);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #1a2d6b;
  transition: background 0.2s, border-color 0.2s;
}
.arrow:hover { background: #1a2d6b; border-color: #1a2d6b; color: #fff; }
.arrow svg,
.arrow svg * { stroke: currentColor; transition: stroke 0.2s; }
.arrow-prev { left: 0; }
.arrow-next { right: 0; }
/* Disabled state for slider arrows */
.arrow:disabled,
.arrow[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none; /* Prevents clicks entirely */
  background: #fff;     /* Resets background color */
  color: #1a2d6b;       /* Resets text color */
  border-color: #dde2f0;
}
.dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #c8cfe8;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: #1a2d6b; transform: scale(1.3); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 80px 0; text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 0; }
.cta-heading {
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 600; color: var(--white);
  line-height: 1.2; margin-bottom: 16px; max-width: 700px;
  white-space: nowrap;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 620px; line-height: 1.75; }
.btn-experts {
  display: inline-block;
  background: var(--white); color: var(--blue);
  padding: 14px 36px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-experts:hover { background: var(--cyan); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
.footer-heading {
  font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a,
.footer-contact-link { font-size: 13px; color: rgba(255,255,255,0.62); transition: color var(--transition); line-height: 1.5; }
.footer-col a:hover,
.footer-contact-link:hover { color: var(--cyan); }
.footer-social-row { display: flex; gap: 10px; margin-top: 4px; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--cyan); color: var(--white); }
.social-link svg { width: 15px; height: 15px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.38); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   INNER PAGES — SPLIT SECTIONS
   ============================================================ */
.page-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.page-intro-body p { font-size: 15px; line-height: 1.85; color: var(--text-body); margin-bottom: 16px; }
.page-intro-img img { border-radius: var(--radius-md); width: 100%; object-fit: cover; }

.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-content h3 { font-size: clamp(17px, 2.5vw, 24px); font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.split-content p { font-size: 14px; line-height: 1.85; color: var(--text-body); margin-bottom: 18px; }
.split-img img { border-radius: var(--radius-md); width: 100%; object-fit: cover; max-height: 360px; }

.feat-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.feat-list-item {
  display: flex; align-items: flex-start;
  gap: 10px; font-size: 13px; line-height: 1.55; color: var(--text-body);
}
.feat-list-item .chk-icon { margin-top: 1px; }

@media (max-width: 768px) {
  .page-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .split-section { grid-template-columns: 1fr; gap: 28px; direction: ltr; }
  .split-section.reverse { direction: ltr; }
  .feat-list-grid { grid-template-columns: 1fr; }
  .page-intro-img { order: -1; }
}

/* ── AI / Approach Cards (4-col card grid) ─── */
.page-section .approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.approach-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.approach-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); transform: translateY(-4px); }
.approach-card-icon { width: 52px; height: 52px; }
.approach-card-icon img { width: 100%; height: 100%; object-fit: contain; opacity: 1 !important; }
.approach-card-body h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.approach-card-body p  { font-size: 13px; color: var(--text-body); line-height: 1.65; }

@media (max-width: 1024px) { .page-section .approach-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Use Cases ─────────────────────────────── */
.use-cases-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.use-cases-img img { border-radius: var(--radius-md); width: 100%; object-fit: cover; }
.use-cases-list { display: flex; flex-direction: column; gap: 12px; }
.use-cases-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.use-cases-list li:hover { box-shadow: var(--shadow-sm); border-color: var(--blue); }
.use-case-icon { width: 36px; height: 36px; flex-shrink: 0; }
.use-case-icon img { width: 100%; height: 100%; object-fit: contain; opacity: 1 !important; }
.use-case-label { font-size: 14px; font-weight: 500; color: var(--navy); }

@media (max-width: 768px) { .use-cases-split { grid-template-columns: 1fr; gap: 28px; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-section { background: var(--blue); padding: 80px 0; color: var(--white); text-align: center; }
.contact-form-section h2 { font-size: clamp(18px, 3vw, 27px); font-weight: 700; line-height: 1.45; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 920px;
  margin: 40px auto 0; text-align: left;
}
.form-full { grid-column: 1 / -1; }
.field-label { display: block; font-size: 13px; margin-bottom: 8px; font-weight: 500; }
.field-label span { color: #ff8080; }
.replica-input,
.replica-select,
.replica-textarea {
  width: 100%; padding: 14px 18px;
  border-radius: var(--radius-lg); border: none;
  background: rgba(255,255,255,0.18);
  color: var(--white); font-family: var(--font); font-size: 14px;
  outline: none;
  transition: background var(--transition), box-shadow var(--transition);
}
.replica-input::placeholder,
.replica-textarea::placeholder { color: rgba(255,255,255,0.6); }
.replica-input:focus,
.replica-select:focus,
.replica-textarea:focus { background: rgba(255,255,255,0.25); box-shadow: 0 0 0 2px rgba(255,255,255,0.5); }
.replica-select { appearance: none; cursor: pointer; color: var(--white); }
.replica-select option { color: var(--text-dark); background: var(--white); }
.replica-textarea { min-height: 110px; resize: vertical; }
.upload-box {
  background: rgba(255,255,255,0.18); border-radius: var(--radius-lg);
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 6px 6px 18px; color: rgba(255,255,255,0.7); font-size: 13px;
}
.btn-choose {
  background: var(--cyan); color: var(--white);
  padding: 10px 24px; border-radius: var(--radius-pill);
  border: none; font-weight: 600; font-size: 13px;
  transition: background var(--transition);
}
.btn-choose:hover { background: #009fd5; }
.captcha-box {
  background: var(--white); padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center;
  gap: 10px; margin: 20px 0; color: #333; font-size: 12px;
  box-shadow: var(--shadow-sm);
}
.btn-send {
  background: var(--white); color: var(--blue);
  padding: 14px 44px; border-radius: var(--radius-pill);
  border: none; font-weight: 700; font-size: 15px;
  cursor: pointer; display: block; margin: 0 auto;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-send:hover { background: var(--cyan); color: var(--white); transform: translateY(-2px); }
.office-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; padding: 80px 0;
}
.office-col h3 {
  color: var(--blue-mid); font-size: 20px; font-weight: 700;
  margin-bottom: 16px; border-bottom: 2px solid var(--blue-mid);
  display: inline-block; padding-bottom: 6px;
}
.office-col p { font-size: 14px; line-height: 2; color: var(--text-body); }

@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .office-col {
    margin: 0 20px ;
  }
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.ty-hero {
  min-height: 420px; position: relative;
  display: flex; align-items: center; overflow: hidden;
  padding-top: var(--nav-h);
}
.ty-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(0,5,19,0.8) 0%, rgba(0,5,19,0.4) 100%);
}
.ty-content { padding: 80px 0; text-align: center; background: var(--white); }
.ty-content h1 { color: var(--blue); font-size: clamp(28px, 2.5vw, 50px); font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.ty-content p { color: var(--blue-mid); font-size: clamp(15px, 2vw, 20px); font-weight: 500; max-width: 620px; margin: 0 auto 40px; }
.btn-home {
  display: inline-block; background: var(--navy); color: var(--white);
  padding: 14px 36px; border-radius: var(--radius-pill); font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.btn-home:hover { background: var(--cyan); transform: translateY(-3px); color: var(--white); }

/* ============================================================
   PAGE-SPECIFIC COMPONENTS
   ============================================================ */

/* ── Lifecycle circle approach ── */
.lifecycle-circle-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}

.lc-item {
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left; gap: 14px;
  position: relative; z-index: 1;
  padding: 0 16px;
}
.lc-circle {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid transparent;
}
 
.lc-item-title { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.35; }
.lc-item-body  { font-size: 12.5px; color: var(--text-body); line-height: 1.55; text-align: left;}

/* ── Use Case icon cards ── */
.uc-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.uc-icon-card {
  padding: 28px 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.uc-icon-card img { width: 52px; height: 52px; object-fit: contain; opacity: 1 !important; }
.uc-icon-card p { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; }

/* ── Why matters grid ── */
.matters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  max-width: 860px; margin: 32px auto 0;
}
.matters-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--text-body); line-height: 1.6;
}
.matters-item .chk-icon { flex-shrink: 0; margin-top: 2px; }

/* ── READ MORE SYSTEM ── */
.section-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  opacity: 0;
}
.section-expandable.expanded { max-height: 12000px; opacity: 1; }
.read-more-wrap { display: flex; justify-content: center; margin-top: 32px; }
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-read-more:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-read-more .rm-icon {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.btn-read-more.active .rm-icon { transform: rotate(180deg); }

/* ── MANAGED SERVICES DELIVERY FRAMEWORK (single definition) ── */
.msdf-section { padding: 80px 0; background: var(--off-white); }
.msdf-subtitle {
  font-size: 15px; font-weight: 600; color: var(--navy);
  text-align: center; max-width: 700px;
  margin: 12px auto 40px; line-height: 1.6;
}
.msdf-box {
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  background: var(--white); overflow: hidden;
  max-width: 960px; margin: 0 auto; box-shadow: var(--shadow-sm);
}
.msdf-grid { display: grid; grid-template-columns: 1fr 1fr; }
.msdf-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 36px 32px;
  border-bottom: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  transition: background var(--transition);
}
.msdf-item:hover { background: var(--off-white); }
.msdf-item:nth-child(2n) { border-right: none; }
.msdf-item:nth-child(3),
.msdf-item:nth-child(4) { border-bottom: none; }
.msdf-icon {
  flex-shrink: 0; width: 64px; height: 64px;
  background: #eef2fb; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.msdf-icon img { width: 40px; height: 40px; object-fit: contain; opacity: 1 !important; }
.msdf-icon svg { width: 36px; height: 36px; }
.msdf-body h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.msdf-body p  { font-size: 13px; color: var(--text-body); line-height: 1.75; }

/* ── Page-specific solution/lifecycle/achieve grids ── */
.dt-solutions-heading {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700; letter-spacing: 0.5px;
  color: var(--blue); text-transform: uppercase;
  margin-bottom: 6px;
}
.dt-sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.dt-sol-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.dt-sol-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.dt-sol-card-icon {
  width: 48px; height: 48px;
  background: var(--off-white); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.dt-sol-card-icon img { width: 28px; height: 28px; object-fit: contain; opacity: 1 !important; }
.dt-sol-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.dt-sol-card ul { display: flex; flex-direction: column; gap: 7px; }
.dt-sol-card ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px; line-height: 1.55; color: var(--text-body);
}
.dt-sol-card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px; margin-top: 1px;
  background: url('../images/icon-check.png') center/contain no-repeat;
}

.lifecycle-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.lifecycle-track::before {
  content: '';
  position: absolute;
  top: 32px; left: 8.3%; right: 8.3%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  z-index: 0;
}
.lc-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center; position: relative; z-index: 1;
  padding: 0 8px;
}
.lc-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(32,72,187,0.35);
  flex-shrink: 0;
}
.lc-step:first-child .lc-num { background: var(--navy); }
.lc-step:last-child .lc-num  { background: var(--cyan); }
.lc-label { font-size: 12px; font-weight: 700; color: var(--navy); line-height: 1.4; }
.lc-sub   { font-size: 11px; color: var(--text-body); line-height: 1.45; }

.achieve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.achieve-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.achieve-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }
.achieve-num {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue); color: var(--white);
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.achieve-card h5 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.achieve-card p  { font-size: 12.5px; color: var(--text-body); line-height: 1.6; }

/* ── TECHNOLOGY PARTNER CAROUSEL ── */
.partner-carousel-section { padding: 60px 0; background: var(--white); }
.partner-carousel-section .sec-heading { margin-bottom: 12px; }
.partner-logo-card {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 20px 16px; height: 90px;
   
   
}
 
.partner-logo-card img { max-width: 100%; object-fit: contain; }

/* ── WHY MATTERS ── */
.why-matters-section { padding: 48px 0 56px; background: #fff; }
.why-matters-section .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.why-matters-heading {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700; color: #30308d;
  text-align: center; margin-bottom: 22px; line-height: 1.25;
}
.why-matters-sub { font-size: 15px; color: #202020; max-width: 920px; margin: 0 0 34px; line-height: 1.35; }
.why-matters-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.why-matters-image img { width: 100%; max-width: 430px; display: block; object-fit: cover; }
.why-matters-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.why-matters-list li {
  position: relative; padding-left: 36px;
  font-size: 15px; color: #333; line-height: 1.35;
}
.why-matters-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #003f93; color: #fff;
  font-size: 12px; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
}

@media (max-width: 900px) {
  .why-matters-content { grid-template-columns: 1fr; gap: 32px; }
  .why-matters-image img { max-width: 520px; margin: 0 auto; }
  .why-matters-sub { text-align: center; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   EVENT PAGE (rwanda-launch-summit)
   ============================================================ */
.ev-hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden; background-color: var(--white);
}
.ev-hero-bg {
  position: absolute; inset: 0;
  background: url('../images/event-hero-bg.jpg') center/cover no-repeat;
  z-index: 0; opacity: 0;
}
.thank-you-bg {
   position: absolute; inset: 0;
  background: url('../images/thank-you-bg.jpg') center/cover no-repeat;
  z-index: 0; 
}
.ev-hero-bg.bg-loaded { opacity: 1; }
.ev-hero-overlay { position: absolute; inset: 0; z-index: 1; }
.ev-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding-top: var(--nav-h);
  padding-bottom: 72px;
  width: 100%;
}
.ev-hero-left { display: flex; flex-direction: column; gap: 20px; }
.ev-hero-title { display: flex; flex-direction: column; gap: 2px; }
.ev-title-normal {
  display: block;
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 900; color: #000;
  letter-spacing: -0.5px; line-height: 1.05;
}
.ev-title-blue {
  display: block;
  font-size: clamp(30px, 6vw, 64px);
  font-weight: 900; color: var(--blue);
  letter-spacing: -0.5px; line-height: 1.0;
}
.ev-divider {
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 20%, rgba(255,255,255,0.9) 55%, rgba(255,255,255,0) 100%);
  filter: blur(0.3px);
}
.ev-hero-tagline { font-size: clamp(15px, 2vw, 20px); font-weight: 600; color: var(--blue); line-height: 1.45; }
.ev-hero-desc { font-size: 14px; color: var(--navy); line-height: 1.85; max-width: 520px; }
.ev-hero-desc--full { margin-top: -8px; }
.ev-keynote-full-img {  width: 100%; object-fit: cover; }

.ev-topics-section { padding: 10px 0 24px; background: #fff; }
.ev-topics-section .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.ev-section-title-row {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin-bottom: 24px;
}
.ev-topics-heading {
  margin: 0; color: #0058d6;
  font-size: 28px; font-weight: 800;
  line-height: 1; text-align: center;
  letter-spacing: 0; white-space: nowrap;
}
.ev-title-line {
  position: relative; width: 220px; height: 2px;
  background: linear-gradient(90deg, transparent, #0058d6);
}
.ev-title-line:last-child { background: linear-gradient(90deg, #0058d6, transparent); }
.ev-title-line::after {
  content: ""; position: absolute; top: 50%;
  width: 7px; height: 7px; border-radius: 50%;
  background: #0058d6; transform: translateY(-50%);
}
.ev-title-line:first-child::after { right: 0; }
.ev-title-line:last-child::after  { left: 0; }
.ev-topics-outer { border: 1.5px solid #79aeea; border-radius: 18px; padding: 24px 0; background: #fff; }
.ev-topics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ev-topic-card {
  min-height: 150px; padding: 0 26px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ev-topic-card:not(:last-child) { border-right: 1px solid #c8d9ee; }
.ev-topic-icon {
  width: 62px; height: 62px; margin-bottom: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ev-topic-icon img { object-fit: contain; }
.ev-topic-label { margin: 0; color: #1d2638; font-size: 20px; font-weight: 400; line-height: 1.16; text-align: center; }

/* ── Event Details ── */
.ev-details-section { background: var(--navy); padding: 60px 0; }
.ev-gradient-border {
  width: min(100%, 300px); height: 2px;
  margin: -24px auto 40px;
  background: linear-gradient(90deg, transparent 0%, #1d4ed8 12%, #38bdf8 50%, #1d4ed8 88%, transparent 100%);
}
.ev-gradient-border::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #38bdf8 0%, #1d4ed8 50%, #38bdf8 100%);
}
.ev-details-heading {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 800; color: var(--white);
  text-align: center; margin-bottom: 40px; letter-spacing: 1px;
}
.ev-details-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ev-detail-item { display: flex; align-items: center; gap: 16px; }
.ev-detail-icon {
  width: 62px; height: 62px; padding: 10px;
  border-radius: 50%; background: #0050c8;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ev-detail-icon svg { width: 100%; height: 100%; }
.ev-detail-val { font-size: clamp(15px, 1.8vw, 22px); font-weight: 500; color: var(--white); line-height: 1.1; }
.ev-detail-val sup { font-size: 0.58em; vertical-align: super; }

/* ── Event CTA ── */
.ev-cta-section { padding: 42px 0; background: #ffffff; border-top: 1px solid #dfe3ea; border-bottom: 1px solid #dfe3ea; }
.ev-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-bottom: 28px; }
.ev-cta-quote { flex: 1; max-width: 760px; color: #2f3a4c; padding-left: 28px; }
.ev-cta-statement {
  font-size: clamp(22px, 1.8vw, 38px);
  line-height: 1.35; font-weight: 600;
  margin: 0 0 18px; letter-spacing: -0.3px;
  color: #000a33;
  padding-left: 20px; border-left: 4px solid #1f57d6;
}
.ev-cta-sub-statement { font-size: clamp(16px, 1.8vw, 22px); line-height: 1.5; color: #000a33; padding-left: 24px; margin: 0; font-weight: 500; }
.ev-cta-map { flex-shrink: 0; display: flex; justify-content: flex-end; align-items: center; }
.ev-rwanda-map-img { width: 220px; max-width: 100%; object-fit: contain; display: block; }
.ev-reserve-row { display: flex; justify-content: center; }
.ev-reserve-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 18px; background: #1155d9; color: #fff; text-decoration: none;
  padding: 10px 6px 10px 20px; border-radius: 60px;
  font-size: 20px; font-weight: 600; line-height: 1;
  transition: all .3s ease;
}
.ev-reserve-btn:hover { transform: translateY(-2px); background: #0a47bd; }
.ev-reserve-btn svg { width: 42px; height: 42px; flex-shrink: 0; }

/* ── Event Contact Strip ── */
.ev-contact-strip { background: #004eca; padding: 28px 0; }
.ev-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ev-contact-brand { display: flex; flex-direction: column; gap: 2px; }
.ev-contact-for { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; color: var(--white); }
.ev-contact-name { font-size: 24px; font-weight: 700; color: var(--white); }
.ev-contact-details { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.ev-contact-link { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.78); transition: color var(--transition); }
.ev-contact-link:hover { color: var(--cyan); }
.ev-contact-link svg { flex-shrink: 0; }

/* ============================================================
   RESPONSIVE — TABLET (641px – 1023px)
   ============================================================ */
@media (min-width: 641px) and (max-width: 1023px) {
  .page-section,
  .intro-section,
  .enable-section,
  .solutions-section,
  .approach-section,
  .industries-section,
  .clientele-section,
  .cta-section { padding: 56px 0; }

  .why-section,
  .page-why-section { padding: 60px 0; }

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

  .dt-sol-grid,
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }

  .lifecycle-track { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .lifecycle-track::before { display: none; }
}

/* ============================================================
   RESPONSIVE — ≤1024px (merged: footer, approach, event, page-specific)
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .page-section .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-details-grid { grid-template-columns: repeat(2, 1fr); }

  /* Page-specific grids */
  .dt-sol-grid { grid-template-columns: repeat(2, 1fr); }
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }
  .lifecycle-track { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .lifecycle-track::before { display: none; }

  /* MSDF single-column */
  .msdf-grid { grid-template-columns: 1fr; }
  .msdf-item { border-right: none; }
  .msdf-item:nth-child(3) { border-bottom: 1.5px solid var(--border); }
  .msdf-item:nth-child(4) { border-bottom: none; }
}

/* ============================================================
   RESPONSIVE — EVENT PAGE ≤768px
   ============================================================ */
@media (max-width: 768px) {
  .ev-section-title-row { gap: 14px; }
  .ev-title-line { width: 72px; }
  .ev-topics-heading { font-size: 20px; }
  .ev-topics-grid { grid-template-columns: 1fr 1fr; }
  .ev-topic-card { padding: 22px 16px; }
  .ev-topic-card:not(:last-child) { border-right: 0; }
  .ev-topic-card:nth-child(odd) { border-right: 1px solid #c8d9ee; }
  .ev-topic-card:nth-child(-n + 2) { border-bottom: 1px solid #c8d9ee; }
  .ev-topic-label { font-size: 16px; }
  .ev-hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: calc(var(--nav-h) + 32px); }
  .ev-hero-right { order: -1; }
  .ev-cta-inner { flex-direction: column; text-align: left; align-items: flex-start; gap: 24px; }
  .ev-cta-map { justify-content: flex-start; }
  .ev-rwanda-map-img { width: 160px; }
  .ev-cta-statement { font-size: 24px; }
  .ev-cta-sub-statement { font-size: 16px; }
  .ev-reserve-btn { width: 100%; font-size: 17px; padding: 15px 24px; }
  .ev-contact-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ev-contact-details { gap: 14px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤640px) — consolidated single block
   ============================================================ */
@media (max-width: 640px) {
  :root { --nav-h: 70px; }

  /* ── Core section padding ── */
  .page-section,
  .intro-section,
  .enable-section,
  .solutions-section,
  .approach-section,
  .industries-section,
  .cta-section,
  .contact-form-section,
  .why-section,
  .page-why-section { padding: 28px 0; }
  .clientele-section    { padding: 28px 0 36px; }
  .why-matters-section  { padding: 28px 0 36px; }

  .why-matters-section .container { padding: 0 18px; }

  /* ── Navigation ── */
  .nav-brand img { height: 54px; }

  /* ── Hero ── */
  .hero,
  .inner-hero { min-height: 100vh; min-height: 100dvh; }
  .hero-content,
  .inner-hero .hero-content { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 40px; }

  /* ── Headings ── */
  .intro-heading { margin-bottom: 28px; }
  .cta-heading { white-space: normal; }

  /* ── Grids ── */
  .solutions-grid            { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
  .page-section .approach-grid { grid-template-columns: 1fr; }
  .page-intro-grid           { gap: 24px; }
  .split-section             { gap: 20px; }
  .approach-section .approach-grid { gap: 24px; }
  .enable-row                { grid-template-columns: 1fr; }
  .logo-card                 { min-height: 96px; padding: 16px 12px; }
  .logo-card img             { max-height: 74px; }
  .u-slider-shell,
  .slider-outer              { padding: 0 46px; }
  .footer-grid               { grid-template-columns: 1fr; gap: 28px; }
  .dt-sol-grid               { grid-template-columns: 1fr; }
  .lifecycle-track           { grid-template-columns: repeat(2, 1fr); }
  .achieve-grid              { grid-template-columns: 1fr; }
  .sector-grid               { grid-template-columns: 1fr !important; gap: 16px !important; }
  .outcomes-grid             { grid-template-columns: 1fr !important; gap: 12px !important; }
  .partner-grid              { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  /* ── Cards ── */
  .sol-card     { padding: 24px 20px; }
  .enable-card  { padding: 20px; }
  .why-card     { padding: 20px; }
  .ind-card     { padding: 24px 16px; }
  .ind-icon     { width: 60px; height: 60px; margin-bottom: 14px; }

  /* ── CTA ── */
  .cta-sub { font-size: 14px; margin-bottom: 24px; }

  /* ── Images ── */
  .split-img img,
  .page-intro-img img,
  .intro-img img,
  .approach-img img,
  .use-cases-img img { max-height: 240px; object-fit: cover; }

  /* ── Contact / offices / footer ── */
  .office-grid { padding: 40px 0; }
  .footer      { padding: 40px 0 0; }

  /* ── Why matters ── */
  .why-matters-heading { text-align: center; }
  .why-matters-list    { gap: 15px; }
  .why-matters-list li { font-size: 14px; padding-left: 32px; }

  /* ── Event page ≤640px (with internal duplicates resolved) ── */
  .ev-cta-section,
  .ev-topics-section { padding: 60px 0; }
  .ev-details-section { padding: 48px 0; }
  .ev-hero-inner      { gap: 24px; padding-block: 100px 32px; }
  .ev-hero-right      { width: 100%; }
  .ev-keynote-full-img { width: 100%; height: auto; border-radius: 12px; }
  /* Merged: both ev-topics-grid declarations (grid + gap + min-width) */
  .ev-topics-grid     { grid-template-columns: repeat(2, 1fr); gap: 16px; min-width: unset; }
  /* Kept: second ev-details-grid value (repeat(2,1fr)) — first (1fr) was overridden */
  .ev-details-grid    { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ev-cta-inner       { flex-direction: column; gap: 24px; }
  .ev-cta-map         { width: 100%; }
  .ev-rwanda-map-img  { width: 100%; height: auto; }
  .ev-contact-inner   { flex-direction: column; gap: 16px; align-items: flex-start; }
  .ev-reserve-btn     { font-size: 14px; padding: 14px 24px; }
}

/* ============================================================
   RESPONSIVE — ≤480px
   ============================================================ */
@media (max-width: 480px) {
  .slide     { gap: 8px; }
  .logo-card {
    min-height: 108px;
    min-width: 100%;
    padding: 18px 14px;
  }
  .logo-card img {
    max-width: 100%;
    max-height: 82px;
  }
  .u-slider-shell,
  .slider-outer {
    padding: 0 42px;
  }

  .ev-details-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Digital Transformation Page Styles
   ============================================================ */
 .inner-hero {
      min-height: 100vh;
      min-height: 100dvh;
      align-items: center;
    }

     .inner-hero .hero-content {
      padding-top: calc(var(--nav-h) + 60px);
      padding-bottom: 80px;
    }

    .inner-hero h1 {
      max-width: 760px;
      font-size: clamp(25px, 3.1vw, 39px);
      line-height: 1.2;
    }

   .inner-hero-sub {
      max-width: 690px;
      line-height: 1.55;
    }

    .dt-page .page-section,
    .dt-page .dt-service-section,
    .dt-page .partner-carousel-section {
      padding: 64px 0;
    }

    .dt-page .bg-light,
    .dt-page .dt-service-section.alt {
      background: #ececf4;
    }

    .dt-page .dt-service-section.white,
    .dt-page .bg-white {
      background: #fff;
    }

    .dt-page .page-section.bg-white + .page-section.bg-white,
    .dt-page .partner-carousel-section + .page-section.bg-white {
      background: #ececf4;
    }

    .dt-page .page-section.bg-light + .page-section.bg-light {
      background: #fff;
    }

    .dt-intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      margin-top: 46px;
    }

    .dt-copy p,
    .dt-service-lead p,
    .dt-media-caption,
    .dt-overview-copy p {
      color: var(--text-body);
      font-size: 14px;
      line-height: 1.72;
      margin-bottom: 16px;
    }

    .dt-intro-img img,
    .dt-media img {
      display: block;
      width: 100%;
      border-radius: 0;
      object-fit: cover;
    }

    .dt-intro-img img {
      max-height: 290px;
    }

    .dt-overview-copy {
      max-width: 960px;
      margin: 0 auto;
    }

    .dt-service-lead {
      max-width: 1000px;
    }

    .dt-service-title {
      color: var(--navy);
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 22px;
    }

    .dt-service-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
      margin-top: 34px;
    }

    .dt-service-grid.reverse {
      direction: rtl;
    }

    .dt-service-grid.reverse > * {
      direction: ltr;
    }

    .dt-list-title {
      color: var(--navy);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .dt-check-list {
      display: grid;
      gap: 11px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .dt-check-list li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      align-items: start;
      color: var(--text-body);
      font-size: 13px;
      line-height: 1.45;
    }

    .dt-check-list li::before {
      content: "";
      width: 22px;
      height: 22px;
      background: url("../images/icon-check.png") center/contain no-repeat;
      margin-top: -1px;
    }

    .dt-check-list.is-collapsed > li:nth-child(n+8) {
      display: none;
    }

    .dt-list-toggle-wrap {
      margin-top: 18px;
    }

    .dt-list-toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 24px;
      border: 2px solid var(--blue);
      border-radius: var(--radius-pill);
      background: transparent;
      color: var(--blue);
      font-family: var(--font);
      font-size: 13px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: background var(--transition), color var(--transition), transform var(--transition);
    }

    .dt-list-toggle:hover {
      background: var(--blue);
      color: #fff;
      transform: translateY(-2px);
    }

    .dt-list-toggle svg {
      width: 15px;
      height: 15px;
      transition: transform 0.25s ease;
    }

    .dt-list-toggle[aria-expanded="true"] svg {
      transform: rotate(180deg);
    }

    .dt-media img {
      max-height: 260px;
    }

    .dt-media-caption {
      margin-top: 20px;
      margin-bottom: 0;
      max-width: 420px;
    }

    .partner-static-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      max-width: 940px;
      margin: 38px auto 0;
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: 6px;
      background: #fff;
    }

    .partner-logo-card {
      min-height: 76px;
      height: auto;
      border-radius: 5px;
      padding: 14px 12px;
      text-align: center;
      box-shadow: none;
    }

    .partner-mark {
      color: #222;
      font-size: 18px;
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: 0;
    }

    .partner-mark small {
      display: block;
      font-size: 10px;
      font-weight: 600;
      margin-top: 4px;
      color: #4a5568;
    }

    .partner-mark.red { color: #e51c23; }
    .partner-mark.blue { color: #006edb; }
    .partner-mark.green { color: #19a85b; }
    .partner-mark.gray { color: #686b73; }
    .partner-mark.purple { color: #4d40b7; }

    .dt-lifecycle-wrap {
      margin-top: 34px;
      padding: 40px 0;
      background: #ececf4;
    }

    .dt-lifecycle-kicker {
      color: #111;
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 28px;
    }

    .dt-lifecycle-panel {
      border: 1px solid #2148b7;
      border-radius: 6px;
      padding: 34px 42px;
      background: transparent;
    }

    .dt-lifecycle-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px 52px;
    }

    .dt-lifecycle-step {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 22px;
      align-items: start;
    }

    .dt-lifecycle-step:nth-child(odd) {
      border-right: 1px solid #c3c8dc;
      padding-right: 44px;
    }

    .dt-lifecycle-icon {
      color: #003f9f;
    }

    .dt-lifecycle-icon svg {
      display: block;
      width: 64px;
      height: 64px;
    }

    .dt-lifecycle-step h3 {
      color: #111;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .dt-lifecycle-step p {
      color: #202020;
      font-size: 13px;
      line-height: 1.55;
      margin: 0;
    }


    .dt-page .why-card-title {
      font-size: 15px;
      font-weight: 500;
      margin-bottom: 22px;
    }

    .dt-achieve-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px 58px;
      max-width: 820px;
      margin: 36px auto 0;
      list-style: none;
      padding: 0;
    }

    .dt-achieve-list li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      color: var(--text-body);
      font-size: 14px;
      line-height: 1.45;
    }

    .dt-achieve-list li::before {
      content: "";
      width: 22px;
      height: 22px;
      background: url("../images/icon-check.png") center/contain no-repeat;
      margin-top: -1px;
    }

    .dt-page .cta-section {
      padding: 58px 0;
    }

    .dt-page .cta-heading {
      font-size: clamp(22px, 2.4vw, 30px);
    }


    @media (max-width: 1024px) {
      .partner-static-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .dt-service-grid,
      .dt-intro-grid {
        gap: 38px;
      }
    }

    @media (max-width: 768px) {
      .dt-page .inner-hero {
        min-height: 380px;
      }

      .dt-intro-grid,
      .dt-service-grid,
      .dt-service-grid.reverse,
      .dt-lifecycle-grid,
      .dt-achieve-list {
        grid-template-columns: 1fr;
        direction: ltr;
      }

      .dt-intro-img {
        order: -1;
      }

      .dt-service-grid {
        gap: 28px;
      }

      .dt-lifecycle-panel {
        padding: 28px 22px;
      }

      .dt-lifecycle-step,
      .dt-lifecycle-step:nth-child(odd) {
        border-right: 0;
        padding-right: 0;
      }

      .partner-static-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
      }

      .dt-page .why-card {
        padding: 24px;
      }

      .dt-check-list.is-collapsed > li:nth-child(n+7) {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .partner-static-grid {
        grid-template-columns: 1fr;
      }

      .dt-lifecycle-step {
        grid-template-columns: 58px 1fr;
        gap: 16px;
      }

      .dt-lifecycle-icon svg {
        width: 50px;
        height: 50px;
      }
  

  .lc-item {
    padding: 0;          /* remove side padding when full-width */
    align-items: center; /* optional: center content on mobile */
    text-align: center;  /* optional: match alignment */
  }
   
    }


/* ============================================================
   Data Protection Disaster Recovery Page Styles
   ============================================================ */
.dprd-page {
      color: #202020;
      background: #fff;
    }

    .dprd-page .container {
      max-width: 1120px;
    }

  

    .dprd-page .btn-schedule {
      padding: 14px 28px;
      font-size: 17px;
    }

    .dprd-intro {
      padding: 54px 0 28px;
      background: #fff;
    }

    .dprd-narrow {
      max-width: 960px;
      margin: 0 auto;
    }

    .dprd-narrow p,
    .dprd-copy p,
    .dprd-service-lead,
    .dprd-section-copy {
      color: #202020;
      font-size: 15px;
      line-height: 1.35;
      margin-bottom: 26px;
    }

    .dprd-heading {
      color: #30308d;
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 700;
      line-height: 1.16;
      text-align: center;
      margin: 48px auto 52px;
      max-width: 860px;
    }

    .dprd-provider-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-bottom: 80px;
    }

    .dprd-copy p {
      max-width: 480px;
    }

    .dprd-image img {
      display: block;
      width: 100%;
      object-fit: cover;
    }

    .dprd-provider-grid .dprd-image img {
      min-height: 320px;
      max-height: 360px;
    }

    .dprd-solutions-intro {
      padding: 40px 0 0 54px;
      background: #ededf5;
      text-align: center;
    }

    .dprd-black-heading {
      color: #000;
      font-size: clamp(30px, 2.5vw, 44px);
      font-weight: 700;
      line-height: 1.18;
      margin-bottom: 32px;
    }

    .dprd-section-copy {
      max-width: 980px;
      margin: 0 auto;
    }

    .dprd-solution {
      padding: 64px 0;
      background: #fff;
    }

    .dprd-solution.alt {
      background: #ededf5;
    }

    .dprd-solution h2 {
      color: #30308d;
      font-size: clamp(23px, 2.3vw, 31px);
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 30px;
    }

    .dprd-service-lead {
      margin-bottom: 54px;
    }

    .dprd-feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 78px;
      align-items: center;
    }

    .dprd-feature-grid.reverse {
      direction: rtl;
    }

    .dprd-feature-grid.reverse > * {
      direction: ltr;
    }

    .dprd-check-list {
      display: grid;
      gap: 24px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .dprd-check-list li {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 4px;
      align-items: start;
      color: #202020;
      font-size: 16px;
      line-height: 1.22;
    }

    .dprd-check-list li::before {
      content: "";
      width: 22px;
      height: 22px;
      background: url("../images/icon-check.png") center/contain no-repeat;
      margin-top: -3px;
    }

    .dprd-feature-grid .dprd-image img {
      min-height: 270px;
      max-height: 300px;
    }

    .dprd-matters {
      padding: 70px 0 82px;
      background: #fff;
      text-align: center;
    }

    .dprd-matters h2 {
      color: #30308d;
      font-size: clamp(30px, 3vw, 44px);
      font-weight: 700;
      margin-bottom: 28px;
    }

    .dprd-matters h3 {
      color: #30308d;
      font-size: clamp(22px, 2.4vw, 32px);
      font-weight: 500;
      margin-bottom: 46px;
    }

    .dprd-matters-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px 84px;
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
      list-style: none;
      padding: 0;
    }

    .dprd-matters-list li {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 4px0;
      color: #202020;
      font-size: 16px;
      line-height: 1.24;
    }

    .dprd-matters-list li::before {
      content: "";
      width: 22px;
      height: 22px;
      background: url("../images/icon-check.png") center/contain no-repeat;
      margin-top: -3px;
    }

    .dprd-why {
      position: relative;
      overflow: hidden;
      padding: 40px 0;
      background: #2299cf;
      color: #fff;
    }

    .dprd-why::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(29,157,210,0.83), rgba(29,157,210,0.83)), url("../images/why-visiontech.jpg") center/cover no-repeat;
      z-index: 0;
    }

    .dprd-why .container {
      position: relative;
      z-index: 1;
    }

    .dprd-why h2 {
      color: #fff;
      text-align: center;
      font-size: clamp(30px, 3.3vw, 46px);
      font-weight: 700;
      margin-bottom: 54px;
    }

    .dprd-why-card {
      border: 1.5px solid rgba(255,255,255,0.65);
      border-radius: 16px;
      padding: 44px 52px;
    }

    .dprd-why-card p,
    .dprd-why-card li {
      color: #fff;
      font-size: 21px;
      line-height: 1.35;
    }

    .dprd-why-list {
      display: grid;
      gap: 20px;
      list-style: none;
      margin: 34px 0;
      padding: 0;
    }

    .dprd-why-list li {
      display: grid;
      grid-template-columns: 32px 1fr;
      gap: 22px;
      align-items: start;
    }

    .dprd-why-list li::before {
      content: "";
      width: 22px;
      height: 22px;
      background: url("../images/icon-arrow.png") center/contain no-repeat;
      margin-top: 0;
    }

    .dprd-page .clientele-section {
      padding: 58px 0 70px;
    }

    .dprd-page .clientele-section .sec-heading {
      font-size: clamp(30px, 3vw, 42px);
    }

    .dprd-page .logo-card {
      height: 94px;
      padding: 14px 18px;
    }
 

    @media (max-width: 1024px) {
      .dprd-provider-grid,
      .dprd-feature-grid {
        gap: 40px;
      }

      .dprd-check-list li {
        font-size: 18px;
      }

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

    @media (max-width: 768px) {
      .dprd-page .inner-hero {
        min-height: 430px;
      }

      .dprd-provider-grid,
      .dprd-feature-grid,
      .dprd-feature-grid.reverse,
      .dprd-matters-list {
        grid-template-columns: 1fr;
        direction: ltr;
      }

      .dprd-provider-grid {
        margin-bottom: 52px;
      }

      .dprd-narrow p,
      .dprd-copy p,
      .dprd-service-lead,
      .dprd-section-copy {
        font-size: 16px;
      }

      .dprd-check-list li,
      .dprd-matters-list li,
      .dprd-why-card p,
      .dprd-why-card li {
        font-size: 16px;
      }

      .dprd-why-card {
        padding: 28px 24px;
      }

      .dprd-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(10,47,110,0.30);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
}
#scrollTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTop:hover { background: var(--navy); }
