@import url("https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap");

:root {
  /* Colors */
  --primary-purple: #3f1f71;
  --primary-blue: #283d8d;
  --primary-gradient: linear-gradient(
    90deg,
    var(--primary-purple) 0%,
    var(--primary-blue) 100%
  );
  --gradient-heading: linear-gradient(
    195deg,
    var(--primary-purple) 0%,
    var(--primary-blue) 100%
  );

  --bg-white: #ffffff;
  --bg-soft: #f7f9fb;
  --bg-overlay: rgba(255, 255, 255, 0.7);
  --bg-dark-blue: #040f20;
  --bg-dark-blue2: #0f172a;
  --bg-gray: #f2f4f6;

  --text-dark: #000000;
  --text-muted: #44474c;
  --text-light: #ffffff;
  --text-gray-600: #64748b;
  --text-blue-gray: #9eadc5;

  --border-soft: rgba(226, 232, 240, 0.5);
  --shadow-sm:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-all: 0 0 10px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 48px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Font Families */
  --font-heading: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Font Weight */
  --fw-extrabold: 800;
  --fw-bolder: 900;
}

/* Base Reset & Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background-color: var(--bg-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Selection */
::selection {
  background-color: var(--primary-purple);
  color: var(--text-light);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-purple), var(--primary-blue));
  border-radius: 10px;
  border: 2px solid var(--bg-soft);
}

::-webkit-scrollbar-thumb:hover {
  filter: brightness(1.2);
}

/* section */
.bg-gray {
  background-color: var(--bg-gray);
  padding: 96px 0;
}

.bg-light {
  background-color: var(--bg-white);
  padding: 96px 0;
}

.bg-soft-gray {
  background-color: var(--bg-soft);
  padding: 96px 0;
}

.bg-dark-blue {
  background-color: var(--bg-dark-blue);
  padding: 96px 0;
}

/* grid classes */
.grid-cols-1 {
  grid-template-columns: 1fr;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid-cols-7 {
  grid-template-columns: repeat(7, 1fr);
}
.grid-cols-8 {
  grid-template-columns: repeat(8, 1fr);
}

@media (min-width: 576px) {
  .grid-sm-cols-1 {
    grid-template-columns: 1fr;
  }
  .grid-sm-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-sm-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-sm-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-sm-cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-sm-cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-sm-cols-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-sm-cols-8 {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-md-cols-1 {
    grid-template-columns: 1fr;
  }
  .grid-md-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-md-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-md-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-md-cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-md-cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-md-cols-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-md-cols-8 {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-lg-cols-1 {
    grid-template-columns: 1fr;
  }
  .grid-lg-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-lg-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-lg-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-lg-cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-lg-cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-lg-cols-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid-lg-cols-8 {
    grid-template-columns: repeat(8, 1fr);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #000 !important;
}
.body-font {
  font-family: var(--font-body);
}

/* layout */
.four-column-grid {
  grid-template-columns: repeat(4, 1fr);
}
.form-control,
.form-select {
  border-radius: 8px !important;
  line-height: 1.5 !important;
}

.bg-primary-gradient {
  background: var(--primary-gradient);
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading {
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.description-text {
  color: var(--text-muted);
  max-width: 672px;
  margin: 0 auto;
}

/* Container Refinement */
.container {
  max-width: 1248px !important;
  margin: 0 auto;
  padding-right: 16px !important;
  padding-left: 16px !important;
}

/* Typography Scalability */
.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-30 {
  font-size: 30px;
}

.fs-32 {
  font-size: 32px;
}

.fs-36 {
  font-size: 36px;
}

.fs-72 {
  font-size: 72px;
}

.fs-48 {
  font-size: 48px;
}

/* letter spacing */
.ls-1 {
  letter-spacing: 0.05em;
}
.ls-2 {
  letter-spacing: 0.1em;
}
.ls-3 {
  letter-spacing: 0.15em;
}

/* Font Weight */
.fw-extrabold {
  font-weight: 800 !important;
}
.fw-black {
  font-weight: 900 !important;
}

.text-gray {
  color: var(--text-muted);
}
.text-blue-gray {
  color: var(--text-blue-gray);
}

.p-40 {
  padding: 40px;
}

.gradient-text {
  background: var(--gradient-heading);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Header & Navigation */
.nav-link-custom {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  list-style: none;
}
.nav-link-custom.active {
  color: var(--primary-purple);
  position: relative;
}
/* .nav-link-custom.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bg-dark-blue2);
} */

.header {
  padding: 20px 0;
}

.nav-link-custom:hover {
  color: var(--primary-purple);
}

/* Buttons */
.secondry-btn {
  padding: 12px 28px;
  border-radius: var(--radius-md);
  background-color: #ffffff10;
  border: 1px solid #ffffff10;
  color: #fff;
}

.light-btn {
  padding: 12px 28px;
  border-radius: var(--radius-md);
  background-color: #ffffff;
  /* border: 1px solid #ffffff10; */
  border: none;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}
.light-btn:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.booking-btn {
  padding: 10px 24px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  color: var(--text-light) !important;
  border: none;
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(63, 31, 113, 0.4);
  filter: brightness(1.1);
}

.view-success-btn {
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--primary-purple) !important;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: var(--primary-purple);
}

.view-success-btn:hover {
  background-color: rgba(63, 31, 113, 0.05);
  border-color: var(--primary-blue) !important;
}

.link-btn {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
}

/* Hero Section */
.hero-section {
  padding: 48px 0 80px;
  overflow: hidden;
  position: relative;
}

.main-heading {
  line-height: 1;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.05em;
  font-weight: 800;
  font-family: var(--font-heading);
}

.main-heading span {
  background: var(--gradient-heading);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-btns a {
  font-size: 16px;
  padding: 16px 32px;
  line-height: 24px;
}
.hero-btns a.hero-btn1 {
  padding: 17px 32px;
}

/* Badges / Small Cards */
.badge-item {
  padding: 4px 10px;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  display: inline-block;
  text-transform: uppercase;
  width: fit-content;
}

.card_one {
  background-color: rgba(63, 31, 113, 0.1);
  color: var(--primary-purple);
}

.card_two {
  background-color: rgba(44, 62, 161, 0.1);
  color: var(--primary-blue);
}

.card_third {
  background-color: #e2e8f0;
  color: var(--text-dark);
}

/* Images & Overlays */
.hero-img {
  width: 100%;
  min-width: 478px;
  /* max-height: 596px; */
  height: auto;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}

.img-overlay-card {
  position: absolute;
  bottom: 32px;
  right: 32px;
  left: 32px;
  background: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.img-overlay-card h4 {
  margin-bottom: 4px;
  font-weight: 700;
}

.img-overlay-card p {
  color: var(--text-muted);
  margin: 0;
}

@keyframes floating {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-10px) translateX(5px);
  }

  100% {
    transform: translateY(0px) translateX(0px);
  }
}

/* Utilities */
.gap-40 {
  gap: 40px;
}

.gap-12 {
  gap: 12px;
}

.gap-14 {
  gap: 14px;
}

.gap-24 {
  gap: 24px;
}

.gap-48 {
  gap: 48px;
}

.gap-32 {
  gap: var(--space-xl);
}
.gap-66 {
  gap: 66px;
}

.mb-32 {
  margin-bottom: var(--space-xl);
}
.mb-12 {
  margin-bottom: 12px;
}

.mb-24 {
  margin-bottom: var(--space-lg);
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-48 {
  margin-bottom: var(--space-2xl);
}
.mb-64 {
  margin-bottom: var(--space-3xl);
}

/* Mobile menu specific styles */
.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2000;
}

.menu-toggle .bar {
  width: 28px;
  height: 3px;
  background-color: var(--primary-purple);
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

/* Keep hamburger as three bars only; close uses .mobile-nav-close in the overlay */
.header:has(#mobileNav.active) .menu-toggle {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease-in-out;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  width: 100%;
  max-width: none;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 16px 28px;
  min-height: min-content;
}

.mobile-nav-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  margin: 0 -16px 8px;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 3;
  flex-shrink: 0;
}

.mobile-nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.mobile-nav-logo-link img {
  width: 150px;
  display: block;
}

.mobile-nav-close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-close:hover {
  background: #ffffff;
  border-color: rgba(63, 31, 113, 0.35);
  box-shadow: 0 2px 12px rgba(63, 31, 113, 0.12);
}

.mobile-nav-close:active {
  transform: scale(0.96);
}

.mobile-nav-close i {
  font-size: 1.15rem;
  line-height: 1;
  display: inline-block;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.mobile-nav-submenu-toggle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.mobile-nav-submenu-toggle:hover {
  border-color: var(--primary-purple);
  background: rgba(63, 31, 113, 0.06);
  color: var(--primary-purple);
}

.mobile-nav-submenu-toggle:active {
  box-shadow: none;
}

.mobile-nav-submenu-toggle i {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.mobile-nav-list > li.submenu-open .mobile-nav-submenu-toggle i {
  transform: rotate(180deg);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.mobile-nav-list > li {
  border-bottom: 1px solid var(--border-soft);
  padding: 2px 0;
}

.mobile-nav-list > li:last-child {
  border-bottom: none;
}

.mobile-nav-list > li > a.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 0;
}

.mobile-nav-row .mobile-nav-link {
  flex: 1;
  min-width: 0;
  padding: 12px 0;
  font-weight: 600;
}

.mobile-nav-link {
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-nav-link i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-nav-link.active i {
  transform: rotate(180deg);
}

.nav-link-custom {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary-purple);
}

/* Dropdown Styles */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 320px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  border: 1px solid var(--border-soft);
  margin-top: 10px;
}

.nav-item-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dropdown-item-custom:hover {
  background-color: var(--bg-gray);
  color: var(--primary-purple);
  padding-left: 32px;
}

.dropdown-item-custom i {
  font-size: 14px;
  width: 20px;
  text-align: center;
  color: var(--primary-blue);
  opacity: 0.7;
}

.mobile-nav-content .booking-btn {
  text-align: center;
}

/* Header Refinement */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 0;
}

.header .company-logo {
  display: flex;
}
.header .company-logo a {
  display: inline-block;
  line-height: 0;
}

.header .company-logo img {
  width: 160px;
  display: block;
  object-fit: contain;
}

.mobile-nav-link:hover {
  color: var(--primary-purple);
}

.mobile-nav-content > .mt-4 {
  margin-top: auto;
  padding-top: 20px;
}

.stats-section {
  padding: 48px 0;
}

.stat-item:not(:last-child) {
  border-right: 1px solid #e2e8f0bf;
}

.stat-item h4 {
  font-weight: 900;
  margin-bottom: 0px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stat-item p {
  font-weight: 600;
  margin-bottom: 0px;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase;
}

/* .tech-delivery-section {
    padding: 96px 32px;
    background-color: #F2F4F6;
} */

.value-section {
  grid-template-columns: 1fr 2fr;
}

.delivery-problem-card {
  padding: var(--space-xl);
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  /* margin-bottom: var(--space-lg); */
}

.problem-item:not(:last-child) {
  margin-bottom: var(--space-lg);
}

.problems-text {
  font-size: 12px;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.problem-item p {
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  text-decoration: line-through;
}

.problem-item h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0px;
}

.solution-card {
  background-color: var(--bg-dark-blue);
  border-radius: var(--radius-xl);
  padding: 54px 40px;
}

.solution-card h3 {
  color: var(--text-light) !important;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.solution-card p {
  color: var(--text-light);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid #ffffff33;
}

.performance-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.performance-metrics h4 {
  font-weight: 900;
}
.performance-metrics p {
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.service-card {
  background-color: #f2f4f6;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
}

.service-card img {
  margin-bottom: var(--space-lg);
  height: 60px;
  width: 60px;
}

.service-card h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.service-card a {
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
}
.service-card a i {
  font-size: 9px;
  transition: 0.3s;
}
.service-card a:hover i {
  transform: translateX(4px);
}

.engineering-success-section .secondry-btn {
  padding: 12px 32px;
  line-height: 1.5em;
}
.sub-text {
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.case-study-details h3 {
  font-weight: 700;
}

.engineering-success-items {
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}

.engineering-success-wrapper {
  background-color: #ffffff05;
  border-radius: 24px;
  border: 1px solid #ffffff10;
}

.stats-card {
  background-color: #ffffff06 !important;
  padding: 24px !important;
  border: 1px solid #ffffff05 !important;
  border-radius: 24px !important;
}
.case-study-details .number-count {
  line-height: 1.2em;
}
.case-study-details .number-label {
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mock-graph {
  background-color: #ffffff03;
  padding: 32px;
  text-align: center;
}

.review-container {
  background-color: #d0e1fb;
  padding: 48px;
  border-radius: 24px;
}
.review-container .review-desc {
  color: #1d2b3e;
}

.user-image {
  border-radius: 50%;
  height: 64px;
  width: 64px;
}
.client-info h5 {
  color: #1d2b3e !important;
  font-weight: 700;
}
.client-info p {
  color: #54647a;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.domain-expertise-card {
  background-color: #fff;
  padding: 30px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.domain-expertise-card img {
  height: 45px;
  width: 45px;
  margin-bottom: 18px;
}
.domain-expertise-card p {
  color: #0b1127;
  line-height: 1.2em;
}

/* clutch reviews section */
.clutch-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.clutch-logo {
  font-size: 24px;
  font-weight: 900;
  color: #e51a4c;
}
.clutch-icon img {
  width: 45px;
}

.circle-number {
  height: 96px;
  width: 96px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 4px solid #eceef0;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 9;
}

.our-engineering-items {
  position: relative;
}

.our-engineering-items::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 150px;
  width: 73%;
  height: 2px;
  background-color: #eceef0;
}

.our-engineering-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.our-engineering-card h2 {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our-engineering-card p {
  color: var(--text-muted);
}

.the-technical-section .section-heading {
  color: var(--text-light) !important;
}

.the-technical-section .description-text {
  color: var(--text-light);
}

.the-technical-card {
  background-color: #ffffff12;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid #ffffff10;
}

.the-technical-card h4 {
  color: var(--text-light) !important;
  margin-bottom: var(--space-md);
}

.the-technical-card p {
  color: var(--text-light);
}

.engineering-insights-card img {
  width: 100%;
  height: 212px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-lg);
}
.engineering-insights-card p {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.faqs-accordion {
  max-width: 896px;
  margin: auto;
}

.faqs-accordion .accordion-item {
  background-color: var(--bg-white);
  padding: var(--space-lg);
  border: none;
  border-radius: var(--radius-xl) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.faqs-accordion .accordion-button {
  box-shadow: none !important;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
}
.faqs-accordion .accordion-button:not(.collapsed) {
  color: #000;
}
.faqs-accordion .accordion-button::after {
  content: "\f068";
  font-family: "Font Awesome 7 Free";
  font-size: 11px;
  background: none;
  width: auto;
  height: auto;
}
.faqs-accordion .accordion-button.collapsed::after {
  content: "\2b";
}
.faqs-accordion .accordion-button:not(.collapsed)::after {
  background: none;
  transform: none;
}
.faqs-accordion .accordion-body {
  padding: 10px 0 0;
}
.faqs-accordion .accordion-body p {
  color: var(--text-muted);
}

.content-wrapper {
  background-color: var(--bg-dark-blue);
  padding: 96px;
  border-radius: var(--radius-2xl);
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}
.contact-col {
  width: calc(50% - 40px);
}
.text-light-fade {
  color: rgba(255, 255, 255, 0.7);
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff1f;
  border-radius: 12px;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
}
.word-break-all {
  word-break: break-all;
}

.form-wrapper {
  border-radius: var(--space-xl);
  background-color: var(--bg-soft);
  padding: 80px;
}
.home-form-wrapper {
  padding: 40px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
}
.form-row .field-group {
  width: calc(50% - 12px);
}

label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #44474c;
  margin-bottom: 8px;
  font-weight: 600;
}

input,
select,
textarea {
  border: none;
  outline: none;
  padding: 16px;
  border-radius: 12px !important;
  background: rgba(243, 243, 243, 0.7);
  font-size: 14px;
  color: #111827;
  line-height: 1.25em !important;
}

input::placeholder,
textarea::placeholder {
  color: #939393;
}
textarea {
  height: 120px;
  resize: none;
}
.form .booking-btn {
  padding-block: 20px;
  border-radius: var(--radius-xl);
  font-size: 16px;
}

/* footer */
.footer {
  padding: 96px 0;
  background-color: #f2f4f6;
}

.footer-wrapper {
  gap: 64px;
  margin-bottom: 44px;
}
.footer-logo img {
  max-width: 160px;
}
.footer-wrapper h5 {
  letter-spacing: 1px;
  color: #0f172a;
}

.service-hero-img-wrapper {
  padding: 16px;
  border-radius: 24px;
  box-shadow: var(--shadow-all);
}

.service-hero-img {
  width: 100%;
  height: 448px;
  border-radius: 12px;
}
.software-rescue-wrapper {
  background-color: var(--bg-dark-blue);
  border-radius: var(--radius-xl) !important;
  overflow: hidden;
}
.software-rescue-wrapper img {
  aspect-ratio: 3 / 1;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  opacity: 40%;
}
.software-rescue-card {
  padding: var(--space-2xl);
}
.software-rescue-card .light-btn:hover {
  color: #fff;
}

.service-domain-card {
  background-color: #fff;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
}
.service-domain-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
}
.service-content-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-all);
}
.service-content-wrapper .form-container {
  padding: 80px;
}
.service-content-wrapper .content {
  background-color: var(--bg-dark-blue);
  padding: 80px;
}
@media (max-width: 991px) {
  .gap-66 {
    gap: 40px;
    flex-direction: column;
  }

  .value-section {
    grid-template-columns: 1fr;
  }

  .header {
    padding: 12px 0;
  }

  .header .company-logo img {
    width: 150px;
  }

  .hero-img {
    max-width: 100%;
    margin: 0 auto;
    min-width: unset !important;
  }

  .img-overlay-card {
    bottom: 20px;
    left: 20px;
    right: 20px;
    animation: none;
  }

  .hero-section {
    padding: 48px 0 60px;
  }

  .engineering-success-items {
    grid-template-columns: 1fr;
  }

  .our-engineering-items::before {
    display: none;
  }

  .content-wrapper {
    padding: 50px;
    border-radius: var(--radius-xl);
  }
  .contact-col {
    width: 100%;
  }

  .footer-wrapper {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .engineering-success-items {
    grid-template-columns: 1fr;
  }
  .form-row .field-group {
    width: 100%;
  }
}

.technical-ecosystem-section h1 {
  font-size: 36px;
}

.technical-ecosystem-wrapper {
  gap: 48px;
}
.technical-ecosystem-section .estimate-standard-card {
  padding: 32px 24px;
  background-color: var(--bg-gray);
  border-radius: var(--radius-xl);
}
.technical-ecosystem-card {
  background-color: #3f1f7121;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  color: #3f1f71;
  font-size: 12px;
  /* gap: 8px; */
}

.service-hero-section {
  position: relative;
  background: #f5f7fb;
  overflow: hidden;
  z-index: 1;
}

/* First angled layer */
.service-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -120px;
  width: 54%;
  height: 100%;
  background: #f2f4f6;
  transform: skewX(-20deg);
  z-index: -10;
}
.service-hero-section .hero-content {
  width: 67%;
}
.service-hero-section .hero-visual {
  width: 33%;
  min-width: 350px;
}
.service-hero-section .hero-content p {
  max-width: 650px;
}
/* Second angled layer */

/************ contact page css ************/
.contact-hero-content {
  max-width: 670px;
}

.grid-2fr-1fr {
  grid-template-columns: 2fr 1fr;
}

@media (max-width: 991px) {
  .grid-2fr-1fr {
    grid-template-columns: 1fr;
  }
}

.contact-tab-section {
  padding: var(--space-2xl);
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: 0px 2px 0px #0000000d;
}

.contact-tab-card {
  padding: var(--space-lg);
  background-color: #3f1f710d;
  border-radius: 16px;
}
.contact-tab-card h4 {
  font-family: var(--font-body);
}
.contact-tab-light-card h4,
.contact-tab-dark-card h4 {
  line-height: 24px;
  margin-bottom: 4px;
}

.contact-tab-light {
  background-color: #3f1f710d;
}

.contact-tab-dark {
  background-color: #040f20 !important;
}
.contact-tab-card .icon {
  height: 40px;
  width: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.icon-bg-light {
  background-color: var(--bg-white);
}
.icon-bg-light-fade {
  background-color: #ffffff1a;
  /* opacity: 0.1; */
}
.tab-footer-btns {
  padding-top: var(--space-xl);
  border-top: 1px solid #c5c6cd26;
}
.back-step-btn,
.next-step-btn {
  padding: 16px 40px;
  line-height: 20px;
}
.detail-card {
  background-color: #3f1f710d;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}
.ls-2 {
  letter-spacing: 1.2px;
}
.detail-card img {
  height: 40px;
  width: 40px;
  border-radius: var(--radius-full);
}
.contact-card {
  background-color: var(--bg-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
}
.contact-card_card {
  background-color: #3f1f710d;
  padding: 20px 22px;
  border-radius: 16px;
}
/* .contact-img-container {
  max-height: 600px;
} */
.contact-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.contact-card img {
  border-radius: var(--radius-full);
}
.image-wrapper > *:not(:first-child) {
  margin-left: -10px;
}
.image-wrapper img {
  border: 4px solid var(--bg-white);
}
.contact-img-container .text-wrapper {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 9;
}
.counter-wrapper {
  display: flex;
}

.counter {
  width: 48px;
  height: 6px;
  background-color: #3f1f71;
  border-radius: var(--radius-full);
}
.deactive {
  background-color: #e6e8ea;
}

/*********** Services 2 css *************/
.services_2_hero {
  background-image: url("Images/services_2_hero_img.webp");
  background-size: cover;
  background-position: center;
  padding: 122px 0;
  position: relative;
  z-index: 1;
}
.services_2_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--bg-gray);
  opacity: 0.9;
  z-index: -1;
}
.services_2_hero .hero-content {
  max-width: 672px;
}

.services_2_hero .hero-content .badge-item {
  line-height: 1em;
}
.services_2_hero .hero-content .main-heading {
  font-size: 96px;
}

/* services section */
.services_2_section .service-card {
  border-radius: 12px;
  position: relative;
}
.services_2_section .service-card.service-card-lg {
  grid-column: span 2;
}
.services_2_section .service-card.service-card-dark {
  background-color: var(--bg-dark-blue);
  overflow: hidden;
}
.services_2_section .service-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.services_2_section .service-card .service-card-content img {
  filter: brightness(0) invert(1);
}
.services_2_section .service-card h3 {
  margin-bottom: 12px;
}
.services_2_section .service-card .service-card-content p {
  color: var(--text-blue-gray);
}

.services_2_section .service-card.service-card-dark .service-card-content {
  max-width: 500px;
}
.services_2_section .service-card.service-card-dark .service-card-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 33%;
  max-width: 240px;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  margin-bottom: 0;
}

/*engineering lifecycle section */
.desc-text-right {
  max-width: 390px;
}
.services_2_enlifecycle .our-engineering-card {
  align-items: flex-start;
}
.services_2_enlifecycle .circle-number {
  width: 80px;
  height: 80px;
  border: none;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

/* mastery section */
.mastery-row {
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.mastery-field {
  padding-block: 12px;
}
.mastery-img img {
  aspect-ratio: 1/1;
  border-radius: 16px;
}

/* technical ecosystem section */
.services_2_technical-section p.description-text {
  color: var(--text-blue-gray);
}
.services_2_technical-section .the-technical-card h4 {
  color: #d4e4fa !important;
}
.services_2_technical-section .the-technical-card p {
  color: var(--text-blue-gray);
}

/* contact section */
.service-contact-section .form .booking-btn {
  font-size: 18px;
  border-radius: var(--radius-md);
  line-height: 28px;
}

/********** Service page 3 css ************/
.services_3_hero .badge-item {
  padding-inline: 16px;
  line-height: 16px;
}
.services_3_hero .service-hero-img {
  aspect-ratio: 2 / 2.1;
  border-radius: 32px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  height: auto;
}
.services_3_hero .hero-btns button {
  border-radius: var(--radius-xl);
  font-size: 18px;
  line-height: 26px;
  border: none;
}
.services_3_hero .hero-btns button.hero-btn1 {
  padding: 16px 32px;
}
.services_3_hero .hero-btns button.hero-btn2 {
  background-color: rgba(63, 31, 113, 0.1);
  border: none !important;
  font-weight: 700;
}

/* services section */
.services_3_section .service-card {
  border-radius: var(--radius-xl);
}
.services_3_section .service-card a {
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.5em;
}
.services_3_section .service-card.service-card-dark {
  padding: 90px 48px;
}
.services_3_section .service-card.service-card-dark .service-card-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.services_3_section .service-card.service-card-dark .service-card-img {
  max-width: 450px;
  opacity: 0.5;
}
.services_3_section .service-card.service-card-dark img {
  margin-bottom: 28px;
}
.services_3_section .service-card.service-card-dark p {
  margin-bottom: 32px;
  color: #fff;
}
.services_3_section .service-card.service-card-dark .view-success-btn {
  border: none !important;
  padding: 12px 24px;
}

/* our engineering section */
.services_3_engineering_items .engineering_item {
  padding: 32px;
  border-radius: var(--radius-xl);
  border-top: 4px solid var(--primary-blue);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.services_3_engineering_items .engineering_item .item-number-circle {
  background-color: var(--primary-blue);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services_3_engineering_items .engineering_item ul {
  line-height: 1.43em;
}
.services_3_engineering_items .engineering_item ul li::marker {
  color: var(--primary-blue);
}

/* domain expertise section */
.domain-expertise {
  background-color: var(--bg-dark-blue2);
}
.domain-expertise-item .de-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* technical ecosystem section */
.technical-ecosystem-item h4 {
  border-bottom: 1px solid #e6e8ea;
  letter-spacing: -0.8px;
}
.technical-ecosystem-item ul li {
  line-height: 1.5em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.technical-ecosystem-item ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #3b82f6;
  border-radius: 50%;
}
.technical-ecosystem-item ul li.red-dot::before {
  background-color: #ef4444;
}
.technical-ecosystem-item ul li.blue-dot::before {
  background-color: #2563eb;
}
.technical-ecosystem-item ul li.sky-blue-dot::before {
  background-color: #38bdf8;
}
.technical-ecosystem-item ul li.green-dot::before {
  background-color: #22c55e;
}
.technical-ecosystem-item ul li.yellow-dot::before {
  background-color: #eab308;
}
.technical-ecosystem-item ul li.purple-dot::before {
  background-color: #a855f7;
}
.technical-ecosystem-item ul li.orange-dot::before {
  background-color: #f97316;
}
.technical-ecosystem-item ul li.orange-yellow-dot::before {
  background-color: #fb923c;
}
.technical-ecosystem-item ul li.blue-purple-dot::before {
  background-color: #6366f1;
}
.technical-ecosystem-item ul li.purple-dot::before {
  background-color: #9333ea;
}
.technical-ecosystem-item ul li.fade-green-dot::before {
  background-color: #14b8a6;
}
.technical-ecosystem-item ul li.bright-red-dot::before {
  background-color: #dc2626;
}
.technical-ecosystem-item ul li.dark-blue-dot::before {
  background-color: #1d4ed8;
}
.technical-ecosystem-item ul li.dark-green-dot::before {
  background-color: #16a34a;
}
.technical-ecosystem-item ul li.fade-blue-dot::before {
  background-color: #06b6d4;
}
.technical-ecosystem-item ul li.light-blue-dot::before {
  background-color: #60a5fa;
}
.technical-ecosystem-item ul li.light-purple-dot::before {
  background-color: #818cf8;
}

/* service 3 contact section */
.services_3_contact_wrapper {
  gap: 80px;
}
.services_3_contact_section .form-wrapper {
  background-color: var(--bg-white);
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 40px;
}
.services_3_contact_section .services_3_contact_wrapper h4 {
  font-family: var(--font-body);
  line-height: 1.5em;
}
.services_3_contact_section .book-audit {
  padding-block: 16px;
  line-height: 1.5em;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.services_3_contact_section .form .booking-btn {
  border-radius: var(--radius-md);
  padding-block: 18px;
}

/************* Service page 4 css *****************/
.services_2_hero.digital-strategy-hero {
  background-image: url("Images/digital-consulting-bg.webp");
}
.services_2_hero.digital-analytics-hero {
  background-image: url("Images/digital-analytics-bg.webp");
}
.services_2_hero.cloud-solutions-hero {
  background-image: url("Images/cloud-solutions-bg2.webp");
}
.services_2_hero.product-engineering-hero {
  background-image: url("Images/product-engineering-bg.webp");
}
.services_2_hero.generative-ai-hero {
  background-image: url("Images/gen-ai-bg2.webp");
}
.services_2_hero.mobile-apps-hero {
  background-image: url("Images/mobile-apps-img.webp");
}
.services_2_hero.digital-marketing-hero {
  background-image: url("Images/digital-marketing-bg.webp");
}
.services_2_hero.qa-testing-hero {
  background-image: url("Images/qa-testing-bg.webp");
}
.services_2_hero.startup-consulting-hero {
  background-image: url("Images/startup-consulting-bg.webp");
}
.services_2_hero.bespoke-design-hero {
  background-image: url("Images/bespoke-design-bg.webp");
}

.services_4_hero.services_2_hero .hero-content {
  max-width: 730px;
  width: 50%;
  padding-right: 20px;
}
.services_4_hero.services_2_hero::before {
  background: linear-gradient(
    270deg,
    rgba(242, 244, 246, 0.0) 50%,
    rgba(242, 244, 246, 1) 50%
  );
  opacity: 1;
}
.services_4_hero .main-description {
  max-width: 622px;
}

.services_4_section .service-4-card {
  box-shadow: 0 24px 48px 0 #191c1e0f;
  border-radius: 24px;
  padding: 40px;
}
.service-4-card-content {
  background-image: url(Images/Section-4-network.png);
}
.service-4-card-content-last {
  background-color: #f2f4f6;
  border-radius: 12px;
  border: 1px solid #c5c6cd33;
  min-width: 192px;
}
.service-4-card-content-last p {
  color: #44474c;
}

.service-4-card-content-upper p {
  color: #44474c !important;
}
.services_4_enlifecycle .circle-4-number-active {
  background: linear-gradient(#3f1f71, #283d8d);
  border-radius: 24px;
  height: 64px;
  width: 64px;
}
.services_4_enlifecycle .circle-4-number {
  border-radius: 24px;
  height: 64px;
  width: 64px;
  background-color: #3f1f7121;
}
.services_4_enlifecycle .our-engineering-items::before {
  top: 31px;
}

.domain-expertise-section-4 .section-para {
  color: #44474c;
}

.techeco-services4-section .technical-ecosystem-item ul li::before {
  background-color: #000;
}
.techeco-services4-section .technical-ecosystem-item h4 {
  color: var(--text-muted) !important;
  letter-spacing: 1.2px;
  border: none;
  padding-bottom: 0px !important;
}
.service_4_contact-section .content-wrapper {
  padding: 0;
  gap: 64px;
}

.service_4_contact {
  padding: 40px;
}
.service_4_contact-section .service_4_contact button {
  border-radius: 12px;
}

/************* portfolio page *************/
.Portfolio-hero-card {
  padding: 16px;
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tab-badge-active {
  padding: 8px 24px;
  background: var(--primary-gradient);
  color: #fff;
  line-height: 20px;
  border-radius: var(--radius-full);
}
.tab-badge-default {
  padding: 8px 24px;
  background-color: #3f1f7114;
  color: #3f1f71b2;
  line-height: 20px;
  border-radius: var(--radius-full);
}
.background-box {
  background-image: url("Images/bg-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding: 40px;
}
.background-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: -1;
}
.portfolio-card img {
  border-radius: 0px;
  margin-bottom: 26px;
}
.portfolio-card_card {
  background-color: #f7f9fb1a;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
}
.tech-stack-card {
  border: 1px solid #ffffff33;
  padding: 4px 8px;
  border-radius: 4px;
}
.get-study-card {
  background-color: #000;
  line-height: 16px;
  border-radius: var(--radius-full);
  padding: 4px 12px;
  display: inline-block;
}

.coustm_card {
  background-color: var(--bg-white);
  color: #000;
  padding: 4px 12px;
  border-radius: 8px;
}
.coustm-btn {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-1fr-2fr {
  grid-template-columns: 1fr 2fr;
}
.telehealth-scalability_card {
  padding: 32px;
  border-left: 4px solid #283d8d;
  border-radius: 24px;
  background-color: #fff;
}
.img-content-card {
  border-radius: 24px;
  overflow: hidden;
}
.p-32 {
  padding: 32px;
}
.plus_icon {
  height: 48px;
  width: 48px;
  background-color: #3f1f7121;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.plus_icon i {
  color: #3f1f71 !important;
}

.read-case-btn {
  color: #3f1f71;
  border: 1px solid #3f1f71;
  background-color: #fff;
  padding: 8px;
  border-radius: 8px;
  font-weight: 700;
  width: 100%;
}
.item-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.item-list i {
  color: #3f1f71;
  font-size: 15px;
}
.grid-1fr-1fr-2fr {
  grid-template-columns: 1fr 1fr 2fr;
}

.portfolio-img-container img {
  height: 300px;
  width: 100%;
  border-radius: 24px;
  opacity: 80%;
  object-fit: cover;
  background-color: #0f172a;
}
.portfolio-img-container .text-wrapper {
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: 420px;
  color: #fff;
}

/* Premium Portfolio Section */
.portfolio-grid-section {
  position: relative;
  z-index: 1;
}

.portfolio-grid-section .portfolio-nav {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
@media (min-width: 576px) {
  .portfolio-grid-section .portfolio-nav {
    border-radius: 100px;
    width: fit-content !important;
  }
}

.portfolio-grid-section .portfolio-nav .nav-link {
  border: none;
  background: transparent;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  color: var(--text-muted);
  transition: all 0.4s ease;
  letter-spacing: 0.3px;
  width: 100%;
}
.portfolio-grid-section .portfolio-nav .nav-link.active {
  background: var(--primary-gradient) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(63, 31, 113, 0.25);
}
.portfolio-grid-section .portfolio-nav .nav-link:hover:not(.active) {
  color: var(--primary-purple);
  background: rgba(63, 31, 113, 0.05);
}

.portfolio-grid-section .portfolio-item-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 12px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: all 0.6s ease;
  cursor: pointer;
}
.portfolio-grid-section .portfolio-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border-color: rgba(63, 31, 113, 0.2);
}

.portfolio-grid-section .portfolio-img-container {
  border-radius: 18px;
  aspect-ratio: 16/11;
  margin-bottom: 20px;
  overflow: hidden;
  background: #f8f9fa;
  display: grid;
}
.portfolio-grid-section .portfolio-img-container img {
  grid-area: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}
.portfolio-grid-section .portfolio-img-container .hover-img {
  opacity: 0;
}
.portfolio-grid-section .portfolio-item-card:hover .main-img {
  opacity: 0;
}
.portfolio-grid-section .portfolio-item-card:hover .hover-img {
  opacity: 1;
  transform: scale(1.05);
}

.portfolio-grid-section .portfolio-card-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
  text-align: center;
}
.portfolio-grid-section .bottom-text-heading {
  line-height: 1.3;
}

.portfolio-contact-container {
  background-color: #f2f4f6;
  padding: 64px;
  border-radius: 24px;
}
.portfolio-content-wrapper {
  max-width: 720px;
  margin: 0 auto;
}
.portfolio-contact-container .booking-btn,
.portfolio-contact-container .light-btn {
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  height: 58px;
}

.portfolio-contact-container .light-btn {
  border: 1px solid var(--primary-purple);
}
.portfolio-contact-container .light-btn:hover {
  background-color: rgba(63, 31, 113, 0.05);
}

.portfolio-contact-container.bg-primary-gradient .light-btn {
  border: 1px solid #ffffff40;
}

/************ team page css *************/
.team-hero-img {
  aspect-ratio: 2 / 1.74;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.team-hero-img img {
  width: 100%;
  height: 100%;
}
.team-hero-card {
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  position: absolute;
  bottom: 32px;
  left: 32px;
  max-width: 285px;
}
.team-hero-card span {
  line-height: 1.12em;
}

/* team section */
.team-section .description-text {
  margin: 0;
}
.team-member-item {
  border-radius: var(--radius-xl);
}
.team-member-item .team-member-info {
  padding: 0 24px 32px;
}
.team-member-item .team-member-info span {
  margin-bottom: 14px;
}

/* living portal section */
/* .living-portal-section {
  padding: 128px 0;
} */
.living-portal-col {
  border-radius: 32px;
  min-height: 500px;
  overflow: hidden;
}
.living-portal-col .collaboration-bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.1;
}
.collaboration-team-imgs img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #3f1f71;
}
.collaboration-team-imgs img:not(:first-child) {
  margin-left: -8px;
}
.collaboration-team-imgs .more-member-count {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gradient);
  margin-left: -8px;
}
.reliability-col {
  border: 1px solid rgba(197, 198, 205, 0.1);
  border-radius: 32px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}
.reliability-col .reliability-count {
  line-height: 1.2em;
}
.philosophy-col {
  background-color: var(--bg-dark-blue);
  border-radius: 32px;
}
.tooling-col {
  background-color: var(--bg-gray);
  border-radius: 32px;
  grid-column: span 2;
}
.tooling-detail-col {
  width: 100%;
  max-width: 300px;
}
.tooling-options-col .tooling-option {
  background-color: var(--primary-purple);
  padding: 8px 16px;
  border-radius: 40px;
  line-height: 16px;
}

/* behind screen section */
/* .behind-screen-section {
  padding-bottom: 128px;
} */
.behind-screen-wrapper {
  background-color: var(--bg-dark-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.behind-screen-col p {
  color: #eff1f3b2;
}

.behind-code-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-family: "Fira Mono", monospace;
  line-height: 1.43em;
  word-break: break-all;
}
.behind-code-box .code-ln {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}
.behind-code-box .kw {
  color: #54647a;
}
.behind-code-box .fn {
  color: #b7c8e1;
}
.behind-code-box .cm {
  color: rgba(255, 255, 255, 0.5);
}

/* global reach section */
.global-reach-section {
  padding-bottom: 96px;
}
.global-map {
  background-color: var(--bg-gray);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.global-map img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
  opacity: 0.4;
}
.global-map .location-pill {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.global-map .location-pill.london-pill {
  top: 25%;
  left: 18%;
}
.global-map .location-pill.austin-pill {
  bottom: 28%;
  left: 26%;
}
.global-map .location-pill.singapore-pill {
  top: 33%;
  right: 25%;
}
.global-map .location-pill .locatiion-dot {
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 50%;
}
.global-map .location-pill p {
  line-height: 16px;
}
.active-box {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  bottom: 48px;
  right: 48px;
  max-width: 320px;
  border-radius: 16px;
}

/************ insights page css ******************/
.insight_2_content_wrapper {
  padding: 80px;
  /* margin-top: 80px; */
  background-color: var(--bg-dark-blue);
  border-radius: 24px;
}
.feature-insights {
  border-radius: 12px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
.feature-insights-content {
  background-color: var(--bg-white);
  padding: 40px;
}
.feature-insights-card {
  padding: var(--space-xl);
  border-radius: 12px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
.feature-insights-card img {
  border-radius: var(--radius-full);
}
.feature-insights-content a {
  color: var(--text-dark);
}
.feature-insights-content a:hover {
  color: var(--primary-purple);
}
.insight_2_card {
  padding: 32px;
  background-color: #ffffff0d;
  border: 1px solid #ffffff0d;
  border-radius: 16px;
}
.gap-64 {
  gap: 64px;
}
.text-blue-gray {
  color: var(--text-blue-gray);
}
.pdf-icon {
  width: 48px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 6px;
}
.semantic_insights_card {
  padding: 32px;
  background-color: #3f1f710d;
  border-bottom: 4px solid #3f1f71;
  border-radius: 16px;
}
.semantic_insights_code-card {
  background-color: #fff;
  padding: 16px;
  border-radius: 12px;
}
.insight_card-icon {
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
}
.insight-footer-section {
  background-color: #f2f4f6;
  padding: 64px;
  border-radius: 32px;
}
.insight_input {
  background-color: #fff;
}
.insight_btn {
  padding: 16px 32px;
}

/* responsive css */
@media screen and (max-width: 1200px) {
  .services_2_hero .hero-content .main-heading {
    font-size: 70px;
  }
}

@media screen and (max-width: 991px) {
  /* homepage */
  .fs-72 {
    font-size: 60px;
  }
  .bg-light,
  .bg-gray,
  .bg-soft-gray,
  .bg-dark-blue {
    padding: 70px 0;
  }

  /* service page */
  .service-hero-section .hero-content,
  .service-hero-section .hero-visual {
    width: 100%;
  }
  .services_2_hero {
    padding: 70px 0;
  }
  .services_2_hero .hero-content .main-heading {
    font-size: 60px;
  }
  .services_2_section .service-card.service-card-lg {
    grid-column: span 1;
  }
  .mastery-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-content-wrapper .content {
    padding: 40px;
  }
  .form-wrapper {
    padding: 40px;
  }

  /* contact page */
  .contact-col h2.fs-48 {
    font-size: 36px;
  }

  .grid-1fr-2fr {
    grid-template-columns: 1fr;
  }

  /* services 3 service section */
  .services_2_section .service-card.service-card-dark .service-card-img {
    opacity: 0.2;
    width: 40%;
  }

  /* services 3 contact section */
  .services_3_contact_wrapper {
    gap: 40px;
  }

  /* team page */
  .living-portal-section {
    padding: 70px 0;
  }
  .behind-screen-section {
    padding-bottom: 70px;
  }
  .behind-screen-img img {
    max-height: 500px;
  }
  .global-reach-section {
    padding-bottom: 70px;
  }

  /* insights page */
  .insight_2_content_wrapper {
    padding: 48px;
  }
}

@media screen and (max-width: 767px) {
  /* homepage */
  .fs-72 {
    font-size: 44px;
  }
  .fs-36 {
    font-size: 30px;
  }
  .mb-64 {
    margin-bottom: var(--space-2xl);
  }

  .review-container {
    padding: 32px;
  }
  .review-container .review-desc {
    font-size: 18px !important;
  }
  .home-form-wrapper {
    padding: 24px;
    border-radius: var(--radius-lg);
  }

  /* service page */
  .services_2_hero .hero-content .main-heading {
    font-size: 44px;
  }
  .service-contact-desc {
    font-size: 16px;
  }
  .software-rescue-card {
    padding: 32px;
  }
  .services_4_hero.services_2_hero .hero-content {
    width: 100%;
    padding-right: 0;
  }
   .services_4_hero.services_2_hero::before {
    background: var(--bg-gray);
  }

  /* contact page */
  .content-wrapper {
    padding: 30px;
    gap: 40px;
  }
  .contact-col h2.fs-48 {
    font-size: 30px;
  }

  .grid-1fr-1fr-2fr {
    grid-template-columns: 1fr;
  }

  /* services 3 service section */
  .services_3_section .service-card h3 {
    font-size: 20px;
  }
  .services_3_section .service-card.service-card-dark p {
    font-size: 16px;
  }
  .services_3_section .service-card.service-card-dark {
    padding: 60px 32px;
  }

  /* team page css */
  .living-portal-col {
    min-height: 400px;
  }

  /* global map section */
  .global-map .location-pill {
    transform: scale(0.8);
  }
  .global-map .location-pill.london-pill {
    top: 15%;
    left: 8%;
  }
  .global-map .location-pill.austin-pill {
    bottom: 40%;
    left: 15%;
  }
  .global-map .location-pill.singapore-pill {
    top: 25%;
    right: 6%;
  }

  .active-box {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  /* insight page */
  .feature-insights-content {
    padding: 32px;
  }
  .insight_2_content_wrapper {
    padding: 32px;
  }
  .insight-footer-section {
    padding: 32px;
  }

  /* contact page */
  .contact-tab-section {
    padding: var(--space-xl);
  }
  .contact-tab-section h2 {
    font-size: 24px;
  }

  /* portfolio page */
  .portfolio-contact-container {
    padding: 40px;
  }

  /* services 4 contact section */
  .service_4_contact-section .content-wrapper {
    gap: 32px;
  }
}

@media screen and (max-width: 575px) {
  /* homepage */
  .stat-items {
    gap: 24px;
  }
  .stat-item:not(:last-child) {
    border-right: none;
  }

  /* service page */
  .service-contact-section .form .booking-btn {
    font-size: 14px;
    padding: 12px;
  }

  /* services 3 contact section */
  .services_3_contact_wrapper .form-wrapper {
    margin-top: 40px;
  }

  /* team page */
  .team-hero-card {
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
  }
  .tooling-col {
    grid-column: span 1;
  }
  .behind-screen-col {
    padding: 32px;
  }
}

/* Mobile Sub-menu Styles */
.mobile-sub-menu {
  display: none;
  padding: 8px 12px 14px 12px;
  margin: 0 0 6px 0;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--primary-purple);
}

.mobile-sub-menu.active {
  display: block;
}

.mobile-sub-link {
  display: block;
  padding: 10px 12px;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: var(--radius-sm);
}

.mobile-sub-link:hover {
  color: var(--primary-purple);
  background: rgba(255, 255, 255, 0.85);
}

.mobile-sub-link.active {
  color: var(--primary-purple);
  font-weight: 600;
}

/********** About us page style ************/
.about-hero-section {
  padding: 100px 0;
  background-color: var(--bg-soft);
  background-image: url("Images/services_2_hero_img.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.about-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--bg-gray);
  opacity: 0.9;
  z-index: -1;
}
.expertise-card-custom {
  background-color: var(--bg-white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  transition: all 0.25s;
  text-align: center;
  height: 100%;
}
.expertise-card-custom:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 24px rgba(67, 97, 238, 0.1);
  transform: translateY(-3px);
}
.expertise-card-custom i {
  font-size: 40px;
  margin-bottom: 24px;
  display: inline-block;
}
.overlapping-img-container {
  position: relative;
  padding-bottom: 50px;
}
.img-back {
  width: 85%;
  border-radius: var(--radius-lg);
}
.img-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 8px solid white;
}
.floating-quote-card {
  background: var(--bg-dark-blue2);
  color: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 2;
}
.verified-badge-custom {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 40px;
  left: -30px;
  z-index: 3;
}
.verified-badge-custom i {
  color: var(--primary-purple);
  font-size: 20px;
}
@media (max-width: 991px) {
  .floating-quote-card {
    position: static;
    transform: none;
    margin-top: 32px;
    max-width: 100%;
  }
  .verified-badge-custom {
    left: -10px;
    bottom: -20px;
  }
}
@media (max-width: 767px) {
  .floating-quote-card {
    padding: 32px;
  }
}
.list-check-custom {
  list-style: none;
  padding-left: 0;
}
.list-check-custom li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-weight: 500;
}
.list-check-custom li::before {
  content: "\f058";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-purple);
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}

/********** About vanced page style ************/
.about-vanced-img-wrapper img {
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease;
}
.about-vanced-img-wrapper img:hover {
  transform: scale(1.02);
}
.img-backdrop {
  background: var(--primary-gradient);
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  opacity: 0.4;
}
/* mission and vision section */
.vanced-card-box {
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}
.vanced-card-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.vanced-card-box .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bg-soft);
}
.vanced-card-box.bg-dark-blue2 {
  background-color: var(--bg-dark-blue2);
}
.vanced-card-box.bg-dark-blue2 .icon-box {
  background-color: rgba(255, 255, 255, 0.1);
}

/* values section */
.val-card {
  background-color: var(--bg-white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  transition: all 0.25s;
}
.val-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 24px rgba(67, 97, 238, 0.1);
  transform: translateY(-3px);
}
.val-icon img {
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 575px) {
  .vanced-card-box {
    padding: 32px;
  }
}

/* --- Service Page New Sections (Restored) --- */

/* Process Section */
.process-item {
  position: relative;
  padding-left: 60px;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(63, 31, 113, 0.3);
}

.process-item::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: -24px;
  width: 2px;
  background: var(--border-soft);
}

.process-item:last-child::after {
  display: none;
}
.service-overlay-card {
  bottom: -30px; 
  right: -10px; 
  left: auto; 
  width: 250px
}

/* Benefits Section */
.benefit-card {
  transition: all 0.3s ease;
  border: 1px solid var(--border-soft);
  background-color: var(--bg-soft);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-purple);
  box-shadow: var(--shadow-md);
}


.user-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-soft);
}

.client-info h5 {
  font-weight: 700;
  color: var(--text-dark);
}

.client-info p {
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 767px) {
  .process-item {
    margin-bottom: 40px;
  }
  .contact-section h2.fs-48 {
    font-size: 30px;
  }
  .contact-section p.fs-20 {
    font-size: 16px;
  }
}

/*********** Life @ Vanced style *************/
.value-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(13, 110, 253, 0.2);
}
.value-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  font-size: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.item-1 {
  grid-column: span 8;
  height: 450px;
}
.item-2 {
  grid-column: span 4;
  height: 450px;
}
.item-3 {
  grid-column: span 4;
  height: 350px;
}
.item-4 {
  grid-column: span 4;
  height: 350px;
}
.item-5 {
  grid-column: span 4;
  height: 350px;
}
@media (max-width: 991px) {
  .item-1 {
    grid-column: span 6;
    height: 350px;
  }
  .item-2 {
    grid-column: span 6;
    height: 350px;
  }
  .item-3,
  .item-4,
  .item-5 {
    grid-column: span 6;
  }
}
@media (max-width: 767px) {
  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5 {
    grid-column: span 12;
    height: 300px;
  }
}

/* Culture Highlights Section */
.culture-badge {
  background: rgba(63, 31, 113, 0.08);
  color: var(--primary-purple);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 24px;
  border: 1px solid rgba(63, 31, 113, 0.15);
}

.culture-card {
  border: 1px solid var(--border-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.culture-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-purple);
  box-shadow: 0 20px 40px rgba(63, 31, 113, 0.1);
}

.culture-icon {
  width: 56px;
  height: 56px;
  background: rgba(63, 31, 113, 0.05);
  color: var(--primary-purple);
  transition: all 0.3s ease;
}

.culture-card:hover .culture-icon {
  background: var(--primary-purple);
  color: #fff;
  transform: scale(1.1);
}

.culture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.culture-tag {
  padding: 6px 14px;
  background: var(--bg-gray);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.culture-card:hover .culture-tag {
  background: rgba(63, 31, 113, 0.08);
  color: var(--primary-purple);
}

@media (max-width: 991px) {
  .culture-highlights-section .section-heading {
    font-size: 36px;
  }
}

.life-vanced-cta .light-btn {
  background: transparent;
  color: #fff;
}

/************* Testimonials Page Styles *************/
.testimonial-card {
  border-color: var(--border-soft) !important;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md) !important;
  border-color: var(--primary-purple) !important;
}

.testimonial-quote-icon {
  color: var(--primary-purple);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-client-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 2px solid var(--primary-purple);
}

.featured-testimonial-bg {
  padding-top: 120px;
  padding-bottom: 120px;
}

.featured-testimonial-circle {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.featured-quote-text {
  font-family: var(--font-heading);
}

.featured-client-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.max-w-900 {
  max-width: 900px;
}
.max-w-600 {
  max-width: 600px;
}

.logo-cloud-section {
  padding: 70px 0;
}
.logo-item {
  opacity: 0.5;
  transition: all 0.3s ease;
  max-width: 140px;
  height: 25px;
}
.logo-item:hover {
  opacity: 1;
}

.light-btn1:hover {
  color: #fff;
}
.light-btn2 {
  background: transparent;
  color: #fff;
}

@media (max-width: 767px) {
  .featured-testimonial-bg {
    padding: 100px 0;
  }
  .featured-quote-text {
    font-size: 24px;
  }
}

.transition-hover {
  transition: all 0.3s ease;
}

.transition-hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md) !important;
}

.border-soft {
  border-color: var(--border-soft) !important;
}

/********* Policy pages **********/
.policy-hero-section {
  padding: 100px 0;
  background-color: var(--bg-soft);
  background-image: url("Images/service-hero-img.png");
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.policy-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--bg-gray);
  opacity: 0.9;
  z-index: -1;
}


/* Resources & Blog specific styles */
.resources-card {
  background-color: var(--bg-soft);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}
.resources-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-purple) !important;
}

.w-fit-content {
  width: fit-content;
}
.text-light-fade {
  color: rgba(255, 255, 255, 0.7);
}

.case-study-wrapper {
  background: var(--bg-dark-blue2);
}
.case-study-wrapper .light-btn:hover {
  color: #fff;
}

/********* Blog detail pages **********/
.blog-detail-hero {
  padding-top: 72px;
  padding-bottom: 56px;
}

.blog-detail-hero .main-heading.fs-48 {
  line-height: 1.08;
}

.blog-back-link {
  font-family: var(--font-body, inherit);
}

.blog-meta-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.blog-detail-body-section {
  padding: 80px 0 96px;
}

.blog-article {
  font-family: var(--font-body);
}

.blog-article .fs-30 {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

.blog-article p,
.blog-article li {
  line-height: 1.7;
}

.blog-article-list {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.blog-article-list li::marker {
  color: var(--primary-purple);
}

.blog-article-quote {
  margin-bottom: 24px;
  padding: 24px 28px;
  border-left: 4px solid var(--primary-purple);
  background: var(--bg-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text-dark);
}

.blog-detail-featured img {
  object-fit: cover;
}

@media (max-width: 767px) {
  .blog-detail-hero .main-heading.fs-48 {
    font-size: 32px !important;
  }

  .blog-detail-body-section {
    padding: 56px 0 72px;
  }
}

/********** blog dynamic styles *************/
.blog-card-media img {
  transition: 0.3s;
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-detail-container {
  max-width: 920px !important;
}

.blog-detail-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.blog-detail-content p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.blog-admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.blog-admin-panel {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.blog-admin-panel .field-group {
  margin-bottom: 18px;
}

.blog-admin-panel input,
.blog-admin-panel textarea {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text-dark);
  background: var(--bg-soft);
}

.blog-admin-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.blog-admin-panel .blog-content-input {
  min-height: 220px;
}

.admin-post-list {
  display: grid;
  gap: 14px;
}

.admin-post-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--bg-soft);
}

.admin-edit-btn,
.admin-delete-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-status {
  min-height: 22px;
}

.admin-status[data-type="success"] {
  color: #16803c;
}

.admin-status[data-type="warning"] {
  color: #976500;
}

.admin-status[data-type="danger"] {
  color: #b42318;
}

@media (max-width: 991px) {
  .blog-admin-layout {
    grid-template-columns: 1fr;
  }
}