:root {
      --primary: #1558f0;
      --primary-dark: #0a2a78;
      --primary-deep: #061d5c;
      --primary-light: #edf4ff;
      --secondary: #5c7cff;
      --accent: #25c3a6;
      --text: #0a1735;
      --text-soft: #5f6980;
      --white: #ffffff;
      --background: #f7f9fd;
      --border: #dfe6f2;
      --shadow-sm: 0 8px 24px rgba(20, 47, 110, 0.07);
      --shadow-md: 0 18px 45px rgba(20, 47, 110, 0.12);
      --radius-sm: 10px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --transition: 0.25s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Inter", sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.65;
      overflow-x: hidden;
    }
    .container {
	  max-width: 1280px;
	  width: 100%;
	  margin-left: auto;
	  margin-right: auto;
	  padding-left: 20px; 
	  padding-right: 20px;
	}
	p, .section-description {
	  font-size: 15px !important;
	}
	@media (max-width: 767.98px) {
    p, .section-description {
        font-size: 14px !important;
    }
    }
    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .section {
      padding: 95px 0;
    }

    .section-light {
      background: var(--background);
    }

    .section-blue {
      color: var(--white);
      background:
        radial-gradient(circle at 85% 10%, rgba(92, 124, 255, 0.45), transparent 28%),
        linear-gradient(135deg, #061d5c 0%, #0b3baa 50%, #245fff 100%);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: currentColor;
      border-radius: 5px;
    }

    .section-blue .eyebrow {
      color: #afc7ff;
    }

    .section-heading {
      max-width: 720px;
      margin-bottom: 42px;
    }

    .section-heading.center {
      text-align: center;
      margin-inline: auto;
    }

    .section-heading h2 {
      margin-bottom: 14px;
      font-size: clamp(2rem, 4vw, 3.15rem);
      line-height: 1.13;
      letter-spacing: -0.045em;
    }

    .section-heading p {
      color: var(--text-soft);
      font-size: 1.03rem;
    }

    .section-blue .section-heading p {
      color: #d4dffd;
    }

    .btn-primary-custom {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 12px 21px;
      color: var(--white);
      font-weight: 700;
      background: linear-gradient(135deg, var(--primary), #386cff);
      border: 0;
      border-radius: 9px;
      box-shadow: 0 10px 24px rgba(21, 88, 240, 0.28);
      transition:
        transform var(--transition),
        box-shadow var(--transition);
    }

    .btn-primary-custom:hover {
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 15px 30px rgba(21, 88, 240, 0.36);
    }

    .custom-hero-btn {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding-inline: 22px;
      font-weight: 700;
      border-radius: 9px;
    }

    .card {
      border-color: var(--border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }

/* =========================
   TOP BAR
========================= */
.top-bar {
    position: relative;
    z-index: 1010;
    padding: 8px 16px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9edf3;
    font-size: 0.875rem;
}

.top-bar a {
  text-decoration: none;
}

/* Contact group */
.top-bar-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 28px;
}

/* Phone and email */
.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #212529;
  line-height: 1.4;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.top-bar-link i {
  flex-shrink: 0;
  color: #02103a;
  font-size: 0.85rem;
}

.top-bar-link:hover {
  color: #314DDF;
  transform: translateY(-1px);
}

.top-bar-link:hover i {
  color: #314DDF;
}

/* Quick Estimate container */
.top-bar-estimate-wrap {
  display: flex;
  justify-content: flex-end;
}

/* Quick Estimate link */
.top-bar-estimate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  color: #02103a;
  font-weight: 600;
  line-height: 1.4;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.top-bar-estimate i {
  color: #000;
}
.top-bar-estimate:hover i {
    color: #314DDF !important;
}

.top-bar-estimate:hover {
  color: #314DDF;
  transform: translateY(-1px);
}


/* =========================
   HEADER
========================= */
.custom-header {
  position: fixed;
  /* Normal position below top bar */
  top: 50px;
  /* Wider than current 20px */
  left: 8px;
  right: 8px;
  z-index: 1000;
  padding: 10px 22px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 55%
    ),
    linear-gradient(
      90deg,
      #02103a 0%,
      #041b66 100%
    );
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(2, 16, 58, 0.18);
  transition:
    top 0.3s ease,
    left 0.3s ease,
    right 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* =========================
   LOGO
========================= */
.brand-logo {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #ffffff !important;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
}

.header-logo-img {
  display: block;
  width: auto;
  height: 38px;
  max-width: 190px;
  object-fit: contain;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

/* =========================
   NAVIGATION
========================= */
.custom-nav-link {
  display: block;
  padding: 7px 13px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}

.custom-nav-link:hover,
.custom-nav-link:focus {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   GET IN TOUCH
========================= */
.btn-get-in-touch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 15px;
  color: #02103a;
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid #ffffff;
  border-radius: 5px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.btn-get-in-touch:hover {
  color: #041b66;
  background: #eef3ff;
  transform: translateY(-1px);
}

/* =========================
   HAMBURGER
========================= */
.navbar-toggler {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 6px;
  box-shadow: none !important;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

/* =========================
   SERVICES DROPDOWN
========================= */
.services-dropdown-menu {
  min-width: 230px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #e7ebf2;
  border-radius: 9px;
  box-shadow: 0 15px 40px rgba(2, 16, 58, 0.18);
}

.services-dropdown-menu .dropdown-item {
  padding: 9px 12px;
  color: #15203a;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.services-dropdown-menu .dropdown-item:hover {
  color: #3157f5;
  background: #eef4ff;
}

/* ========================================
   STICKY / SCROLLED HEADER
======================================== */
.custom-header.is-scrolled {
  /* top bar has scrolled away */
  top: 8px;
  background: rgba(255, 255, 255, 0.97);
  border-color: #e4e8f0;
  box-shadow:
    0 5px 18px rgba(15, 23, 42, 0.08),
    0 1px 3px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


/* Navigation becomes dark */
.custom-header.is-scrolled .custom-nav-link {
  color: #16213b !important;
}

.custom-header.is-scrolled .custom-nav-link:hover,
.custom-header.is-scrolled .custom-nav-link:focus {
  color: #3157f5 !important;
  background: #f1f4ff;
}


/* Services arrow */
.custom-header.is-scrolled
.services-dropdown > .dropdown-toggle::after {
  border-top-color: #16213b;
}


/* CTA button becomes blue */
.custom-header.is-scrolled .btn-get-in-touch {
  color: #ffffff;
  background: #3157f5;
  border-color: #3157f5;
}

.custom-header.is-scrolled .btn-get-in-touch:hover {
  color: #ffffff;
  background: #2445d8;
  border-color: #2445d8;
}


/* Hamburger in white sticky header */
.custom-header.is-scrolled .navbar-toggler {
  border-color: #d8deeb !important;
  background: #f6f8fc;
}



/* ========================
   HERO
======================== */

.homepage-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  padding-top: 115px;
  padding-bottom: 95px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 86% 18%,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.04) 28%,
      transparent 55%
    ),
    radial-gradient(
      circle at 35% 85%,
      rgba(34, 124, 255, 0.18) 0%,
      transparent 43%
    ),
    linear-gradient(
      105deg,
      #020d34 0%,
      #03154f 45%,
      #061e6f 100%
    );
}

/* ========================
   FLOATING HEADER
======================== */
.brand-logo {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.header-logo-img {
  display: block;
  width: auto;
  height: 38px;
  max-width: 190px;
  object-fit: contain;
}

.logo-main {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-small {
  font-size: 15px;
  font-weight: 300;
  opacity: 0.85;
}

.custom-nav-link {
  padding: 7px 13px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.custom-nav-link:hover,
.custom-nav-link:focus {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
}

.btn-get-in-touch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 15px;
  color: #02103a;
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.btn-get-in-touch:hover {
  color: #041b66;
  background: #eef3ff;
  transform: translateY(-1px);
}

.navbar-toggler {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: none !important;
}

/* Dropdown */

.dropdown-menu {
  padding: 8px;
  background: #ffffff;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(2, 16, 58, 0.2);
}

.dropdown-item {
  padding: 9px 12px;
  color: #15203a;
  font-size: 13px;
  border-radius: 6px;
}

.dropdown-item:hover {
  color: #1558f0;
  background: #eef4ff;
}

/* SERVICES DROPDOWN */
/* =========================
   SERVICES DROPDOWN
========================= */

.services-dropdown {
  position: relative;
}

.services-dropdown-menu {
  min-width: 235px;

  padding: 8px;

  background: #ffffff;

  border: 1px solid rgba(2, 16, 58, 0.08);
  border-radius: 10px;

  box-shadow: 0 15px 40px rgba(2, 16, 58, 0.18);

  margin-top: 0;
}

.services-dropdown-menu .dropdown-item {
  padding: 10px 13px;

  color: #15203a;

  font-size: 13px;
  font-weight: 500;

  border-radius: 6px;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    padding-left 0.2s ease;
}

.services-dropdown-menu .dropdown-item:hover {
  color: #3157f5;

  background: #eef4ff;

  padding-left: 17px;
}

/* =========================
   HEADER LOGO SWITCH
========================= */

.brand-logo {
  position: relative;

  display: inline-flex;
  align-items: center;

  width: 190px;
  height: 38px;

  margin: 0;
  padding: 0;
}


/* Both logos stay in same position */

.header-logo-img {
  position: absolute;
  top: 50%;
  left: 0;

  width: auto;
  height: 38px;
  max-width: 190px;

  object-fit: contain;

  transform: translateY(-50%);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}


/* =========================
   NORMAL DARK HEADER
========================= */

/* White logo visible */

.header-logo-white {
  opacity: 1;
  visibility: visible;
}


/* Blue logo hidden */

.header-logo-blue {
  opacity: 0;
  visibility: hidden;
}


/* =========================
   SCROLLED WHITE HEADER
========================= */

.custom-header.is-scrolled .header-logo-white {
  opacity: 0;
  visibility: hidden;
}

.custom-header.is-scrolled .header-logo-blue {
  opacity: 1;
  visibility: visible;
}






/* =========================================
   CONSTRUCTION SAAS HERO
========================================= */
.construction-saas-hero {
    position: relative;
    overflow: hidden;
    padding: 91px 0 141px;
    background: #061a69;
}

/* LEFT CONTENT */

.construction-saas-content {
  max-width: 510px;
}

/* BADGE */
.construction-saas-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 7px 22px;
    color: #ffffff;
    background: rgba(255,255,255,.12);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
}


/* TITLE */
.construction-saas-content h1 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
}

.construction-saas-content h1 span {
  display: block;
}

/* DESCRIPTION */
.construction-saas-content p {
  max-width: 500px;
  margin: 0 0 19px;
  color: rgba(255,255,255,.84);
  font-size: 15px;
  line-height: 1.65;
}

/* BUTTONS */
.construction-saas-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 21px;
}

.construction-saas-btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 22px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}


/* LIGHT BUTTON */
.construction-saas-btn-light {
  color: #314DDF;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 5px;
}

.construction-saas-btn-light:hover {
  color: #ffffff;
  background: #314DDF;
  border-color: #314DDF;
  transform: translateY(-2px);
}

/* OUTLINE BUTTON */
.construction-saas-btn-outline {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255,255,255,.72);
    /* border-left: 0; */
    border-radius: 5px;
}

.construction-saas-btn-outline:hover {
  color: #061a69;
  background: #ffffff;
  transform: translateY(-2px);
}

/* ARROW */
.construction-saas-btn .fa-arrow-right {
  font-size: 7px;
  transition: transform .25s ease;
}

.construction-saas-btn:hover .fa-arrow-right {
  transform: translateX(3px);
}

/* RIGHT IMAGE */
.construction-saas-image-wrap {
  width: 100%;
  max-width: 670px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 10px;
}

.construction-saas-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}




/* =========================================
   PROJECT SNAPSHOT
========================================= */
.project-snapshot-section {
  padding: 35px 0;
  background: #ffffff;
}

/* MAIN BOX */
.project-snapshot-box {
    position: relative;
    overflow: hidden;
    padding: 30px 28px 24px;
    background: #ffffff;
    border: 1px solid #e5e9f1;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(17, 36, 86, 0.05);
    margin-top: -137px;
}

/* HEADING */
.project-snapshot-heading {
  max-width: 600px;
  margin: 0 auto 25px;
}

.project-snapshot-heading h2 {
  margin: 0 0 7px;
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

.project-snapshot-heading p {
  margin: 0;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.75;
}

/* ROWS */
.project-snapshot-row {
  position: relative;
}

.project-snapshot-row-top {
  border-bottom: 1px solid #e8ebf1;
}

.project-snapshot-row-bottom {
  padding-top: 14px;
}

/* ITEM */
.project-snapshot-item {
  min-height: 75px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-right: 1px solid #e8ebf1;
}

.project-snapshot-row-top > div:last-child
.project-snapshot-item {
  border-right: 0;
}

/* bottom row */
.project-snapshot-item-bottom {
  align-items: flex-start;
}

/* ICON */
.project-snapshot-icon {
    flex: 0 0 59px;
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    color: #314DDF;
    background: #ffffff;
    font-size: 32px;
    transition: color 0.25s ease,
    transform 0.25s ease;
}

.project-snapshot-item:hover
.project-snapshot-icon {
  color: #2343d0;
  transform: translateY(-2px);
}

/* CONTENT */
.project-snapshot-content {
  flex: 1;
}

.project-snapshot-content h3 {
  margin: 0 0 3px;
  color: #000;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.project-snapshot-content p {
  margin: 0;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.75;
}

/* COUNTRY */
.project-snapshot-country {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.project-snapshot-country img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}





/* =========================================
   ABOUT THE CLIENT
========================================= */
.client-about-section {
    padding: 25px 0 40px;
    background: #ffffff;
}

/* LEFT CONTENT */
.client-about-content {
  max-width: 620px;
}

.client-about-eyebrow {
  display: inline-block;
  margin-bottom: 9px;
  color: #000;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.client-about-eyebrow strong {
  color: #314DDF;
  font-weight: 800;
}

.client-about-content h2 {
  margin: 0 0 14px;
  color: #000;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}

.client-about-content p {
  margin: 0 0 14px;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.7;
}

.client-about-content p:last-child {
  margin-bottom: 0;
}

/* RIGHT IMAGE */
.client-about-image-area {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  padding-bottom: 28px;
}

.client-about-image-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.client-about-image {
  width: 100%;
  height: 305px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.client-about-image-area:hover
.client-about-image {
  transform: scale(1.025);
}





/* =========================================
   BUSINESS OBJECTIVES
========================================= */
.business-objectives-section {
  padding: 65px 0;
  background: #f7f7f7;
}

/* HEADING */
.business-objectives-heading {
  max-width: 700px;
  margin: 0 auto 28px;
}

.business-objectives-heading h2 {
  margin: 0 0 7px;
  color: #000;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.business-objectives-heading p {
  margin: 0;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.65;
}

/* CARD */
.business-objective-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 22px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e8ecf3;
  border-radius: 11px;
  box-shadow:
    0 7px 20px rgba(17, 36, 86, 0.06);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.business-objective-card:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 87, 245, 0.28);
  box-shadow:
    0 17px 36px rgba(49, 87, 245, 0.12);
}

/* ICON */
.business-objective-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #314DDF;
  background: #eef2ff;
  border-radius: 50%;
  font-size: 29px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.business-objective-card:hover
.business-objective-icon {
  color: #ffffff;
  background: #314DDF;
  transform: scale(1.07);
  box-shadow:
    0 9px 22px rgba(49, 87, 245, 0.18);
}

/* TITLE */
.business-objective-card h3 {
  margin: 0 0 9px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

/* DESCRIPTION */
.business-objective-card p {
  max-width: 270px;
  margin: 0 auto;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.6;
}






/* =========================================
   CHALLENGES SECTION
========================================= */
.challenges-section {
  padding: 65px 0 70px;
  background: #0B1E6D;
}

/* HEADING */
.challenges-heading {
  max-width: 700px;
  margin: 0 auto 26px;
}

.challenges-heading h2 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.challenges-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

/* CARD */
.challenge-card {
  min-height: 155px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.challenge-card:hover {
  transform: translateY(-5px);
  border-color: rgba(49, 87, 245, 0.35);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.13);
}

/* ICON */
.challenge-icon {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    color: #314DDF;
    background: #eef2ff;
    border-radius: 50%;
    font-size: 29px;
    transition: color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.challenge-card:hover .challenge-icon {
  color: #ffffff;
  background: #314DDF;
  transform: scale(1.06);
}

/* CONTENT */
.challenge-content {
  flex: 1;
}

.challenge-content h3 {
  margin: 0 0 7px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.challenge-content p {
  margin: 0;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.6;
}





/* =========================================
   OUR APPROACH
========================================= */
.our-approach-section {
  padding: 65px 0;
  background: #ffffff;
}

/* HEADING */
.our-approach-heading {
  max-width: 700px;
  margin: 0 auto 38px;
}

.our-approach-heading h2 {
  margin: 0 0 7px;
  color: #000;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.our-approach-heading p {
  margin: 0;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.65;
}

/* PROCESS WRAPPER */
.our-approach-process {
  position: relative;
}

/* DOTTED CONNECTOR */
.our-approach-line {
    position: absolute;
    top: 52px;
    left: 8.5%;
    right: 8.5%;
    height: 1px;
    border-top: 1px dashed #314DDF;
    z-index: 0;
}

/* STEP */
.our-approach-step {
  position: relative;
  z-index: 2;
  max-width: 170px;
  margin: 0 auto;
}

/* ICON */
.our-approach-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    color: #314DDF;
    background: #eef2ff;
    border-radius: 50%;
    font-size: 29px;
    transition: color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.our-approach-step:hover
.our-approach-icon {
  color: #ffffff;
  background: #314DDF;
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 9px 22px rgba(49, 87, 245, 0.18);
}

/* TITLE */
.our-approach-step h3 {
  margin: 0 0 7px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

/* DESCRIPTION */
.our-approach-step p {
  margin: 0;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.55;
}





/* =========================================
   SOLUTION OVERVIEW
========================================= */
.solution-overview-section {
  padding: 40px 0;
  background: #ffffff;
}

/* LEFT CONTENT */
.solution-overview-content {
  max-width: 610px;
}

.solution-overview-eyebrow {
  display: inline-block;
  margin-bottom: 9px;
  color: #000;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.solution-overview-eyebrow strong {
  color: #314DDF;
  font-weight: 800;
}

.solution-overview-content h2 {
  margin: 0 0 13px;
  color: #000;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.solution-overview-content p {
  max-width: 600px;
  margin: 0 0 20px;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.65;
}

/* STATS BOX */
.solution-overview-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  max-width: 520px;
  background: #ffffff;
  border: 1px solid #e6eaf1;
  border-radius: 8px;
  box-shadow:
    0 6px 18px rgba(17, 36, 86, 0.05);
}

.solution-overview-stat {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-right: 1px solid #e7ebf1;
}

.solution-overview-stat:last-child {
  border-right: 0;
}

/* ICON */
.solution-overview-stat-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #314DDF;
    background: #eef2ff;
    border-radius: 50%;
    font-size: 19px;
    transition: color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.solution-overview-stat:hover
.solution-overview-stat-icon {
  color: #ffffff;
  background: #314DDF;
  transform: scale(1.05);
}

/* TEXT */
.solution-overview-stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.solution-overview-stat-text strong {
  color: #000;
  font-size: 17px;
  font-weight: 700;
}

.solution-overview-stat-text span {
  margin-top: 2px;
  color: #2C3E50;
  font-size: 15px;
}

/* RIGHT IMAGE */
.solution-overview-image-wrap {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-overview-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}




/* =========================================
   RESULT & IMPACT
========================================= */
.result-impact-section {
  padding: 65px 0;
  background: #ffffff;
}

/* HEADING */
.result-impact-heading {
  max-width: 700px;
  margin: 0 auto 28px;
}

.result-impact-heading h2 {
  margin: 0 0 7px;
  color: #000;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.result-impact-heading p {
  margin: 0;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.55;
}

/* IMPACT STAT CARD */
.impact-stat-card {
  min-height: 215px;
  padding: 20px 17px;
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 10px;
  box-shadow:
    0 7px 20px rgba(17, 36, 86, 0.06);

  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.impact-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(49,87,245,.25);
  box-shadow:
    0 16px 32px rgba(49,87,245,.10);
}


/* TOP */
.impact-stat-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.impact-stat-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #314DDF;
  font-size: 24px;
}

.impact-stat-top strong {
  color: #314DDF;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

/* TITLE */
.impact-stat-card h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

/* TEXT */
.impact-stat-card p {
  margin: 0;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.55;
}

/* TESTIMONIAL CAROUSEL */
.impact-testimonial-carousel {
  position: relative;
  min-height: 215px;
}

/* CARD */
.impact-testimonial-card {
  position: relative;
  min-height: 215px;
  padding: 19px 20px 20px;
  background: #ffffff;
  border: 1px solid #e4e8ef;
  border-radius: 10px;
  box-shadow:
    0 7px 20px rgba(17,36,86,.06);
}

/* QUOTE */
.impact-quote-icon {
  position: absolute;
  top: 15px;
  left: 17px;
  color: #c5c8ff;
  font-size: 28px;
}

/* TEXT */
.impact-testimonial-text {
  margin: 0 0 14px;
  padding-left: 36px;
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.5;
}

/* AUTHOR */
.impact-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 36px;
}

.impact-testimonial-avatar {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.impact-testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.impact-testimonial-author-info strong {
    color: #000;
    font-size: 13px;
    font-weight: 700;
}

.impact-testimonial-author-info span {
    margin-bottom: 2px;
    color: #2C3E50;
    font-size: 11px;
}

/* STARS */
.impact-testimonial-stars {
    display: flex;
    gap: 2px;
    color: #314DDF;
    font-size: 10px;
}

/* TESTIMONIAL INDICATORS */
.impact-testimonial-indicators {
  position: absolute;
  right: 15px;
  bottom: 12px;
  left: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin: 0;
  padding: 0;
  z-index: 10;
}

/* NORMAL DOT */
.impact-testimonial-indicators [data-bs-target] {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin: 0;
  padding: 0;
  background-color: #cbd3ef;
  border: 0;
  border-radius: 50%;
  opacity: 1;
  text-indent: 0;
  transition:
    width 0.25s ease,
    background-color 0.25s ease,
    border-radius 0.25s ease;
}

/* ACTIVE DOT */
.impact-testimonial-indicators [data-bs-target].active {
  flex-basis: 17px;
  width: 17px;
  background-color: #314DDF;
  border-radius: 20px;
}

/* CAROUSEL TRANSITION */
.impact-testimonial-carousel
.carousel-item {
  transition:
    transform .6s ease-in-out,
    opacity .6s ease-in-out;
}






/* =========================================
   KEY CAPABILITIES
========================================= */
.key-capabilities-section {
  padding: 55px 0 65px;
  background: #0B1E6D;
}

/* HEADING*/
.key-capabilities-heading {
  margin-bottom: 28px;
}

.key-capabilities-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

/* CARD */
.key-capability-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.key-capability-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.key-capability-image-wrap {
  width: 100%;
  height: 155px;
  overflow: hidden;
  background: #eef1f5;
}

.key-capability-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.key-capability-card:hover
.key-capability-image {
  transform: scale(1.04);
}

/* CONTENT */
.key-capability-content {
  flex: 1;
  padding: 14px 15px 18px;
  background: #ffffff;
}

/* TITLE */
.key-capability-content h3 {
  margin: 0 0 8px;
  color: #314DDF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

/* DESCRIPTION */
.key-capability-content p {
  margin: 0;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.65;
}





/* TECHNOLOGY STACK */
.technology-stack-section {
  padding: 30px 0 45px;
  background: #ffffff;
}

/* MAIN BOX */
.technology-stack-box {
  padding: 20px 28px 22px;
  background: #ffffff;
  border: 1px solid #e3e8f1;
  border-radius: 9px;
  box-shadow:
    0 6px 18px rgba(17, 36, 86, 0.06);
}

/* HEADING */
.technology-stack-heading {
  margin-bottom: 20px;
}

.technology-stack-heading h2 {
  margin: 0 0 5px;
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.technology-stack-heading p {
  margin: 0;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.5;
}

/* LIST */
.technology-stack-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 20px;
    margin-top: 38px;
}

/* ITEM */
.technology-stack-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

/* LOGO */
.technology-stack-logo {
    width: 63px;
    height: 60px;
    display: block;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.technology-stack-item:hover
.technology-stack-logo {
  transform: scale(1.08);
}





/* =========================================
   EXPLORE SIMILAR PROJECTS
========================================= */
.similar-projects-section {
  padding: 60px 0;
  background: #f7f7f7;
}

/* HEADING */
.similar-projects-heading {
  max-width: 700px;
  margin: 0 auto 26px;
}

.similar-projects-heading h2 {
  margin: 0 0 7px;
  color: #000;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.similar-projects-heading p {
  margin: 0;
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.2;
}

/* CARD */
.similar-project-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e6eaf1;
    border-radius: 9px;
    box-shadow: 0 6px 18px rgba(17, 36, 86, 0.06);
    transition: transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
    padding: 14px;
}

.similar-project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(49, 87, 245, 0.22);
  box-shadow:
    0 15px 30px rgba(49, 87, 245, 0.10);
}

/* INNER LAYOUT */
.similar-project-card-inner {
  display: flex;
  align-items: stretch;
  min-height: 150px;
}

/* IMAGE */
.similar-project-image-wrap {
    flex: 0 0 42%;
    max-width: 42%;
    overflow: hidden;
    background: #eef2f4;
    border-radius: 10px;
}

.similar-project-image {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.similar-project-card:hover
.similar-project-image {
  transform: scale(1.03);
}

/* CONTENT */
.similar-project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 12px 11px;
    JUSTIFY-CONTENT: center;
}

/* TITLE */
.similar-project-content h3 {
  margin: 0 0 5px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

/* BADGE */
.similar-project-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    margin-bottom: 6px;
    padding: 3px 8px;
    color: #333;
    background: #EFEFEF;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 500;
}

/* DESCRIPTION */
.similar-project-content p {
  margin: 0 0 7px;
  color: #2C3E50;
  font-size: 8.5px;
  line-height: 1.45;
}

/* LINK */
.similar-project-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #314DDF;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.similar-project-link i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.similar-project-link:hover i {
  transform: translateX(3px);
}



/* =========================================
   SIMILAR BUILD CTA
========================================= */

.similar-build-cta-section {
  padding: 24px 0 34px;
  background: #ffffff;
}


/* MAIN BOX */
.similar-build-cta-box {
    padding: 27px 24px;
    background: radial-gradient(circle at 88% 15%, rgba(70, 95, 255, 0.15), transparent 34%), linear-gradient(110deg, #06164f 0%, #071d68 58%, #092778 100%);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(7, 23, 85, 0.14);
}


/* =========================================
   LEFT
========================================= */

.similar-build-cta-left {
  display: flex;
  align-items: center;

  gap: 14px;
}


/* ICON */

.similar-build-cta-icon {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    color: #314DDF;
    background: #ffffff;
    border-radius: 50%;
    font-size: 29px;
}


/* CONTENT */

.similar-build-cta-content h3 {
  margin: 0 0 4px;

  color: #ffffff;

  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
}

.similar-build-cta-content p {
  max-width: 420px;

  margin: 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: 15px;
  line-height: 1.6;
}


/* =========================================
   BUTTONS
========================================= */

.similar-build-cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 8px;
}

.similar-build-btn {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

/* LIGHT BUTTON */

.similar-build-btn-light {
  color: #314DDF;
  background: #ffffff;

  border: 1px solid #ffffff;
}

.similar-build-btn-light:hover {
  color: #ffffff;
  background: #314DDF;

  border-color: #314DDF;

  transform: translateY(-2px);
}


/* PRIMARY BUTTON */

.similar-build-btn-primary {
  color: #ffffff;
  background: #314DDF;

  border: 1px solid #314DDF;
}

.similar-build-btn-primary:hover {
  color: #ffffff;
  background: #314DDF;

  border-color: #314DDF;

  transform: translateY(-2px);
}


/* ARROWS */

.similar-build-btn .fa-arrow-right {
  font-size: 6px;

  transition: transform 0.2s ease;
}

.similar-build-btn:hover .fa-arrow-right {
  transform: translateX(3px);
}








/* ========================
   FOOTER
======================== */
   /* Footer Container Styles */
    .site-footer {
      background-color: #0d1b67; /* Primary Deep Navy Blue */
      color: #ffffff;
      padding-top: 40px;
      padding-bottom: 20px;
    }

    /* Top Floating CTA Card */
    .footer-cta-card {
      background-color: #ffffff;
      border-radius: 12px;
      color: #0b0b0b;
      padding: 24px 32px;
      margin-bottom: 50px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .cta-icon-box {
    width: 50px;
    height: 50px;
    background-color: #0D205B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border: 1px solid #314DDF;
}

    .cta-btn {
    border: 1.5px solid #314DDF;
    color: #314DDF;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .cta-btn:hover {
      background-color: #314DDF;
      color: #ffffff;
    }

    /* Brand Section (Left Side) */
    .brand-logo {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .brand-logo span {
      font-weight: 400;
    }

    .footer-text {
      color: #b0b8db;
      font-size: 13.5px;
      line-height: 1.6;
    }

    .contact-info {
      font-size: 13.5px;
      color: #d1d5db;
    }

    .contact-item {
      padding-bottom: 10px;
      margin-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-item:last-child {
      border-bottom: none;
    }

    /* Navigation Columns */
    .footer-heading {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 15px;
      position: relative;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #c2c9e6;
      text-decoration: none;
      font-size: 13.5px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-links a .left-content {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-links a i.link-icon {
      font-size: 15px;
      color: #94a3b8;
    }

    .footer-links a i.chevron-icon {
      font-size: 11px;
      color: #64748b;
      transition: transform 0.2s ease;
    }

    .footer-links a:hover i.chevron-icon {
      transform: translateX(3px);
      color: #ffffff;
    }

    /* Newsletter Box */
    .newsletter-box {
      display: flex;
      background: #ffffff;
      border-radius: 6px;
      overflow: hidden;
      margin-top: 15px;
    }

    .newsletter-box input {
      border: none;
      padding: 10px 14px;
      font-size: 13.5px;
      width: 100%;
      outline: none;
    }

    .newsletter-box button {
    background: #314DDF;
    color: white;
    border: none;
    padding: 0 16px;
    cursor: pointer;
    transition: background 0.2s;
}

    .newsletter-box button:hover {
      background: #2563eb;
    }

    /* Social Icons */
    .social-icons a {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 8px;
      text-decoration: none;
      font-size: 14px;
      transition: background 0.3s ease;
    }

    .social-icons a:hover {
      background: #2563eb;
    }

    /* Bottom Copyright Bar */
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 40px;
      padding-top: 20px;
      font-size: 13px;
      color: #94a3b8;
    }

    .footer-bottom a {
      color: #94a3b8;
      text-decoration: none;
      margin-left: 15px;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }
	
	
	
@media (min-width: 992px) {

  .services-dropdown:hover > .services-dropdown-menu {
    display: block;
  }

  .services-dropdown:hover > .services-main-link {
    color: #ffffff !important;

    background: rgba(255, 255, 255, 0.08);
  }

  /* When header is white after scroll */

  .custom-header.is-scrolled
  .services-dropdown:hover
  > .services-main-link {
    color: #3157f5 !important;

    background: #f1f4ff;
  }
}

@keyframes servicesDropdownOpen {

  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
   .custom-header {
    top: 15px;
    left: 15px;
    right: 15px;

    padding: 12px 16px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding-top: 14px;

    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .navbar-nav {
    width: 100%;
    align-items: stretch !important;
  }

  .custom-nav-link {
    width: 100%;

    padding: 11px 12px !important;

    font-size: 0.95rem;
  }

  .header-button-wrap {
    width: 100%;
    margin-top: 12px;
  }

  .btn-get-in-touch {
    width: 100%;
    min-height: 44px;
  }	
	
  .custom-header {
    top: 20px;        
    margin: 0 10px;    
    padding: 12px 16px;
  }
  
  .header-nav {
    width: 100%;      
    justify-content: center;
    order: 3;          
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
  }

  .custom-nav-link {
    font-size: 0.8rem;
    padding: 4px 8px;
  } 
  
}

/* Mobile Screens (Under 576px) */
@media (max-width: 575px) {
  .brand-logo {
    font-size: 1.1rem;
  }
  
  .btn-get-in-touch {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .header-nav {
    gap: 4px !important;
  }
}
	
	
@media (max-width: 991.98px) {
     .top-bar {
    padding: 8px 15px;
    font-size: 0.78rem;
  }

  .top-bar-contact {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .top-bar-link {
    min-height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    white-space: nowrap;
  }

  .top-bar-link span {
    overflow: visible;
    text-overflow: initial;
    white-space: nowrap;
  }

  .top-bar-estimate-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .top-bar-estimate {
    width: auto;
    min-height: auto;
    padding: 5px 8px;
    color: #02103a;
    background: transparent;
    border-radius: 0;
    white-space: nowrap;
  }

  .top-bar-estimate i {
    color: #02103a;
  }

  .top-bar-estimate:hover {
    color: #0d6efd;
    background: transparent;
  }

  .top-bar-estimate:hover i {
    color: #0d6efd;
  }
  
   .custom-header {
    top: 50px;
    left: 10px;
    right: 10px;
    padding: 11px 16px;
  }

  .custom-header.is-scrolled {
    top: 8px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
   .brand-logo {
    width: 170px;
    height: 34px;
  }

  .header-logo-img {
    height: 34px;
    max-width: 170px;
  }
  /*
   Change divider when white header is active
  */
  .custom-header.is-scrolled .navbar-collapse {
    border-top-color: #e7ebf2;
  }

  .navbar-nav {
    width: 100%;
    align-items: stretch !important;
  }

  .custom-nav-link {
    width: 100%;
    padding: 11px 12px !important;
    font-size: 0.95rem;
  }

  .header-button-wrap {
    width: 100%;
    margin-top: 12px;
  }

  .btn-get-in-touch {
    width: 100%;
    min-height: 44px;
  }
  .hero-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .homepage-hero {
    min-height: auto;
    padding-top: 125px;
    padding-bottom: 80px;
  }

  .custom-header {
    left: 20px;
    right: 20px;
    padding: 12px 16px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .navbar-nav {
    width: 100%;
    align-items: stretch !important;
  }

  .custom-nav-link {
    width: 100%;
    padding: 11px 10px !important;
    font-size: 14px;
  }

  .header-button-wrap {
    margin-top: 12px;
  }

  .btn-get-in-touch {
    width: 100%;
    min-height: 44px;
  }
  .construction-saas-hero {
    padding: 90px 0;
  }

  .construction-saas-content {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
  }

  .construction-saas-content h1 {
    font-size: 35px;
  }

  .construction-saas-content p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .construction-saas-actions {
    justify-content: center;
  }

  .construction-saas-image-wrap {
    max-width: 700px;
    margin: 12px auto 0;
  }
   .project-snapshot-section {
    padding: 30px 0;
  }

  .project-snapshot-box {
    padding: 28px 22px 22px;
	margin-top: -85px;
  }

  .project-snapshot-row-top {
    border-bottom: 0;
  }

  .project-snapshot-row-top > div {
    border-bottom: 1px solid #e8ebf1;
  }

  .project-snapshot-row-top > div:nth-child(odd)
  .project-snapshot-item {
    border-right: 1px solid #e8ebf1;
  }

  .project-snapshot-row-top > div:nth-child(even)
  .project-snapshot-item {
    border-right: 0;
  }

  .project-snapshot-item {
    min-height: 82px;

    padding: 15px 18px;
  }

  .project-snapshot-row-bottom {
    padding-top: 15px;
  }

  .project-snapshot-row-bottom
  .project-snapshot-item {
    border-right: 0;
  }
  .client-about-section {
    padding: 55px 0;
  }

  .client-about-content {
    max-width: 100%;
    text-align: center;
}

  .client-about-content h2 {
    font-size: 27px;
  }

  .client-about-content p {
    font-size: 12.5px;
  }

  .client-about-image-area {
    max-width: 700px;
    margin: 10px auto 0;
    padding-bottom: 24px;
  }

  .client-about-image {
    height: 340px;
  }
  .business-objectives-section {
    padding: 56px 0;
  }

  .business-objectives-heading h2 {
    font-size: 26px;
  }

  .business-objective-card {
    min-height: 205px;
  }
  .challenges-section {
    padding: 56px 0 60px;
  }

  .challenges-heading h2 {
    font-size: 25px;
  }

  .challenge-card {
    min-height: 150px;

    padding: 18px 16px;
  }
  .our-approach-section {
    padding: 56px 0;
  }

  .our-approach-heading h2 {
    font-size: 26px;
  }

  /* hide horizontal line because items wrap */
  .our-approach-line {
    display: none;
  }

  .our-approach-step {
    max-width: 200px;
  }

  .our-approach-icon {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }

  .our-approach-step h3 {
    font-size: 12px;
  }

  .our-approach-step p {
    font-size: 9.5px;
  }
   .solution-overview-section {
    padding: 56px 0;
  }

  .solution-overview-content {
    max-width: 100%;
	text-align: center;
  }

  .solution-overview-content h2 {
    font-size: 27px;
  }

  .solution-overview-content p {
    max-width: 100%;

    font-size: 12.5px;
  }

  .solution-overview-stats {
    max-width: 100%;
  }

  .solution-overview-image-wrap {
    max-width: 700px;

    margin: 10px auto 0;
  }
  .key-capabilities-section {
    padding: 50px 0 58px;
  }

  .key-capabilities-heading h2 {
    font-size: 23px;
  }

  .key-capability-image-wrap {
    height: 175px;
  }

  .key-capability-content h3 {
    font-size: 14px;
  }

  .key-capability-content p {
    font-size: 10.5px;
  }
  .technology-stack-box {
    padding: 20px 22px;
  }

  .technology-stack-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 16px 20px;
  }

  .technology-stack-item:nth-child(4),
  .technology-stack-item:nth-child(5) {
    justify-content: center;
  }
  .similar-projects-section {
    padding: 52px 0;
  }

  .similar-projects-heading h2 {
    font-size: 22px;
  }

  .similar-project-card-inner {
    min-height: 170px;
  }

  .similar-project-image {
    min-height: 170px;
  }

  .similar-project-content h3 {
    font-size: 13px;
  }

  .similar-project-content p {
    font-size: 9px;
  }
  .similar-build-cta-box {
    padding: 18px;
  }

  .similar-build-cta-actions {
    justify-content: flex-start;

    margin-top: 4px;
  }
  .result-impact-section {
    padding: 56px 0;
  }

  .result-impact-heading h2 {
    font-size: 26px;
  }

  .impact-stat-card {
    min-height: 200px;
  }

  .impact-testimonial-carousel,
  .impact-testimonial-card {
    min-height: 200px;
  }


}

@media (max-width: 767.98px) {
    .top-bar {
    padding: 8px 10px !important;
    font-size: 0.82rem;
  }

  .top-bar-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .top-bar-link {
    min-height: 38px;
    padding: 7px 10px;
    background-color: #f6f8fc;
    border: 1px solid #e5eaf2;
    border-radius: 7px;
  }

  .top-bar-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .top-bar-estimate-wrap {
    width: 100%;
  }

  .top-bar-estimate {
    width: 100%;
    min-height: 40px;
    padding: 8px 12px;

    color: #ffffff;
    background: linear-gradient(90deg, #02103a 0%, #041b66 100%);
    border-radius: 7px;
  }

  .top-bar-estimate i {
    color: #ffffff;
  }

  .top-bar-estimate:hover {
    color: #ffffff;
    background: linear-gradient(90deg, #041b66 0%, #0d3bb8 100%);
  }
    .top-bar {
    padding: 7px 0;
  }

  .top-bar-contact {
    justify-content: center;
    gap: 8px 16px;
  }

  .top-bar-estimate {
    justify-content: center;
  }


  .homepage-hero {
    padding-top: 112px;
    padding-bottom: 65px;
  }

  .custom-header {
    top: 12px;
    left: 12px;
    right: 12px;
    padding: 10px 12px;
  }
  .construction-saas-hero {
    padding: 38px 0;
  }

  .construction-saas-content {
    text-align: center;
    margin-inline: auto;
  }

  .construction-saas-content h1 {
    font-size: 31px;
    line-height: 1.08;
  }

  .construction-saas-content p {
    font-size: 11.5px;
    margin-left: auto;
    margin-right: auto;
  }

  .construction-saas-actions {
    justify-content: center;
  }

  .construction-saas-image-wrap {
    margin: 10px auto 0;
  }
  .project-snapshot-section {
    padding: 26px 0;
  }

  .project-snapshot-box {
    padding: 25px 16px 18px;
  }

  .project-snapshot-heading {
    margin-bottom: 20px;
  }

  .project-snapshot-heading h2 {
    font-size: 20px;
  }

  .project-snapshot-row-top {
    border-bottom: 0;
  }

  .project-snapshot-item {
    min-height: auto;

    padding: 14px 8px;

    border-right: 0;
    border-bottom: 1px solid #e8ebf1;
  }

  .project-snapshot-row-top > div:last-child
  .project-snapshot-item {
    border-bottom: 1px solid #e8ebf1;
  }

  .project-snapshot-row-bottom {
    padding-top: 0;
  }

  .project-snapshot-row-bottom
  .project-snapshot-item {
    border-bottom: 1px solid #e8ebf1;
  }

  .project-snapshot-row-bottom > div:last-child
  .project-snapshot-item {
    border-bottom: 0;
  }
   .client-about-section {
    padding: 48px 0;
  }

  .client-about-content h2 {
    font-size: 25px;
  }

  .client-about-content p {
    font-size: 12px;
    line-height: 1.6;
  }

  .client-about-image-area {
    margin-top: 8px;
    padding-bottom: 0;
  }

  .client-about-image {
    height: 260px;
  }

  .client-about-highlight {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: -20px auto 0;
    min-width: 0;
    padding: 13px 15px;
  }
  .business-objectives-section {
    padding: 48px 0;
  }

  .business-objectives-heading {
    margin-bottom: 25px;
  }

  .business-objectives-heading h2 {
    font-size: 24px;
  }

  .business-objectives-heading p {
    font-size: 10.5px;
  }

  .business-objective-card {
    min-height: auto;

    padding: 21px 18px;
  }

  .business-objective-icon {
    width: 50px;
    height: 50px;

    font-size: 18px;
  }

  .business-objective-card p {
    max-width: 100%;
  }
  .challenges-section {
    padding: 48px 0 52px;
  }

  .challenges-heading {
    margin-bottom: 23px;
  }

  .challenges-heading h2 {
    font-size: 23px;
  }

  .challenges-heading p {
    font-size: 10px;
  }

  .challenge-card {
    min-height: auto;

    padding: 18px 16px;
  }

  .challenge-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    font-size: 17px;
  }
  .our-approach-section {
    padding: 48px 0;
  }

  .our-approach-heading {
    margin-bottom: 30px;
  }

  .our-approach-heading h2 {
    font-size: 24px;
  }

  .our-approach-heading p {
    font-size: 10px;
  }

  .our-approach-line {
    display: none;
  }

  .our-approach-step {
    max-width: 220px;
  }

  .our-approach-icon {
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  .our-approach-step h3 {
    font-size: 11.5px;
  }

  .our-approach-step p {
    font-size: 9px;
  }
  .solution-overview-section {
    padding: 48px 0;
  }

  .solution-overview-content h2 {
    font-size: 25px;
  }

  .solution-overview-content p {
    font-size: 12px;
    line-height: 1.6;
  }

  .solution-overview-stats {
    grid-template-columns: 1fr;
  }

  .solution-overview-stat {
    border-right: 0;
    border-bottom: 1px solid #e7ebf1;
  }

  .solution-overview-stat:last-child {
    border-bottom: 0;
  }

  .solution-overview-image-wrap {
    margin: 8px auto 0;
  }
   .key-capabilities-section {
    padding: 45px 0 50px;
  }

  .key-capabilities-heading {
    margin-bottom: 24px;
  }

  .key-capabilities-heading h2 {
    font-size: 22px;
  }

  .key-capability-image-wrap {
    height: 210px;
  }

  .key-capability-content {
    padding: 16px;
  }

  .key-capability-content h3 {
    font-size: 15px;
  }

  .key-capability-content p {
    font-size: 11px;
  }
  .technology-stack-section {
    padding: 25px 0 38px;
  }

  .technology-stack-box {
    padding: 18px 16px;
  }

  .technology-stack-heading h2 {
    font-size: 17px;
  }

  .technology-stack-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;
  }

  .technology-stack-item {
    justify-content: flex-start;

    padding-left: 10px;
  }
  .similar-projects-section {
    padding: 46px 0;
  }

  .similar-projects-heading {
    margin-bottom: 22px;
  }

  .similar-projects-heading h2 {
    font-size: 21px;
  }

  .similar-project-card-inner {
    min-height: 160px;
  }

  .similar-project-image-wrap {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .similar-project-image {
    min-height: 160px;
  }

  .similar-project-content {
    padding: 13px 12px;
  }

  .similar-project-content h3 {
    font-size: 13px;
  }

  .similar-project-content p {
    font-size: 9.5px;
  }
  .similar-build-cta-section {
    padding: 20px 0 30px;
  }

  .similar-build-cta-box {
    padding: 18px 16px;
  }

  .similar-build-cta-left {
    align-items: flex-start;
  }

  .similar-build-cta-content h3 {
    font-size: 11.5px;
  }

  .similar-build-cta-content p {
    font-size: 8px;
  }

  .similar-build-cta-actions {
    justify-content: flex-start;
    flex-wrap: wrap;

    margin-top: 4px;
  }
  .result-impact-section {
    padding: 48px 0;
  }

  .result-impact-heading {
    margin-bottom: 24px;
  }

  .result-impact-heading h2 {
    font-size: 24px;
  }

  .impact-stat-card {
    min-height: auto;
  }

  .impact-testimonial-carousel,
  .impact-testimonial-card {
    min-height: 225px;
  }

  .impact-testimonial-text {
    padding-left: 32px;

    font-size: 10px;
  }

  .impact-testimonial-author {
    padding-left: 32px;
  }


}

@media (max-width: 575.98px) {
  .top-bar-contact {
    grid-template-columns: 1fr;
  }

  .top-bar-link {
    width: 100%;
  }

  .top-bar-link span {
    white-space: normal;
    overflow-wrap: anywhere;
  } 
  
	.custom-header {
    top: 155px;
    left: 8px;
    right: 8px;
    padding: 10px 12px;
    border-radius: 7px;
  }

  /*
   After scrolling, don't keep the
   original 146px top spacing.
  */

  .custom-header.is-scrolled {
    top: 6px;
    left: 6px;
    right: 6px;
  }

  .brand-logo {
    width: 145px;
    height: 30px;
  }

  .header-logo-img {
    height: 30px;
    max-width: 145px;
  }

  .brand-logo {
    font-size: 1rem;
  }

  .navbar-toggler {
    padding: 4px 6px;
  }

  .navbar-toggler-icon {
    width: 21px;   
    height: 21px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 90px);

    overflow-y: auto;
  }

  .custom-nav-link {
    padding: 10px !important;

    font-size: 0.9rem;
  }
  .hero-title {
    font-size: 33px;
  }

  .hero-subtitle {
    font-size: 25px;
  }

  .hero-description {
    font-size: 13px;
  }
   
}

@media (max-width: 480px) {
   .construction-saas-hero {
    padding: 80px 0;
  }

  .construction-saas-content h1 {
    font-size: 27px;
  }

  .construction-saas-actions {
    flex-direction: column;
    gap: 8px;
  }

  .construction-saas-btn {
    width: 100%;
    max-width: 280px;
    border-radius: 4px;
  }

  .construction-saas-btn-outline {
    border-left: 1px solid rgba(255,255,255,.72);
  }
  .project-snapshot-box {
    padding: 23px 14px 16px;
  }

  .project-snapshot-heading h2 {
    font-size: 19px;
  }

  .project-snapshot-heading p {
    font-size: 9.5px;
  }

  .project-snapshot-icon {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    font-size: 18px;
  }

  .project-snapshot-content h3 {
    font-size: 12px;
  }

  .project-snapshot-content p {
    font-size: 8.8px;
  }
  .client-about-section {
    padding: 40px 0;
  }

  .client-about-content h2 {
    font-size: 23px;
  }

  .client-about-content p {
    font-size: 11.5px;
  }

  .client-about-image {
    height: 220px;
  }
  .business-objectives-section {
    padding: 42px 0;
  }

  .business-objectives-heading h2 {
    font-size: 22px;
  }

  .business-objective-card {
    padding: 19px 16px;
  }

  .business-objective-card h3 {
    font-size: 14px;
  }

  .business-objective-card p {
    font-size: 10px;
  }
  .challenges-section {
    padding: 42px 0 46px;
  }

  .challenge-card {
    gap: 12px;

    padding: 16px 14px;
  }

  .challenge-content h3 {
    font-size: 12px;
  }

  .challenge-content p {
    font-size: 9.5px;
  }
  .our-approach-section {
    padding: 42px 0;
  }

  .our-approach-heading h2 {
    font-size: 22px;
  }

  .our-approach-step {
    max-width: 160px;
  }

  .our-approach-step p {
    font-size: 8.8px;
  }
   .solution-overview-section {
    padding: 40px 0;
  }

  .solution-overview-content h2 {
    font-size: 23px;
  }

  .solution-overview-content p {
    font-size: 11.5px;
  }

  .solution-overview-stat {
    padding: 11px 13px;
  }

  .solution-overview-stat-icon {
    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    font-size: 15px;
  }

  .solution-overview-stat-text strong {
    font-size: 15px;
  }

  .solution-overview-stat-text span {
    font-size: 9px;
  }
  .key-capabilities-section {
    padding: 40px 0 44px;
  }

  .key-capability-image-wrap {
    height: 190px;
  }

  .key-capability-content {
    padding: 14px;
  }

  .key-capability-content h3 {
    font-size: 14px;
  }

  .key-capability-content p {
    font-size: 10.5px;
  }
  .technology-stack-list {
    grid-template-columns: 1fr;
  }

  .technology-stack-item {
    justify-content: center;

    padding-left: 0;
  }

  .technology-stack-logo {
    width: 30px;
    height: 30px;
  }
  .similar-projects-section {
    padding: 40px 0;
  }

  .similar-project-card-inner {
    flex-direction: column;
  }

  .similar-project-image-wrap {
    flex: 0 0 auto;

    width: 100%;
    max-width: 100%;

    height: 185px;
  }

  .similar-project-image {
    width: 100%;
    height: 185px;

    min-height: 185px;
  }

  .similar-project-content {
    padding: 14px;
  }

  .similar-project-content h3 {
    font-size: 14px;
  }

  .similar-project-content p {
    font-size: 10px;
  }

  .similar-project-link {
    font-size: 9px;
  }
  .similar-build-cta-left {
    flex-direction: column;
  }

  .similar-build-cta-actions {
    flex-direction: column;
  }

  .similar-build-btn {
    width: 100%;
  }
  .result-impact-section {
    padding: 42px 0;
  }

  .result-impact-heading h2 {
    font-size: 22px;
  }

  .impact-stat-top strong {
    font-size: 24px;
  }

  .impact-stat-card h3 {
    font-size: 14px;
  }

  .impact-testimonial-card {
    padding: 17px 15px 34px;
  }

  .impact-quote-icon {
    left: 14px;

    font-size: 24px;
  }

  .impact-testimonial-text {
    padding-left: 30px;
  }

  .impact-testimonial-author {
    padding-left: 30px;
  }


}