/*
Custom CSS for TemplateMo 561 Purple Buzz
Modern header: background, hover, scroll show/hide
*/

/* Prevent horizontal overflow from AOS/sliding animations (Home & About) */
body {
  overflow-x: hidden;
}

/* Site intro splash (home page) */
html.site-intro-active,
body.site-intro-active {
  overflow: hidden;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 10050;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 0;
  background: #e8edf2;
  opacity: 1;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.site-intro--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-intro__loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8edf2;
  z-index: 1;
}

.site-intro__fallback-logo {
  max-width: min(240px, 75vw);
  height: auto;
  background: #fff;
  border-radius: 0.65rem;
  padding: 0.55rem 0.9rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.site-intro__gif {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* AOS: smooth, in-bounds animations (no overflow) */
[data-aos] {
  pointer-events: auto;
}
@media (min-width: 768px) {
  [data-aos] {
    transition-timing-function: ease-in-out;
  }
}

/* Site logo (header + footer) */
.site-brand {
  padding: 0;
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
}

.site-brand--footer {
  margin-bottom: 0.25rem;
}

.site-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.site-logo--header {
  max-height: 56px;
  min-height: 44px;
  width: auto;
  min-width: 150px;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.35rem 0.6rem;
  /* box-shadow: 0 1px 6px rgba(15, 23, 42, 0.08); */
}

.site-logo--footer {
  max-height: 64px;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.45rem 0.75rem;
}

@media (min-width: 992px) {
  .site-logo--header {
    max-height: 68px;
    min-width: 180px;
    padding: 0.4rem 0.75rem;
  }

  .site-logo--footer {
    max-height: 72px;
  }
}

@media (min-width: 1200px) {
  .site-logo--header {
    max-height: 72px;
    min-width: 200px;
  }
}

/* ---- Top bar: phone, email, hours (inside nav so it shows and scroll-hides with nav) ---- */
.navbar-modern .top-bar {
  width: 100%;
  flex-shrink: 0;
}

.top-bar {
  background: linear-gradient(90deg, #1e3a5f 0%, #2563eb 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.75rem;
  padding: 0.45rem 0;
}

.top-bar-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem 0.85rem;
  flex: 1 1 auto;
  min-width: 0;
}

.top-bar-cta {
  flex-shrink: 0;
  padding: 0.35rem 0.9rem !important;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
  min-width: 0;
}

.top-bar-link__text {
  white-space: nowrap;
}

.top-bar-link:hover {
  color: #fff !important;
}

.top-bar-link i {
  font-size: 1rem;
  opacity: 0.95;
  flex-shrink: 0;
}

.top-bar .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: 500;
}

.top-bar .btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

@media (max-width: 575.98px) {
  .top-bar {
    font-size: 0.75rem;
  }

  .top-bar-inner {
    padding: 0.4rem 0;
    gap: 0.35rem 0.5rem;
  }

  .top-bar-items {
    gap: 0.35rem 0.55rem;
  }

  .top-bar-link--email .top-bar-link__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .top-bar-link--phone .top-bar-link__text {
    font-size: 0.72rem;
  }

  .top-bar-cta {
    padding: 0.3rem 0.7rem !important;
    font-size: 0.75rem;
  }
}

/* ---- Navbar: fixed, scroll behavior, background ---- */
.navbar-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.35s ease,
              box-shadow 0.35s ease,
              padding 0.3s ease;
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.bg-secondary {
  background-color: #2253b4 !important;
}
.text-primary {
  color: #2253b4 !important;
}

.navbar-modern .navbar-main {
  width: 100%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
}

.navbar-main-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 72px;
}

.navbar-main-nav {
  flex-basis: 100%;
}

@media (min-width: 992px) {
  .navbar-main-inner {
    display: grid;
    grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
    align-items: center;
    column-gap: 1rem;
    flex-wrap: nowrap;
    min-height: 76px;
  }

  .site-brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: center;
  }

  .navbar-toggler {
    display: none;
  }

  .navbar-main-nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    flex-basis: auto;
    display: flex !important;
    justify-content: center;
    width: max-content;
    max-width: 100%;
  }

  .navbar-main-cta {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .navbar-nav-main {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    margin: 0;
    padding: 0;
  }

  .navbar-nav-main .nav-item {
    flex-shrink: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-link-modern {
    font-size: 0.8125rem !important;
    padding: 0.4rem 0.55rem !important;
  }

  .nav-btn-calendly {
    font-size: 0.8125rem;
    padding: 0.4rem 0.85rem !important;
  }
}

@media (min-width: 1200px) {
  .navbar-nav-main {
    gap: 0.25rem;
  }

  .nav-link-modern {
    padding: 0.45rem 0.75rem !important;
  }
}

.navbar-modern.navbar-scrolled .navbar-main {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar-modern.navbar-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Hide when user scrolls down */
.navbar-modern.navbar-hidden {
  transform: translateY(-100%);
}

/* Spacer so content doesn't jump under fixed nav (top bar + nav) */
.navbar-spacer {
  height: 108px;
  pointer-events: none;
}

@media (min-width: 576px) {
  .navbar-spacer {
    height: 114px;
  }
}

@media (min-width: 768px) {
  .navbar-spacer {
    height: 120px;
  }
}

@media (min-width: 992px) {
  .navbar-spacer {
    height: 132px;
  }
}

@media (min-width: 1200px) {
  .navbar-spacer {
    height: 138px;
  }
}

/* ---- Menu link styles: background + hover ---- */
.nav-link-modern {
  color: #2d3748 !important;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.45rem 0.65rem !important;
  border-radius: 9999px;
  white-space: nowrap;
  transition: color 0.2s ease,
              background-color 0.2s ease,
              transform 0.2s ease;
}

.nav-link-modern:hover {
  color: #1e40af !important;
  background-color: rgba(59, 130, 246, 0.12);
}

.nav-link-modern:focus {
  color: #1e40af !important;
  background-color: rgba(59, 130, 246, 0.08);
  outline: none;
}

.nav-link-modern.active {
  color: #fff !important;
  background-color: #2563eb;
}

.nav-link-modern.active:hover {
  color: #fff !important;
  background-color: #1d4ed8;
}

/* Header Schedule Call (Calendly) button */
.nav-btn-calendly {
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  padding: 0.45rem 1rem !important;
  align-items: center;
}

.navbar-main-cta:hover {
  color: #fff;
  transform: translateY(-1px);
}
.nav-btn-calendly:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* Mobile: ensure toggler and brand stay visible */
.navbar-modern .navbar-toggler {
  transition: opacity 0.2s ease;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.9);
}

.navbar-modern .navbar-toggler-icon {
  width: 1.35em;
  height: 1.35em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-modern .navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.35);
}

@media (max-width: 991.98px) {
  .navbar-main-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .site-brand {
    order: 1;
    flex: 1 1 auto;
    max-width: calc(100% - 52px);
    margin-right: 0.5rem;
  }

  .navbar-toggler {
    order: 2;
    margin-left: auto;
    padding: 0.35rem 0.5rem;
  }

  .navbar-main-nav {
    order: 3;
    flex-basis: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    margin: 0.25rem -0.75rem -0.35rem;
    padding: 0.75rem 0.75rem 0.9rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 42, 0.1);
  }

  .navbar-nav-main {
    width: 100%;
  }

  .nav-link-modern {
    padding: 0.6rem 0.85rem !important;
    text-align: left;
    white-space: normal;
  }

  .nav-btn-calendly--mobile {
    width: 100%;
    margin-top: 0.65rem;
  }

  .site-logo--header {
    max-height: 48px;
    min-width: 120px;
    min-height: 38px;
    padding: 0.28rem 0.5rem;
  }

  .navbar-modern .navbar-main {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }
}

/* ---- Home hero: mobile responsive ---- */
#index_banner .banner-heading {
  position: relative;
}

#index_banner .banner-content {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

@media (max-width: 991.98px) {
  #index_banner.banner-vertical-center-index {
    padding-top: 0 !important;
  }

  #index_banner .carousel-inner {
    height: auto;
    min-height: 56vh;
    max-height: 70vh;
  }

  #index_banner .carousel-item {
    min-height: 56vh;
  }

  #index_banner .carousel-item > .row {
    min-height: inherit;
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    --bs-gutter-x: 0;
  }

  #index_banner .banner-content {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #index_banner .banner-heading.display-3 {
    font-size: clamp(1.55rem, 5vw, 2.35rem);
    line-height: 1.2;
  }

  #index_banner .banner-body {
    font-size: 0.975rem;
    line-height: 1.6;
  }

  #index_banner .carousel-control-prev,
  #index_banner .carousel-control-next {
    width: 12%;
  }

  #index_banner .carousel-control-prev i,
  #index_banner .carousel-control-next i {
    font-size: 2.5rem;
  }

  #index_banner .typo-space-line::after {
    width: 90px;
    border-bottom-width: 3px;
    padding-top: 0.35em;
  }

  #index_banner .text-center .typo-space-line::after {
    left: 50%;
    margin-left: -45px;
  }
}

@media (max-width: 575.98px) {
  #index_banner .carousel-inner {
    min-height: 50vh;
    max-height: 65vh;
  }

  #index_banner .carousel-item {
    min-height: 50vh;
  }

  #index_banner .carousel-item > .row {
    padding-top: 1rem !important;
    padding-bottom: 1.5rem !important;
  }

  #index_banner .banner-heading.display-3 {
    font-size: 1.5rem;
  }

  #index_banner .banner-body {
    font-size: 0.9rem;
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
  }

  #index_banner .banner-button.btn-lg {
    font-size: 0.9rem;
    padding: 0.5rem 1.15rem !important;
    display: inline-block;
    width: auto;
    max-width: 100%;
  }

  #index_banner .text-center .banner-button {
    margin-left: auto;
    margin-right: auto;
  }

  #index_banner .carousel-control-prev i,
  #index_banner .carousel-control-next i {
    font-size: 2rem;
  }

  #index_banner .carousel-indicators {
    margin-bottom: 0.35rem;
  }

  #index_banner .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }
}

/* ---- Horizontal scroll section (GSAP ScrollTrigger) ---- */
.horizontal-scroll-section {
  overflow: hidden;
}

.horizontal-scroll-section .horizontal {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.horizontal-scroll-section .horizontal-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  padding: 0 1rem;
  margin: 0;
}

.horizontal-scroll-section .horizontal-card {
  flex: 0 0 auto;
  width: 320px;
  max-width: 85vw;
}

.horizontal-scroll-section .horizontal-card .service-work {
  margin: 0;
  height: 100%;
  min-height: 280px;
}

.horizontal-scroll-section .horizontal-card .card-img {
  height: 220px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .horizontal-scroll-section .horizontal-card {
    width: 340px;
  }
}

/* ---- Sticky Card Stack (GSAP) ---- */
.sticky-container {
  position: relative;
  min-height: 580vh;
}

.sticky-offset {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cards-layout {
  position: relative;
  width: 100%;
  max-width: 90vh;
  height: 70vh;
  margin: 0 auto;
  perspective: 1920px;
}

.sticky-offset .card {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  max-width: 90vh;
  margin-left: -50%;
  height: 70vh;
  backface-visibility: hidden;
}

.sticky-offset .card .recent-work {
  display: block;
  height: 100%;
  width: 100%;
}

.sticky-offset .card .recent-work-img,
.sticky-offset .card .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.sticky-offset .firstback {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110%;
  height: 110%;
  margin-left: -55%;
  margin-top: -55%;
  background: linear-gradient(135deg, #6266ea 0%, #4232c2 100%);
  border-radius: 12px;
  pointer-events: none;
  z-index: -1;
  backface-visibility: hidden;
}

/* ---- Contact page: two-column form + CTA (match provided design) ---- */
.contact-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: ghostwhite;
}

/* .contact-hero-container {
  max-width: 1000px;
} */

.contact-hero-row {
  min-height: 520px;
}

.contact-form-col {
  position: relative;
  /* Replace with your image: add contact-form-bg.jpg to assets/img/ */
  background-image: url('../img/contact-form-bg.jpg');
  background-size: cover;
  background-position: center;
  /* background-color: #e8eaf0; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 2rem 2.25rem;
  width: 100%;
  max-width: 420px;
}

.contact-form-modern .form-control {
  border: 1px solid #dee2e6;
  font-size: 1rem;
}

.contact-form-modern .form-control::placeholder {
  color: #adb5bd;
}

.contact-form-modern .btn-primary {
  background: #2253b4;
  border: none;
  font-size: 1.05rem;
}

.contact-form-modern .btn-primary:hover {
  background: #3528a0;
}

.contact-cta-col {
  /* background: linear-gradient(135deg, #f0ebf8 0%, #e8e0f5 50%, #ede5f7 100%); */
  background-size: 100% 100%;
  /* position: relative; */
  display: flex;
  align-items: center;
  padding: 2.5rem 2rem;
}

.contact-cta-content {
  position: relative;
  z-index: 1;
}

.contact-cta-label {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1rem;
  color: #6236b0;
  margin-bottom: 0.5rem;
}

.contact-cta-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.contact-cta-text {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-helpline {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-helpline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2d3748;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-helpline-icon i {
  font-size: 1.35rem;
  color: #fff;
}

.contact-helpline-text {
  display: flex;
  flex-direction: column;
}

.contact-helpline-label {
  font-weight: 600;
  color: #6236b0;
  font-size: 0.9rem;
}

.contact-helpline-number {
  font-weight: 600;
  color: #2d3748;
  font-size: 1.1rem;
}

.btn-scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: #4232c2;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
  z-index: 1020;
  box-shadow: 0 4px 12px rgba(66, 50, 194, 0.4);
}

.btn-scroll-top i {
  font-size: 1.5rem;
}

.btn-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.btn-scroll-top:hover {
  background: #3528a0;
  color: #fff;
  transform: translateY(-2px);
}

/* ---- About: Page header (title + subtitle + intro) ---- */
.about-page-header {
  /* background-color: #e8f0ff; */
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background: #023866;
background: linear-gradient(73deg, rgba(2, 56, 102, 1) 7%, rgba(0, 79, 120, 1) 100%);
}

.about-header-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-header-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.about-header-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.about-header-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}

/* ---- About: Innovation & Tech Stack ---- */
.innovation-tech-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.innovation-tech-header {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.innovation-tech-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.innovation-tech-lead {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.innovation-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.innovation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #c7d2fe;
}

.innovation-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.innovation-card-icon i {
  font-size: 1.75rem;
}

.innovation-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.innovation-card-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ---- About: Our Story section ---- */
.our-story-section {
  background-color: #f5f1eb;
}

.our-story-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: #2d1b4e;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.our-story-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.our-story-headline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: #2d1b4e;
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.our-story-body {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 0;
}

.our-story-btn {
  background: #2d1b4e;
  color: #fff;
  border: none;
  margin-top: 1.25rem;
  font-size: 1rem;
}

.our-story-btn:hover {
  background: #1f1335;
  color: #fff;
}

/* Founder / leadership profile */
.founder-profile {
  max-width: 380px;
}

.founder-profile--home {
  max-width: 340px;
}

.founder-profile img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(15, 23, 42, 0.12));
}

.founder-section {
  border-top: 1px solid #e2e8f0;
}

.founder-section-title {
  color: #1e293b;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.founder-section-role {
  font-size: 1.05rem;
}

.founder-section-actions {
  margin-top: 0.25rem;
}

.founder-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  line-height: 1.2;
  border-width: 2px;
  border-style: solid;
  white-space: nowrap;
}

.founder-action-btn--primary {
  background: #2d1b4e;
  color: #fff;
  border-color: #2d1b4e;
}

.founder-action-btn--primary:hover {
  background: #1f1335;
  border-color: #1f1335;
  color: #fff;
}

.founder-action-btn--outline {
  background: #fff;
  color: #2253b4;
  border-color: #2253b4;
}

.founder-action-btn--outline:hover {
  background: #2253b4;
  border-color: #2253b4;
  color: #fff;
}

/* ---- About: Stats / counter section ---- */
.stats-section .stats-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.stats-section .stats-title {
  font-size: 1.05rem;
  opacity: 0.95;
}

.stats-section .stats-card {
  transition: transform 0.2s ease;
}

.stats-section .stats-card:hover {
  transform: translateY(-4px);
}

/* ---- About: Why Choose Us – font sizes + GSAP reveal ---- */
.why-choose-content .why-choose-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.why-choose-content .why-choose-text {
  font-size: 1.1rem;
  line-height: 1.75;
}

.why-choose-text .why-choose-word {
  display: inline;
}

.why-choose-text .typing-cursor {
  display: inline;
  font-weight: 300;
  color: #4232c2;
  margin-left: 2px;
  animation: typing-cursor-blink 0.9s step-end infinite;
}

@keyframes typing-cursor-blink {
  50% { opacity: 0; }
  100% { opacity: 0.9; }
}

/* ---- About: Aim stack cards (Vision, Mission, Values) ---- */
.aim-cards-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aim-cards-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.aim-cards-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 80%;
  height: 80vh;
  min-height: 360px;
  overflow: hidden;
}

.aim-card {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aim-card-body {
  width: 100%;
  height: 80vh;
  min-height: 360px;
  margin: 0 auto;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
}

.aim-card-vision {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 50%, #f5f7ff 100%);
}

.aim-card-mission {
  background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 50%, #f0fdf4 100%);
}

.aim-card-values {
  background: linear-gradient(135deg, #fffaf0 0%, #fff5e6 50%, #fffbeb 100%);
}

.aim-card-left {
  width: 42%;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
}

.aim-card-icon-wrap {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(66, 50, 194, 0.12);
  box-shadow: 0 8px 24px rgba(66, 50, 194, 0.15);
}

.aim-card-vision .aim-card-icon-wrap { background: rgba(99, 102, 241, 0.2); box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2); }
.aim-card-mission .aim-card-icon-wrap { background: rgba(34, 197, 94, 0.2); box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2); }
.aim-card-values .aim-card-icon-wrap { background: rgba(245, 158, 11, 0.2); box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25); }

.aim-card-icon-wrap i {
  font-size: 4rem;
  color: #4232c2;
}

.aim-card-mission .aim-card-icon-wrap i { color: #16a34a; }
.aim-card-values .aim-card-icon-wrap i { color: #d97706; }

.aim-card-right {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.5rem 2.5rem 1.5rem;
  text-align: left;
}

.aim-card-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.aim-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.aim-card-text strong {
  color: #334155;
}

@media (max-width: 767.98px) {
  .aim-card-body {
    flex-direction: column;
  }

  .aim-card-left {
    width: 100%;
    min-width: 0;
    padding: 1.5rem;
  }

  .aim-card-icon-wrap {
    width: 100px;
    height: 100px;
  }

  .aim-card-icon-wrap i {
    font-size: 2.75rem;
  }

  .aim-card-right {
    width: 100%;
    padding: 1.25rem 1.5rem 2rem;
    text-align: center;
  }

  .aim-card-title {
    font-size: 1.4rem;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .why-choose-content .why-choose-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 991.98px) {
  .contact-hero-row {
    min-height: auto;
  }

  .contact-form-col {
    min-height: 320px;
    padding: 2rem;
  }

  .contact-cta-col {
    padding: 2rem;
  }

  .contact-cta-heading {
    font-size: 1.5rem;
  }
}

/* ========== Contact page (contact.php) – modern UI + GSAP-ready ========== */
.contact-page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #2563eb 100%);
  z-index: 0;
}

.contact-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 70% 50%, rgba(59, 130, 246, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.contact-page-hero .container {
  z-index: 1;
}

.min-vh-50 {
  min-height: 50vh;
}

.contact-hero-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.contact-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-hero-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.contact-hero-illus.d-lg-none img {
  max-height: 200px;
  width: auto;
}

.contact-hero-img {
  max-height: 280px;
  width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Contact content section */
.contact-page-content {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-content-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.contact-content-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.contact-content-lead {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 0;
}

/* Contact info cards */
.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
  border-color: #c7d2fe;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover .contact-card-icon {
  transform: scale(1.08);
}

.contact-card-icon i {
  font-size: 1.5rem;
}

.contact-card-body {
  flex: 1;
  min-width: 0;
}

.contact-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.35rem;
}

.contact-card-link,
.contact-card-text {
  font-size: 0.9rem;
  color: #64748b;
  text-decoration: none;
  display: block;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.contact-card-link:hover {
  color: #2563eb;
}

/* Contact form card */
.contact-form-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s ease, border-color 0.3s ease;
}

.contact-form-card:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.08);
  border-color: #c7d2fe;
}

.contact-form-modern .form-control,
.contact-form-modern .form-select {
  border: 1px solid #000000;
  border-radius: 12px;
  padding: 1rem 1rem;
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-modern .form-control:focus,
.contact-form-modern .form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  outline: none;
}

.contact-form-modern .form-floating > label {
  color: #64748b;
}

.contact-form-modern .form-control:focus ~ label,
.contact-form-modern .form-control:not(:placeholder-shown) ~ label,
.contact-form-modern .form-select:focus ~ label,
.contact-form-modern .form-select:not([value=""]) ~ label {
  color: #2563eb;
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: none;
  border-radius: 9999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-contact-submit:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.btn-contact-submit .btn-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.btn-contact-submit:hover .btn-icon {
  transform: translateX(4px);
}

/* Map section */
.contact-map-section {
  background: #f1f5f9;
}

.contact-map-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.02em;
}

.contact-map-wrapper {
  border: 1px solid #e2e8f0;
}

.contact-map-location-title {
  font-weight: 700;
  color: #1e293b;
}

.contact-map-address {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Solutions at a Glance (home page) */
.solutions-glance-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2253b4;
  margin-bottom: 0.75rem;
}

.solutions-glance-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.solutions-glance-block {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.solutions-glance-block:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.solutions-glance-block__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #2253b4 0%, #3b82f6 100%);
  color: #fff;
  font-size: 1.5rem;
}

.solutions-glance-block__icon--biz {
  background: linear-gradient(135deg, #2d1b4e 0%, #5b3d8f 100%);
}

.solutions-glance-block__icon--web {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
}

.solutions-glance-block__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.35rem;
}

.solutions-glance-block__text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0.65rem;
}

.solutions-glance-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

.solutions-glance-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.875rem;
  color: #475569;
}

.solutions-glance-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2253b4;
}

.solutions-glance-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2253b4;
  text-decoration: none;
}

.solutions-glance-link:hover {
  color: #1e40af;
}

.solutions-glance-link i {
  transition: transform 0.2s ease;
}

.solutions-glance-link:hover i {
  transform: translateX(3px);
}

.solutions-glance-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.solutions-glance-figure {
  margin: 0;
}

.solutions-glance-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.solutions-glance-caption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 0.25rem 0;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.45;
}

.solutions-glance-caption__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2253b4;
}

.solutions-glance-caption strong {
  font-size: 1rem;
  color: #1e293b;
}

@media (max-width: 991.98px) {
  .solutions-glance-visual {
    margin-top: 0.5rem;
  }
}

/* Blog section (home + detail) */
.blog-section {
  background: #fff;
}

.blog-section--hero-below {
  border-top: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.blog-section-kicker,
.blog-detail-hero .blog-card-category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2253b4;
  margin-bottom: 0.75rem;
}

.blog-carousel {
  position: relative;
}

.blog-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.blog-carousel-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  background: #fff;
  color: #2253b4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-carousel-btn:hover:not(:disabled) {
  background: #2253b4;
  border-color: #2253b4;
  color: #fff;
}

.blog-carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.blog-carousel-viewport {
  overflow: hidden;
}

.blog-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.blog-card {
  flex: 0 0 calc(100% - 0px);
  min-width: 0;
}

@media (min-width: 768px) {
  .blog-card {
    flex-basis: calc(50% - 0.75rem);
  }
}

@media (min-width: 992px) {
  .blog-card {
    flex-basis: calc(33.333% - 1rem);
  }
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
  color: inherit;
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card-link:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-category {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(34, 83, 180, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.25rem 1.35rem;
}

.blog-card-date {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0.45rem;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 0.55rem;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2253b4;
}

.blog-card-readmore i {
  transition: transform 0.2s ease;
}

.blog-card-link:hover .blog-card-readmore i {
  transform: translateX(3px);
}

.blog-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.blog-carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.blog-carousel-dot.is-active {
  background: #2253b4;
  transform: scale(1.15);
}

.blog-detail-hero {
  padding: 5rem 0 2rem;
  background: linear-gradient(180deg, #f1f5f9 0%, #fff 100%);
}

.blog-breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: #64748b;
}

.blog-breadcrumb-list li + li::before {
  content: '/';
  margin-right: 0.35rem;
  color: #94a3b8;
}

.blog-breadcrumb-list a {
  color: #2253b4;
  text-decoration: none;
}

.blog-detail-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  max-width: 48rem;
  margin-bottom: 1rem;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.9rem;
  color: #64748b;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-detail-body-wrap {
  padding: 2rem 0 4rem;
}

.blog-detail-featured {
  margin: 0 0 2rem;
}

.blog-detail-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-detail-content p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.15rem;
}

.blog-detail-cta {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

/* Global blob cursor (React Bits port — all pages) */
.site-blob-cursor {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
}

.blob-cursor-filter-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.blob-cursor-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.blob-cursor-blob {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  transform: translate(-50%, -50%);
}

.blob-cursor-inner {
  position: absolute;
}

/* Global click spark (React Bits ClickSpark port — all pages) */
.site-click-spark {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 200;
  user-select: none;
}

.site-click-spark__canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

/* ========== Training page (training.php) ========== */
.training-hero {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.training-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #2563eb 100%);
  z-index: 0;
}

.training-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.training-hero .container { z-index: 1; }

.training-hero-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
}

.training-hero-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.training-hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* Training section labels/titles */
.training-section-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.training-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

/* Problem → Solution */
.training-problem-solution {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.problem-solution-card {
  padding: 2rem 1.75rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.problem-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #c7d2fe;
}

.problem-card { background: #fff; }
.solution-card { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); border-color: #93c5fd; }

.problem-solution-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.25rem;
}

.problem-list li,
.solution-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #475569;
  line-height: 1.4;
}

.problem-list i { color: #dc2626; font-size: 1.35rem; flex-shrink: 0; }
.solution-list i { color: #16a34a; font-size: 1.35rem; flex-shrink: 0; }

.problem-solution-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  transition: transform 0.3s ease;
}

.problem-solution-arrow:hover { transform: scale(1.1); }

@media (max-width: 991.98px) {
  .problem-solution-arrow { transform: rotate(90deg); }
}

/* What We Offer – flip cards */
.offer-flip-card {
  perspective: 1200px;
  height: 220px;
}

.offer-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.offer-flip-card:hover .offer-flip-inner {
  transform: rotateY(180deg);
}

.offer-flip-front,
.offer-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.offer-flip-front {
  background: #fff;
}

.offer-flip-back {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  transform: rotateY(180deg);
}

.offer-flip-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.offer-flip-icon i { font-size: 1.75rem; }

.offer-flip-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.offer-flip-back ul li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  opacity: 0.95;
  text-align: left;
  padding-left: 1rem;
}

/* Development Process – timeline */
.training-process {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.training-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.training-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #2563eb, #93c5fd);
  border-radius: 2px;
}

.timeline-step {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 16px;
  height: 16px;
  margin-left: -2px;
  background: #2563eb;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #2563eb;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .timeline-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3);
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Technologies grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.tech-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
  border-color: #93c5fd;
}

.tech-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
}

/* Training course cards */
.training-course-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.training-course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  border-color: #c7d2fe;
}

.training-course-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.training-course-icon i { font-size: 1.5rem; }

.training-course-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.training-course-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.training-course-list {
  margin-bottom: 1rem;
}

.training-course-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
  padding: 0.25rem 0;
}

.training-course-list i { color: #16a34a; flex-shrink: 0; }

.training-course-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: #eff6ff;
  color: #2563eb;
}

/* Why choose cards */
.training-why-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.training-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.training-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.training-why-icon i { font-size: 1.5rem; }

.training-why-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.training-why-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Training CTA */
.training-cta {
  position: relative;
  overflow: hidden;
}

.training-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  z-index: 0;
}

.training-cta .container { z-index: 1; }

.training-cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.training-cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.training-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2563eb;
  background: #fff;
  border: none;
  border-radius: 9999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.training-cta-btn:hover {
  color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ========== Services horizontal pin scroll (services.php) ========== */
.services-horizontal-pin {
  position: relative;
}

.services-pin-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.services-horizontal-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  height: 100%;
  will-change: transform;
}

.services-panel {
  flex: 0 0 auto;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fff;
}

.services-panel:nth-child(even) {
  background: #f8fafc;
}

.services-panel-inner {
  width: 100%;
}

.services-panel-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-panel-img {
  max-height: 70vh;
  width: auto;
  object-fit: contain;
}

/* Fixed floating buttons: WhatsApp (bottom-left), Calendly (bottom-right) */
.float-btn {
  position: fixed;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.float-btn:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.float-btn i {
  font-size: 1.75rem;
}
.float-btn-label {
  display: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.float-btn-whatsapp {
  bottom: 1.5rem;
  left: 1.5rem;
  background: #25d366;
}
.float-btn-whatsapp:hover {
  background: #20bd5a;
}
.float-btn-calendly {
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.float-btn-calendly:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}
@media (min-width: 768px) {
  .float-btn-calendly {
    width: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-radius: 9999px;
  }
  .float-btn-calendly .float-btn-label {
    display: inline;
  }
}

@media (max-width: 991.98px) {
  .services-horizontal-pin .services-pin-wrap {
    height: auto;
    min-height: 100vh;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }

  .services-horizontal-track {
    flex-wrap: nowrap;
    min-height: 100vh;
  }

  .services-panel {
    min-height: auto;
    padding: 2rem 0;
  }

  .services-panel .row.min-vh-100 {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ---- Home: “What we do” — modern layered layout ---- */
.home-wwd-section {
  --home-wwd-primary: #2253b4;
  --home-wwd-primary-light: #2563eb;
  --home-wwd-ink: #0f172a;
  isolation: isolate;
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #f1f5f9 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.home-wwd-section__inner {
  z-index: 2;
}

.home-wwd-section__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.home-wwd-section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.home-wwd-section__orb--1 {
  width: min(380px, 70vw);
  height: min(380px, 70vw);
  background: rgba(37, 99, 235, 0.35);
  top: -15%;
  right: -8%;
}

.home-wwd-section__orb--2 {
  width: min(300px, 55vw);
  height: min(300px, 55vw);
  background: rgba(30, 58, 95, 0.28);
  bottom: -10%;
  left: -12%;
}

.home-wwd-kicker-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-wwd-primary);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 9999px;
  box-shadow: 0 2px 12px rgba(34, 83, 180, 0.08);
}

.home-wwd-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: var(--home-wwd-ink);
  margin: 0 0 1.1rem;
  max-width: 22ch;
}

.home-wwd-title-accent {
  background: linear-gradient(120deg, var(--home-wwd-primary) 0%, var(--home-wwd-primary-light) 45%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-wwd-lead {
  font-size: 1.0625rem;
  line-height: 1.68;
  color: #475569;
  max-width: 38rem;
  margin: 0 0 1.35rem;
}

.home-wwd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.home-wwd-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 9999px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-wwd-pills li:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 22px rgba(34, 83, 180, 0.1);
}

.home-wwd-pills i {
  font-size: 1.05rem;
  color: var(--home-wwd-primary-light);
}

.home-wwd-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.home-wwd-btn-primary {
  font-weight: 700;
  padding: 0.55rem 1.35rem;
  border: none;
  color: #fff !important;
  background: linear-gradient(135deg, var(--home-wwd-primary) 0%, #1d4ed8 100%);
  box-shadow: 0 8px 26px rgba(34, 83, 180, 0.32);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.home-wwd-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 83, 180, 0.38);
  color: #fff !important;
}

.home-wwd-btn-ghost {
  font-weight: 700;
  padding: 0.55rem 1.35rem;
  border: 2px solid rgba(34, 83, 180, 0.35);
  color: var(--home-wwd-primary) !important;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-wwd-btn-ghost:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: var(--home-wwd-primary);
  color: var(--home-wwd-primary) !important;
  transform: translateY(-2px);
}

.home-wwd-btn-primary:focus-visible,
.home-wwd-btn-ghost:focus-visible {
  outline: 2px solid var(--home-wwd-primary-light);
  outline-offset: 3px;
}

.home-wwd-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

@media (min-width: 992px) {
  .home-wwd-stack {
    padding-left: 0.25rem;
  }
}

.home-wwd-card {
  position: relative;
  border-radius: 18px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.home-wwd-card--highlight {
  background: linear-gradient(115deg, #1e3a5f 0%, #2253b4 38%, #2563eb 68%, #3b82f6 100%);
  color: #fff;
  padding: 1.45rem 1.45rem 1.45rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.06),
    0 24px 48px rgba(37, 99, 235, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.home-wwd-card--highlight:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 16px rgba(15, 23, 42, 0.08),
    0 32px 56px rgba(37, 99, 235, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

@media (min-width: 992px) {
  .home-wwd-card--highlight {
    padding: 1.6rem 1.65rem 1.6rem 1.75rem;
    margin-left: 0.4rem;
  }
}

.home-wwd-card__shine {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 120%;
  background: linear-gradient(125deg, transparent 0%, rgba(255, 255, 255, 0.12) 45%, transparent 65%);
  transform: rotate(12deg);
  pointer-events: none;
}

.home-wwd-pointer {
  display: none;
}

@media (min-width: 992px) {
  .home-wwd-pointer {
    display: block;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 12px 13px 0;
    border-color: transparent #1e3a5f transparent transparent;
    filter: drop-shadow(-2px 0 3px rgba(15, 23, 42, 0.1));
    z-index: 3;
  }
}

.home-wwd-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.35rem 0;
  margin-left: 1.65rem;
}

.home-wwd-connector__line {
  width: 2px;
  height: 1.25rem;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.45), rgba(148, 163, 184, 0.5));
  border-radius: 2px;
}

.home-wwd-connector__dot {
  width: 8px;
  height: 8px;
  margin-top: -1px;
  border-radius: 50%;
  background: var(--home-wwd-primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

@media (max-width: 575.98px) {
  .home-wwd-connector {
    margin-left: 0;
  }
}

.home-wwd-card__row {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}

.home-wwd-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
}

.home-wwd-icon--on-gradient {
  background: rgba(255, 255, 255, 0.98);
  color: var(--home-wwd-primary);
  font-size: 1.55rem;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
}

.home-wwd-card--plain {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(15, 23, 42, 0.09);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.home-wwd-card--plain:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.home-wwd-icon--muted {
  background: linear-gradient(145deg, #e2e8f0, #f1f5f9);
  color: var(--home-wwd-primary);
  font-size: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.home-wwd-card__title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.home-wwd-card--highlight .home-wwd-card__title {
  color: rgba(255, 255, 255, 0.98);
}

.home-wwd-card--plain .home-wwd-card__title {
  color: var(--home-wwd-ink);
}

.home-wwd-card__text {
  font-size: 0.9375rem;
  line-height: 1.62;
}

.home-wwd-card--highlight .home-wwd-card__text {
  color: rgba(255, 255, 255, 0.93);
}

.home-wwd-card--plain .home-wwd-card__text {
  color: #475569;
}

@media (max-width: 575.98px) {
  .home-wwd-card__row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-wwd-icon {
    margin-bottom: 0.25rem;
  }

  .home-wwd-pills {
    justify-content: center;
  }

  .home-wwd-cta-row {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-wwd-pills li,
  .home-wwd-card--highlight,
  .home-wwd-card--plain,
  .home-wwd-btn-primary,
  .home-wwd-btn-ghost {
    transition: none;
  }

  .home-wwd-pills li:hover,
  .home-wwd-card--highlight:hover,
  .home-wwd-card--plain:hover,
  .home-wwd-btn-primary:hover,
  .home-wwd-btn-ghost:hover {
    transform: none;
  }

  .home-wwd-section__orb {
    display: none;
  }
}

/* ---- Home: product category tiles (industry grid) ---- */
.home-prod-cats {
  --home-prod-accent: #2563eb;
  --home-prod-accent-soft: rgba(37, 99, 235, 0.14);
  --home-prod-border: rgba(37, 99, 235, 0.38);
  padding-top: clamp(2.75rem, 5vw, 4.25rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.25rem);
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.home-prod-cats__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .home-prod-cats__head {
    margin-bottom: 2.5rem;
  }
}

.home-prod-cats__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0f172a;
}

.home-prod-cats__rule {
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, var(--home-prod-accent), transparent);
  opacity: 0.95;
}

.home-prod-cats__sub {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 34rem;
}

.home-prod-cats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 576px) {
  .home-prod-cats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 992px) {
  .home-prod-cats__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

.home-prod-cats__tile {
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  outline: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.home-prod-cats__tile:focus-visible {
  outline: 2px solid var(--home-prod-accent);
  outline-offset: 3px;
}

.home-prod-cats__tile-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 1.1rem 0.65rem;
  background: #fff;
  border: 2px solid var(--home-prod-border);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-prod-cats__tile:hover .home-prod-cats__tile-inner,
.home-prod-cats__tile:focus-visible .home-prod-cats__tile-inner {
  border-color: #2253b4;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow:
    0 4px 12px rgba(37, 99, 235, 0.12),
    0 18px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-6px);
}

.home-prod-cats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.65rem;
  font-size: 2rem;
  color: #0f172a;
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-prod-cats__tile:hover .home-prod-cats__icon,
.home-prod-cats__tile:focus-visible .home-prod-cats__icon {
  color: #2253b4;
  transform: scale(1.06);
}

.home-prod-cats__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #334155;
  transition: color 0.3s ease;
}

.home-prod-cats__tile:hover .home-prod-cats__label,
.home-prod-cats__tile:focus-visible .home-prod-cats__label {
  color: #0f172a;
}

.home-prod-cats__cta {
  font-weight: 700;
  padding: 0.55rem 1.35rem;
  border: none;
  color: #fff !important;
  background: linear-gradient(135deg, #2253b4 0%, #2563eb 100%);
  box-shadow: 0 8px 24px rgba(34, 83, 180, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-prod-cats__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 83, 180, 0.35);
  color: #fff !important;
}

.home-prod-cats__cta i {
  font-size: 1.2rem;
  vertical-align: -2px;
  transition: transform 0.25s ease;
}

.home-prod-cats__cta:hover i {
  transform: translateX(4px);
}

.home-prod-cats__cta:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .home-prod-cats__tile,
  .home-prod-cats__tile-inner,
  .home-prod-cats__icon,
  .home-prod-cats__cta,
  .home-prod-cats__cta i {
    transition: none;
  }

  .home-prod-cats__tile:hover .home-prod-cats__tile-inner,
  .home-prod-cats__tile:focus-visible .home-prod-cats__tile-inner,
  .home-prod-cats__tile:hover .home-prod-cats__icon,
  .home-prod-cats__tile:focus-visible .home-prod-cats__icon {
    transform: none;
  }

  .home-prod-cats__cta:hover,
  .home-prod-cats__cta:hover i {
    transform: none;
  }
}

/* ---- Home: FAQ accordion ---- */
.home-faq {
  padding-top: clamp(2.75rem, 5vw, 4.25rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.25rem);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f1f5f9 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

#faq {
  scroll-margin-top: 120px;
}

.home-faq__head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .home-faq__head {
    margin-bottom: 2.5rem;
  }
}

.home-faq__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0f172a;
}

.home-faq__rule {
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.home-faq__intro {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
  max-width: 32rem;
}

.home-faq__accordion .home-faq__item {
  margin-bottom: 0.65rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.home-faq__accordion .home-faq__item:last-of-type {
  margin-bottom: 0;
}

.home-faq__accordion .accordion-header {
  margin-bottom: 0;
}

.home-faq__btn {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
  background-color: #fff;
  padding: 1rem 1.15rem;
  box-shadow: none !important;
}

.home-faq__btn:not(.collapsed) {
  color: #2253b4;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.07) 0%, #fff 100%);
}

.home-faq__btn::after {
  background-size: 1.1rem;
  filter: brightness(0) saturate(100%) invert(27%) sepia(85%) saturate(2000%) hue-rotate(210deg) brightness(0.85);
  opacity: 0.75;
}

.home-faq__btn.collapsed::after {
  filter: brightness(0) saturate(100%) invert(35%) sepia(10%) saturate(500%) hue-rotate(180deg);
  opacity: 0.55;
}

.home-faq__btn:focus {
  border-color: transparent;
  box-shadow: none;
}

.home-faq__btn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  z-index: 1;
}

.home-faq__body {
  padding: 0 1.15rem 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 1rem;
}

.home-faq__body a {
  font-weight: 600;
  color: #2253b4;
  text-decoration: none;
}

.home-faq__body a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.home-faq__foot {
  font-size: 0.875rem;
  color: #64748b;
}

.home-faq__link {
  font-weight: 700;
  color: #2253b4;
  text-decoration: none;
}

.home-faq__link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .home-faq__btn::after {
    transition: none;
  }
}

/* Database-backed forms and Schedule Call modal */
.schedule-call-modal {
  z-index: 1065;
}

.schedule-call-modal .modal-content {
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 4rem rgba(15, 23, 42, 0.24);
}

.schedule-call-modal__intro {
  background: linear-gradient(145deg, #2253b4 0%, #172554 100%);
}

.schedule-call-modal__logo {
  width: 180px;
  height: 70px;
  padding: 0.4rem 0.65rem;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  border-radius: 0.75rem;
}

.schedule-call-form .form-control {
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
}

.schedule-call-form .form-control:focus {
  border-color: #2253b4;
  box-shadow: 0 0 0 0.2rem rgba(34, 83, 180, 0.15);
}

@media (max-width: 991.98px) {
  .schedule-call-modal .modal-dialog {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .schedule-call-modal .modal-content {
    max-height: calc(100dvh - 2rem);
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

.recaptcha-wrap,
.js-recaptcha {
  max-width: 100%;
}

.js-recaptcha > div {
  max-width: 100%;
}

@media (max-width: 360px) {
  .js-recaptcha {
    transform: scale(0.86);
    transform-origin: left top;
    margin-bottom: -11px;
  }
}

.thank-you-page {
  min-height: 65vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.thank-you-card {
  max-width: 720px;
  padding: clamp(2rem, 5vw, 4rem);
  background: #ffffff;
  border: 1px solid rgba(34, 83, 180, 0.12);
  border-radius: 1.5rem;
  box-shadow: 0 1.25rem 3rem rgba(15, 23, 42, 0.1);
}

.thank-you-card__icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #16a34a;
  border-radius: 50%;
  font-size: 3rem;
}
