/* Definitons*/

:root {
  --primary-color: #0b1f33;
  --secondary-color: #0c9be4;
  --accent-color: #3ed6c3;
  --off-white: #eaf0f4;
  --off-white-light: #f4f7f9;
  --tag-bg: rgba(255, 255, 255, 0.05);
}

/* 
::selection {
  background-color: var(--accent-color);
  color: black;
} */
@media (min-width: 992px) {
    .w-lg-25 { width: 25% !important; }
    .w-lg-50 { width: 50% !important; }
    .w-lg-75 { width: 75% !important; }
    .w-lg-100 { width: 100% !important; }
}

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

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

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

.background-primary {
  background-color: var(--primary-color);
}

.background-secondary {
  background-color: var(--secondary-color);
}

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

.background-off-white{
  background-color: var(--off-white) !important;
}
.background-dark{
  background-color: var(--primary-color) !important;
}
.background-off-white-light{
  background-color: var(--off-white-light) !important;
}

.btn {
  border-radius: .75rem;
  font-weight: 700;
}

.btn-accent {
  color: #071c25;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-accent:hover {
  color: #071c25;
  background: #70e4d5;
  border-color: #70e4d5;
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background: #087eb9;
  border-color: #087eb9;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(12, 155, 228, .22);
}

.btn-secondary {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-white {
  background-color: white;
  color: black;
}

.btn-white:hover {
  transform: translateY(-2px);
}

html,
body {
  scroll-behavior: smooth;
  scroll-padding-top: 8.5rem;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  overflow-anchor: none;
}

body {
  color: #142536;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

a {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.mw-500 {
  max-width: 500px;
}

.mw-700 {
  max-width: 700px;
}
.eyebrow {
  display: inline-block;
  color: var(--secondary-color);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.letter-space {
  letter-spacing: .1em;
}

.shadow-soft {
  box-shadow: 0 24px 70px rgba(11, 31, 51, .1);
}


.form-control {
  min-height: 50px;
  border-color: #cfdae4;
  border-radius: .75rem;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 .25rem rgba(12, 155, 228, .15);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  background: #fff;
  padding: .75rem 1rem;
}

.site-header {
  z-index: 1030;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.brand-bar {
  background: #fff;
}

.site-header .navbar {
  position: static;
  background: var(--primary-color);
  font-size: .95rem;
}

.site-header .navbar-nav {
  margin: 0;
}

.site-header .nav-link {
  color: rgba(255, 255, 255, .78) !important;
  padding: .55rem .8rem !important;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--secondary-color) !important;
}

.hero-modern {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 85% 20%, rgba(12, 155, 228, .2), transparent 28%), var(--primary-color);
  min-height: 640px;
  display: flex;
}
 .after-section{
  border-bottom: 1px solid rgba(62, 214, 195, .14);
  padding-bottom: 120px !important;
 }
.hero-title {
  font-size: clamp(3.1rem, 7vw, 6.25rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.section-title {
  font-size: clamp(3.25rem, 6vw, 5rem) !important;
  line-height: .98 !important;
  letter-spacing: -.055em !important;
  margin-bottom: 1.25rem !important;

      /* Prevent overflow */
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
}

@media(max-width:769px) {
  .section-title {
    font-size: clamp(4.25rem, 6vw, 5rem) !important;
  }

  .hero-title {
    font-size: clamp(4.1rem, 7vw, 6.25rem) !important;
  }
}

@media (max-width:375px) {
  .section-title{
        font-size:4rem !important;
    }
}

@media (max-width: 576px) {
  .mobile-tight {
    line-height: 1.2 !important;
  }
}


.hero-dashboard {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
  backdrop-filter: blur(10px);
}

.status-dot {
  color: var(--accent-color);
  background: rgba(62, 214, 195, .12);
  border: 1px solid rgba(62, 214, 195, .4);
  border-radius: 2rem;
  padding: .25rem .65rem;
  font-size: .75rem;
}

.status-dot:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  margin-right: .4rem;
}

.metric-card,
.workflow-line {
  color: #fff;
  background: rgba(3, 14, 25, .32);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 1rem;
  padding: 1rem;
}

.metric-card small,
.metric-card span {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  color: var(--accent-color);
}

.workflow-line {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .78rem;
}

.flow-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: .55rem;
  /* background: rgba(12, 155, 228, .18);
  color: #6fcfff; */
  background: var(--accent-color);
  color: black;
}

.project-card,
.case-study {
  box-shadow: 0 12px 40px rgba(11, 31, 51, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 31, 51, .14);
}

.project-shot {
  height: 240px;
  background: #dce8f2;
  overflow: hidden;
  padding: 1.25rem 1.25rem 0;
}

.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: .75rem .75rem 0 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, .12);
}

.testimonials-section {
  background: var(--primary-color);
}

.testimonial-card {
  background: #fff;
  color: #142536;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--secondary-color);
  font-weight: 800;
}

.solution-card {
  border: 1px solid #e2eaf0;
  transition: .2s ease;
}

.solution-card:hover {
  border-color: rgba(12, 155, 228, .5);
  box-shadow: 0 14px 35px rgba(11, 31, 51, .07);
  transform: translateY(-3px);
}

.comparison-card {
  box-shadow: 0 20px 60px rgba(11, 31, 51, .1);
}

.comparison-before {
  background: #fff;
}

.comparison-after {
  background: var(--primary-color);
}

.page-hero {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: radial-gradient(circle at 80%, rgba(12, 155, 228, .25), transparent 30%), var(--primary-color);
}

.case-shot {
  background: #dce8f2;
  padding: 2rem 2rem 0;
  min-height: 500px;
}

.case-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 0 30px rgba(11, 31, 51, .18);
}

.feature-pill {
  background: #f5f8fa;
  border-radius: .75rem;
  padding: .65rem .8rem;
  font-size: .9rem;
}

.tech-badge {
  background: #e9f7fd;
  color: #086d9f;
  padding: .55rem .75rem;
}

.contact-directory {
  background: var(--primary-color);
  border-radius: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  text-decoration: none;
  padding: .9rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
}

.contact-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  transform: translateX(3px);
}

.contact-link>i:first-child {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--accent-color);
  background: rgba(62, 214, 195, .1);
  border-radius: .6rem;
}

.contact-link small {
  display: block;
  color: rgba(255, 255, 255, .5);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.trust-chip {
  border: 1px solid black;
  border-radius: 1rem;
  padding: 1rem;
  background: white;
}

.footer {
  background: #071521;
}

.footer a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

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

.footer-links li {
  margin-bottom: .5rem;
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  position: fixed;
  z-index: 1020;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  text-decoration: none;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px);
}

@media(max-width:991.98px) {
  .site-header .navbar-collapse {
    padding: 1rem 0
  }

  .hero-modern {
    min-height: auto
  }


  .case-shot {
    min-height: 380px
  }

  .brand-logo {
    width: 155px
  }

  .section-space {
    padding: 4rem 0
  }
}

@media(max-width:575.98px) {

  .project-shot {
    height: 210px
  }

  .case-shot {
    min-height: 280px;
    padding: 1rem 1rem 0
  }

  .workflow-line {
    gap: .4rem;
    font-size: .7rem
  }

  .brand-bar {
    padding: .35rem !important
  }

  .brand-logo {
    width: 140px
  }

  .page-hero {
    padding: 4rem 0
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto !important
  }

  *,
  *:before,
  *:after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important
  }
}

.active {
  color: var(--secondary-color) !important;
}

.box-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

/* Definitons end*/

/*************************************************************************************************************************
Header
*************************************************************************************************************************/
nav {
  font-weight: 600;
}

.navbar {
  background-color: black;
  font-size: 18px;
}

.right-side {
  margin-right: 20px;
}

.navbar-nav {
  margin-left: 30px;
  margin-top: -5px;
}

.nav-btn {
  background-color: var(--secondary-color);
  font-weight: 600;
  padding: 10px 20px 10px 20px;
  transition: 0.3s;
  border: 1px solid var(--secondary-color);
  color: white;
  border-radius: 20px;
}

.nav-btn:hover {
  border: 1px solid white;
}

/** To make toggle button color white, remove this is need it to be black **/
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--secondary-color) !important;
}


/*************************************************************************************************************************
Hero
*************************************************************************************************************************/
#hero {
  margin-top: 70px;
}

@media(max-width:768px) {
  .hero-heading {
    line-height: 0.9 !important;
  }
}

.hero-card {
  /* background-attachment: fixed;
  background-image: url('../img/hero-bg.png');
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken; */
  background-color: var(--primary-color);
  padding: none !important;
  width: 100% !important;
  min-height: 62vh;
  height: auto;
}

.web-photo {
  border-radius: 100%;
}

/* OLD BACKDROP */
/* .quick-contact-hero-section {
  background-color: #FFFFFF1C;
  backdrop-filter: blur(4px);
  border-radius: 8px;
} */


.hero-img {
  margin-top: -60px;
}

@media(max-width:992px) {
  .hero-img {
    display: none;
  }
}

/*************************************************************************************************************************
Services Overview
*************************************************************************************************************************/
.services-overview {
  /* background-attachment: fixed;
  background-image: url('../img/hero-bg.png');
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken; */
  background-color: var(--primary-color);
  padding: none !important;
  width: 100% !important;
  height: auto;
  margin: 0 auto;
}

.service-card {
  /* background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease, border-color 0.3s ease; */
  border-radius: 20px;
  min-height: auto;
}

.small-toast {
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* .service-card:hover {
  background-color: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 212, 200, 0.25);
} */

.service-card-icon {
  background-color: #FFFFFF1C;
  backdrop-filter: blur(4px);
  border-radius: 8px;
}

/*************************************************************************************************************************
Our Process
*************************************************************************************************************************/
.process-section {
  background: #f8f9fc;
}

.process-circle {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.process-arrow {
  width: 80px;
  height: 20px;
}

/* Mobile arrow direction */
@media (max-width: 900px) {
  .process-wrapper {
    flex-direction: column;
  }

  .process-arrow.horizontal {
    transform: rotate(90deg);
    height: 60px;
  }
}

.why-us-boxes {
  background: #fff;
  border-radius: 5%;
  box-shadow: 0 4px 8px var(--secondary-color);
}

/*************************************************************************************************************************
Domains we server
*************************************************************************************************************************/

.domains-section {
  background: #f8f9fc;
  /* light bg */
}

.domain-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}


/*************************************************************************************************************************
Our Tech Stack
*************************************************************************************************************************/
.tech-section {
  /* background-attachment: fixed;
  background-image: url('../img/hero-bg.png');
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken; */
  background-color: var(--primary-color);
  padding: none !important;
  width: 100% !important;
  height: auto;
  margin: 0 auto;
}

.tech-slider .slick-slide {
  padding: 10px;
}

.slick-dots li button:before {
  color: #fff;
}

/*************************************************************************************************************************
Portfolio/case-studies
*************************************************************************************************************************/
.case-studies-section {
  /* background-image: url('../img/hero-bg.png');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken; */
  background-color: var(--primary-color);
  width: 100%;
}

.case-card {
  background-color: #FFFFFF1C;
  backdrop-filter: blur(4px);
}

/*************************************************************************************************************************
CTA section
*************************************************************************************************************************/
.cta {
  /* background-image: url('../img/hero-bg.png');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken; */
  background-color: var(--primary-color);
  width: 100%;
}

.cta-card {
  background-color: #FFFFFF1C;
  backdrop-filter: blur(4px);
}

/*************************************************************************************************************************
FAQ
*************************************************************************************************************************/
.accordion-item {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-button {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.09) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button::after {
  filter: invert(1) !important;
  color: var(--accent-color) !important;
}

.accordion-body {
  background: rgba(255, 255, 255, 0.04) !important;
  color: #ffffff !important;
}

/*************************************************************************************************************************
Footer
*************************************************************************************************************************/
.footer {
  background: var(--primary-color);
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: var(--secondary-color);
}

.footer-links li {
  margin-bottom: 8px;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 999;
  text-decoration: none;
}


/*************************************************************************************************************************
Services page - Hero section
*************************************************************************************************************************/
.service-intro {
  /* background-image: url('../img/hero-bg.png');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken; */
  background-color: var(--primary-color);
  width: 100%;
}

.services-page-image-card {
  background-color: #FFFFFF1C;
  backdrop-filter: blur(4px);
}

/*************************************************************************************************************************
About page - about-intro
*************************************************************************************************************************/
.about-intro {
  /* background-image: url('../img/hero-bg.png');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken; */
  background-color: var(--primary-color);
  width: 100%;
}

.box-about-myself {
  background-color: #FFFFFF1C;
  backdrop-filter: blur(4px);
}

/*************************************************************************************************************************
About page - our values
*************************************************************************************************************************/
.our-values {
  /* background-image: url('../img/hero-bg.png'); 
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken; */
  background-color: var(--primary-color);
  width: 100%;
}

.value-card {
  background-color: #FFFFFF1C;
  backdrop-filter: blur(4px);
}

/*************************************************************************************************************************
About page - our goal
*************************************************************************************************************************/
.our-goal-section {
  background: #f8f9fc;
}

.goal-card {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/*************************************************************************************************************************
Portfolio page - portfolio page
*************************************************************************************************************************/
.portfolio-page {
  background: #f8f9fc;
}

.portfolio-card {
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


/*************************************************************************************************************************
Contact Page
*************************************************************************************************************************/

.contact-info-card {
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.contact-form-card {
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.contact-page-submit {
  border: 1px solid var(--secondary-color);
  transition: 0.3s;
}

.contact-page-submit:hover {
  border: 1px solid black;
}

/*************************************************************************************************************************
Fast Launch
*************************************************************************************************************************/
.bg-gradient {
  background: linear-gradient(90deg, #005a73 0%, #2fb7a6 100%) !important;
}


.fast-launch-price-section {
  background: var(--primary-color);
  color: white;
  padding: 70px 0;
}

.fast-launch-price-box {
  background: white;
  color: #111827;
  border-radius: 10px;
}

.fast-launch-features-section {
  background: linear-gradient(90deg, #005a73 0%, #2fb7a6 100%);
}

/* Premium refinement layer */
:root {
  --surface-color: #f4f7f9;
  --card-radius: 1.25rem;
  --section-border: rgba(11, 31, 51, .08);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface-color);
}

main>section:not(.hero-modern):not(.featured-products):not(.client-projects):not(.testimonials-section):not(.packages-section):not(.background-primary):not(.tech-section):not(.faq) {
  background: var(--surface-color);
}

.promo-ribbon {
  background: linear-gradient(90deg, #086d9f, var(--secondary-color));
}

.promo-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 5px rgba(62, 214, 195, .16);
}

.promo-link {
  color: #071c25;
  background: var(--accent-color);
  border-radius: 2rem;
  padding: .2rem .7rem;
  font-size: .72rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.promo-link:hover {
  color: #071c25;
  background: #71e4d6;
  transform: translateX(2px);
}

.brand-bar {
  background: var(--primary-color) !important;
}

.brand-logo {
  width: 175px !important;
  max-height: 82px;
}

.site-header {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .16);
}

.site-header .navbar {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.eyebrow {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: .82rem;
  letter-spacing: .11em;
}

.eyebrow-dark {
  color: var(--accent-color) !important;
}

.card,
.solution-card,
.domain-card,
.process-circle,
.contact-info-card,
.contact-form-card,
.goal-card,
.value-card {
  border-radius: var(--card-radius) !important;
}

.btn:focus-visible,
.nav-link:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
  box-shadow: none !important;
}

.btn:active {
  transform: translateY(1px) !important;
}

.client-projects {
  background: #071824 !important;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.owned-product {
  position: relative;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .16);
  transition: transform .25s ease, border-color .25s ease;
}

.owned-product:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--project-accent);
  z-index: 2;
}

.owned-product:hover {
  transform: translateY(-7px);
  border-color: var(--project-accent);
}

.owned-product li i{
  color: var(--project-accent);
}

.client-sector {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--secondary-color) !important;
}

.client-project-card {
  position: relative;
  background: #0e2b43;
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
  transition: transform .25s ease, box-shadow .25s ease;
}

.client-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .28);
}

.client-project-card:after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--project-accent);
}

.client-project-image {
  height: 190px;
  padding: 1rem 1rem 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--project-accent) 35%, #102c44), #102c44);
  overflow: hidden;
}

.client-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: .8rem .8rem 0 0;
}

.client-sector,
.result-line i {
  color: var(--project-accent);
}

.result-line {
  display: flex;
  gap: .65rem;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: .86rem;
}

.client-chip {
  color: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 2rem;
  padding: .3rem .6rem;
  font-size: .7rem;
}

.project-tech {
  color: var(--project-accent);
  font-weight: 700;
}

.testimonial-stars {
  color: #f4b942;
  letter-spacing: .12em;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.solution-tile {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--section-border);
  border-radius: var(--card-radius);
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(11, 31, 51, .05);
  transition: .2s ease;
}

.solution-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 31, 51, .09);
  border-color: rgba(12, 155, 228, .35);
}

.solution-tile>i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--secondary-color);
  background: #e9f7fd;
  border-radius: .7rem;
}

.cost-card,
.trust-card {
  background: #fff;
  border: 1px solid var(--section-border);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(11, 31, 51, .055);
}

.cost-card>i {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.packages-section {
  background: var(--primary-color);
}

.package-card {
  position: relative;
  color: #142536;
  background: #fff;
  border-radius: var(--card-radius) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, .25);
}

.package-featured {
  outline: 4px solid var(--secondary-color);
}

.package-ribbon {
  color: #fff;
  background: var(--secondary-color);
  padding: .45rem;
  text-align: center;
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .12em;
  font-weight: 800;
}

.package-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #eaf8fe;
  border-radius: 1rem;
  font-size: 1.7rem;
}

.package-badge {
  color: #073149;
  background: rgba(62, 214, 195, .32);
  border-radius: 2rem;
  padding: .45rem .65rem;
  font-size: .7rem;
  font-weight: 800;
}

.package-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: #607080;
}

.solve-chip {
  white-space: normal;
  color: #33485a;
  background: #f3f6f8;
  border: 1px solid #dae4eb;
  border-radius: 2rem;
  padding: .38rem .65rem;
  font-size: .72rem;
  font-weight: 650;
  line-height: 1.35;
}

.package-list li {
  display: flex;
  gap: .55rem;
  margin-bottom: .55rem;
  font-size: .84rem;
}

.package-list i {
  color: var(--secondary-color);
  margin-top: .25rem;
}

.package-note {
  background: #f3f7f9;
  border-left: 4px solid var(--secondary-color);
  border-radius: .6rem;
  padding: .8rem;
  font-size: .75rem;
}

.bizflow-card {
  border-top: 5px solid var(--accent-color) !important;
}

.recurring-plans {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.recurring-card {
  position: relative;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
}

.recurring-card.recommended {
  border-color: var(--accent-color);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.recurring-tag {
  display: inline-block;
  color: #071c25;
  background: var(--accent-color);
  border-radius: 2rem;
  padding: .3rem .65rem;
  font-size: .65rem;
  font-weight: 800;
}

.process-section,
.domains-section,
.our-goal-section,
.portfolio-page {
  background: var(--surface-color) !important;
}

.process-circle,
.domain-card {
  border: 1px solid var(--section-border);
  box-shadow: 0 10px 30px rgba(11, 31, 51, .06);
}

.footer {
  padding-top: 5rem !important;
  background: #071521 !important;
}

.footer-logo {
  width: 300px;
  height: auto;
  max-width: 100%;
}

.footer h2 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.contact-link {
  margin-bottom: .35rem;
  padding: 1rem 1.1rem;
}

@media(max-width:1199.98px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:991.98px) {
  .brand-logo {
    width: 190px !important
  }

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

  .package-card:hover,
  .owned-product:hover,
  .client-project-card:hover {
    transform: none
  }


}

@media(max-width:575.98px) {
  .brand-logo {
    width: 175px !important
  }

  .promo-ribbon .container {
    gap: .45rem !important
  }

  .promo-link {
    font-size: .65rem
  }

  .solution-grid {
    grid-template-columns: 1fr
  }

  .solution-tile {
    padding: 1rem
  }



  .client-project-image {
    height: 175px
  }

  .package-card .card-body {
    padding: 1.25rem !important
  }

  .package-card .display-6 {
    font-size: 2rem
  }

  .footer-logo {
    width: 255px
  }

  .contact-link {
    gap: .75rem;
    padding: .9rem
  }

  .section-space {
    padding: 3.75rem 0
  }
}

.client-portfolio {
  background: var(--surface-color) !important;
}

.portfolio-color-shot {
  height: 220px;
  padding: 1.25rem 1.25rem 0;
  background: linear-gradient(140deg, color-mix(in srgb, var(--project-accent) 28%, #e7eef3), #e9f0f4);
  overflow: hidden;
}

.portfolio-color-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: .85rem .85rem 0 0;
  box-shadow: 0 10px 28px rgba(11, 31, 51, .16);
}

.portfolio-result {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #294052;
  font-size: .84rem;
  font-weight: bold;
}

.conversion-band {
  background: var(--primary-color);
}

@media(max-width:575.98px) {
  .portfolio-color-shot {
    height: 190px;
    padding: 1rem 1rem 0
  }
}

/* Requested surface, heading and motion refinements */
.eyebrow {
  display: none !important;
}

.section-space h2 {
  font-size: clamp(2.65rem, 5.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.featured-products,
.client-projects,
.testimonials-section,
.packages-section,
.tech-section,
.faq,
.footer,
.background-primary,
.page-hero {
  background-color: var(--primary-color) !important;
  background-image: none !important;
}

.featured-products,
.client-projects {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.product-split-card {
  background: #fff !important;
  color: var(--primary-color);
  border: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.owned-product {
  background: #fff;
  color: var(--primary-color);
  border-color: transparent;
}

.owned-product .text-white-50 {
  color: #667686 !important;
}



.product-split-card:before {
  background: var(--project-accent);
}

.product-split-card li i {
  color: var(--project-accent);
}

.product-split-image {
  height: 100%;
  min-height: 360px;
  padding: 1.25rem 0 1.25rem 1.25rem;
  background: linear-gradient(145deg, var(--project-accent), color-mix(in srgb, var(--project-accent) 60%, var(--primary-color)));
  border-radius: 1.25rem 0 0 1.25rem;
  overflow: hidden;
}

.product-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: 1rem 0 0 1rem;
  box-shadow: 0 16px 38px rgba(11, 31, 51, .28);
}

.client-project-card {
  background: #fff !important;
  color: var(--primary-color);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.client-project-card .text-white-50 {
  color: #667686 !important;
}

.client-project-card .result-line {
  color: var(--primary-color);
}

.client-project-card .client-chip {
  color: #415467;
  border-color: #d6e1e8;
  background: #f4f7f9;
}

.client-project-card .client-project-image {
  background: linear-gradient(135deg, color-mix(in srgb, var(--project-accent) 42%, #eef3f6), #e8eef2);
}

.testimonial-card,
.package-card,
.recurring-card {
  background: #fff !important;
  color: var(--primary-color) !important;
}

.recurring-card .text-white-50 {
  color: #667686 !important;
}

.recurring-card .btn-outline-light {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.recurring-card .btn-outline-light:hover {
  color: #fff;
  background: var(--primary-color);
}

.recurring-card .color-accent {
  color: var(--secondary-color) !important;
}

.package-badge {
  background: #e5f6fe;
  color: #086d9f;
}

.bottleneck-section .solution-card {
  background: #fff !important;
  box-shadow: 0 14px 38px rgba(11, 31, 51, .08);
  border-radius: var(--card-radius) !important;
}

.testimonial-marquee {
  width: 100%;
  overflow: hidden;
  padding: 0 0 1rem;
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testimonial-scroll 100s linear infinite;
}

.testimonial-marquee:hover .testimonial-track,
.testimonial-marquee:focus-within .testimonial-track {
  animation-play-state: paused;
}

.testimonial-slide {
  width: min(420px, 85vw);
  flex: 0 0 auto;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

@keyframes testimonial-scroll {
  to {
    transform: translateX(calc(-50% - .75rem));
  }
}

@media(max-width:767.98px) {
  .section-space h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem)
  }

  .product-split-image {
    min-height: 250px;
    padding: 1rem 0 1rem 1rem
  }

  .testimonial-track {
    animation-duration: 42s
  }
}

@media(max-width:575.98px) {
  .product-split-image {
    min-height: 210px;
    border-radius: 1.25rem 1.25rem 0 0;
    padding: 1rem 1rem 0
  }

  .product-split-image img {
    border-radius: .9rem .9rem 0 0
  }

  .product-split-card .order-1 {
    order: 1 !important
  }

  .product-split-card .order-2 {
    order: 2 !important
  }
}

@media(prefers-reduced-motion:reduce) {
  .testimonial-track {
    animation: none;
    overflow-x: auto
  }

  .testimonial-marquee {
    overflow-x: auto;
    mask-image: none
  }
}

/* Sticky shell, About page and legacy modernization */
html,
body {
  overflow-x: clip !important;
}

.site-sticky-shell {
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
}

.site-header {
  position: relative !important;
  top: auto !important;
}

.about-hero {
  background: var(--primary-color) !important;
}

.about-portrait-card {
  position: relative;
  max-width: 440px;
  margin-inline: auto;
  background: #fff;
  border-radius: var(--card-radius);
  padding: 1rem;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .3);
}

.about-portrait-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: top;
  border-radius: 1rem;
}

.about-portrait-caption {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  background: rgba(11, 31, 51, .92);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  backdrop-filter: blur(8px);
}

.about-portrait-caption span {
  color: rgba(255, 255, 255, .62);
  font-size: .8rem
}

.about-stat,
.about-value-card,
.legacy-visual,
.about-goal-card,
.legacy-home-card {
  background: #fff !important;
  border-radius: var(--card-radius) !important;
  box-shadow: 0 14px 40px rgba(11, 31, 51, .08);
}

.about-stat strong {
  display: block;
  color: var(--secondary-color);
  font-size: 2rem;
  line-height: 1;
}

.about-stat span {
  display: block;
  color: #667686;
  font-size: .8rem;
  margin-top: .55rem
}

.about-value-card>i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--secondary-color);
  background: #e8f7fe;
  border-radius: 1rem;
  font-size: 1.35rem
}

.about-value-card {
  transition: transform .25s ease, box-shadow .25s ease
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(11, 31, 51, .12)
}

.legacy-code-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid #e2e8ed;
  padding-bottom: 1rem
}

.legacy-code-row small {
  margin-left: .5rem;
  color: #71808d
}

.legacy-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.legacy-upgrade-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2.5rem
}

.legacy-upgrade-flow>div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .65rem
}

.legacy-upgrade-flow>div>i {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 1.2rem;
  background: #e9f7fd;
  color: var(--secondary-color);
  font-size: 1.6rem
}

.legacy-upgrade-flow span {
  color: #71808d;
  font-size: .75rem
}

.legacy-upgrade-flow>i {
  color: var(--accent-color);
  font-size: 1.5rem
}

.legacy-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .8rem
}

.legacy-list i {
  color: var(--secondary-color)
}

.about-goal-card {
  border-left: 6px solid var(--secondary-color) !important
}

.legacy-home {
  background: #eaf0f4 !important;
}

.legacy-home-card {
  box-shadow: 0 22px 55px rgba(11, 31, 51, .1)
}

.legacy-capability {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #f3f7f9;
  border-radius: .8rem;
  padding: .85rem;
  font-weight: 700;
  font-size: .85rem
}

.legacy-capability i {
  color: var(--secondary-color)
}

.legacy-home-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  min-height: 350px;
  color: #fff;
  background: var(--primary-color)
}

.legacy-home-panel i {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 1.5rem;
  color: var(--primary-color);
  background: var(--accent-color);
  font-size: 2rem
}

.legacy-home-panel strong {
  font-size: 1.6rem
}

.legacy-home-panel span {
  color: rgba(255, 255, 255, .6)
}

@media(max-width:991.98px) {
  .about-portrait-card img {
    height: 380px
  }

  .about-value-card:hover {
    transform: none
  }

  .site-sticky-shell {
    position: sticky
  }
}

@media(max-width:575.98px) {
  .about-portrait-card img {
    height: 330px
  }

  .legacy-upgrade-flow {
    gap: .5rem
  }

  .legacy-upgrade-flow>div>i {
    width: 50px;
    height: 50px;
    font-size: 1.2rem
  }

  .legacy-upgrade-flow>i {
    font-size: 1rem
  }

  .legacy-home-panel {
    min-height: 260px
  }

  .promo-ribbon .small {
    font-size: .7rem
  }
}

/* Adaptive sticky header and mobile footer alignment */
.site-header,
.brand-bar,
.brand-logo,
.site-header .navbar {
  transition: padding .22s ease, width .22s ease, box-shadow .22s ease, background-color .22s ease;
}


@media(max-width:991.98px) {
  .site-header {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    min-height: 68px;
  }

  .brand-bar {
    flex: 0 0 auto;
    padding: .35rem 0 .35rem 1rem !important;
    text-align: left !important;
  }

  .brand-logo .brand-logo {
    width: 178px !important;
    max-height: 68px;
  }

  .site-header .navbar {
    position: static;
    flex: 1;
    border-top: 0;
    padding: .35rem 0 !important;
  }

  .site-header .navbar>.container {
    justify-content: flex-end;
    padding-right: 1rem;
  }

  .site-header .navbar-toggler {
    margin-left: auto;
  }

  .site-header .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--primary-color);
    box-shadow: 0 16px 28px rgba(0, 0, 0, .22);
  }

  .site-header .navbar-nav {
    align-items: stretch !important;
    margin: 0 !important;
  }

  .site-header .nav-link {
    padding: .7rem .5rem !important;
  }

  .site-header .navbar-nav .btn {
    width: 100%;
    margin: .65rem 0 0 !important;
    padding: .7rem 1rem;
  }

  .footer-brand,
  .footer-group {
    text-align: center;
  }

  .footer-brand .mw-500 {
    margin-inline: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer .row.small>div {
    text-align: center !important;
    margin-bottom: .4rem;
  }
}

@media(max-width:575.98px) {

  .brand-logo,
  .brand-logo {
    width: 166px !important;
    max-height: 66px;
  }

  .site-header {
    min-height: 62px;
  }

  .footer {
    padding-top: 4rem !important;
  }

  .footer .row {
    row-gap: 2.5rem;
  }

  .footer-logo {
    width: 260px;
  }

  .footer-group h2 {
    margin-bottom: 1rem;
  }

  .footer-links li {
    margin-bottom: .7rem;
  }
}

.variety-section {
  background-color: var(--primary-color);
}

.activity-section {
  background-color: var(--primary-color);
}

/* Portfolio cards */
.owned-product-card {
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    border-radius: 20px;
}

.owned-product-card{
    background:linear-gradient(135deg,var(--accent-from),var(--accent-to));
    transition:.35s;
    cursor:pointer;
    text-decoration:none;
}

.owned-product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.18);
}

.owned-product-shot{

}

.owned-product-shot img{

    object-fit:contain;
    transition:.35s;
}

.owned-product-card:hover img{
    transform:scale(1.05);
}

.product-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    color: #2b2b2b;
}

.product-checklist li i {
    color: black;
    margin-top: 0.15rem;
    font-size: 0.8rem;
}

.owned-product-card .badge {
    font-size: 0.7rem;
    padding: 0.4em 0.75em;
}

@media (max-width: 767.98px) {
    .owned-product-card .row {
        flex-direction: column;
    }
    .owned-product-card .col-5,
    .owned-product-card .col-7 {
        width: 100%;
    }
}