/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */

/* @import url("https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:opsz@12..24&display=swap"); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Colors - Symake Brand (Global/Salesforce) */
  --primary-color: #4400fe;
  --primary-dark: #2f00c7;
  --primary-light: #a794ff;

  /* Secondary Colors */
  --secondary-color: #6b66ff;
  --tertiary-color: #a794ff;
  --salesforce-color: #4400fe;

  /* Odoo Colors */
  --odoo-color: #714b67;
  --odoo-secondary: #8a5c82;
  --odoo-tertiary: #c9b2c4;

  /* Neutral Colors */
  --text-dark: #0d0b21;
  --text-medium: #4b5563;
  --text-light: #6b7280;
  --bg-light: #f5f4ff;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;

  /* Accent Colors */
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  /* --font-heading: "Hedvig Letters Serif", serif; */

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows - Enhanced Premium Look */
  --shadow-sm: 0 1px 3px 0 rgba(68, 0, 254, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(68, 0, 254, 0.12);
  --shadow-lg: 0 10px 15px -3px rgba(68, 0, 254, 0.15);
  --shadow-xl: 0 20px 25px -5px rgba(68, 0, 254, 0.18);
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-white);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

.title {
  /* font-family: var(--font-heading); */
  font-weight: 800 !important;
  font-size: 3em !important;
  letter-spacing: 1.5px;
}

@media (max-width: 1024px) {
  .title {
    font-size: 2.4em !important;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 2em !important;
  }
}

@media (max-width: 576px) {
  .title {
    font-size: 30px !important;
  }
}

.titleDesc {
  font-size: 16px !important;
  font-weight: 300 !important;
}

@media (max-width: 1024px) {
  .titleDesc {
    font-size: 15px !important;
  }
}

@media (max-width: 768px) {
  .titleDesc {
    font-size: 14px !important;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .titleDesc {
    font-size: 18.5px !important;
    line-height: 1.6;
  }
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
/* NAVBAR */
.navbar {
  background: var(--bg-white);
  box-shadow: 0 0 10px #00000012 !important;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

/* Wrapper */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo */
.logo-text {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Menu */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 40px;
}
@media(max-width:1024px){
  .nav-menu{
    gap: 30px;
  }
}

.nav-menu li {
  position: relative;
}

.nav-menu>li>a {
  color: var(--text-dark);
  font-weight: 400;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
  color: var(--primary-color);
  font-weight: 600;
  opacity: 1;
  position: relative;
}

.nav-menu>li>a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.btn-nav.active::after {
  display: none;
}

.nav-menu .arrow {
  font-size: 0.7rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
  display: inline-block;
  padding: 5px;
  /* Increase hit area */
}

@media (max-width: 768px) {
  .nav-menu .arrow {
    padding: 10px;
    /* Even larger on mobile */
    margin-left: 0;
  }
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  min-width: 220px;
  list-style: none;
  padding: var(--spacing-xs);
  border-radius: var(--radius-md);
  box-shadow: 0 0 15px #00000015;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

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

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: var(--spacing-xs) var(--spacing-sm);
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--bg-light);
  color: var(--primary-color);
  font-weight: 600;
}

/* CTA Button */
.btn-nav {
  background: var(--primary-color);
  color: white !important;
  padding: 14px 24px !important;
  border-radius: var(--radius-lg) !important;
  font-weight: 600;
  opacity: 1 !important;
}

.btn-nav:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========================= */
/* RESPONSIVE BREAKPOINTS    */
/* ========================= */

/* Tablets */
@media (max-width: 992px) {
  .nav-menu {
    gap: 20px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .nav-menu>li>a {
    color: var(--text-dark);
    font-weight: 400;
    font-size: 12px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    opacity: 0.7;
  }
}
@media(max-width:820px){
  .nav-menu{
    gap: 16px;
  }
  .nav-menu>li>a:hover, .nav-menu>li>a.active{
    padding: 14px 14px !important;
  }
}
/* Mobile Navigation */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    flex-direction: column;
    gap: 18px;
    padding: 24px 0;
    background: var(--bg-white);
    box-shadow: 0 5px 10px #00000015;
    border-top: 1px solid #eee;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none;
    box-shadow: none;
    padding-left: 18px;
  }

  .btn-nav {
    width: 90%;
    text-align: center;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .logo-text {
    font-size: 1.3rem;
  }

  .logo-img {
    height: 32px;
  }

  .btn-nav {
    padding: 12px 20px !important;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url(./assets/images/banner/img06.webp);
  background-size: cover;
  background-position: center;
  z-index: 0;
  margin-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
     background: rgba(0, 0, 0, 0.416);
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 100px 0px 20px 0px;
  min-height: calc(100vh - 80px);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 0 8px rgb(0 0 0 / 8%);
}

.hero-title .highlight {
  /* font-family: var(--font-heading); */
  font-weight: 800;
/* font-style: oblique; */
  /* font-size: 3.5rem; */
}

.hero-subtitle {
  font-size: 16px;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  line-height: 1.6;
  width: 60%;
  text-align: center;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-xl);

  a {
    min-width: 200px;
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.495);
    backdrop-filter: blur(6px);
    border: 1px solid #ffffff61;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  background: #ffffff2b;
  padding: var(--spacing-md);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff29;
  width: 70%;
}

/* inner herobanner */
.innerHero .hero-content {
  padding: 100px 0px;
  min-height: 65vh;
}

.innerHero .hero-content .badge-outline {
  font-weight: 500;
  /* background: rgba(255, 255, 255, 0.361); */
  backdrop-filter: blur(5px);
  border-color: rgba(255, 255, 255, 0.318);
  color: white;
  border-radius: 50px;
}

.innerHero .hero-content .hero-buttons {
  margin-bottom: 0;
}

.innerHero .hero-title {
  /* font-family: var(--font-heading); */
  margin-top: 20px;
  font-weight: 800;
}

.hero-title .highlight {
  /* font-family: var(--font-heading); */
  font-weight: 500;
  /* font-style: oblique; */
  /* font-size: 3.5rem; */
}

.hero-subtitle {
  font-size: 16px;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  line-height: 1.6;
  width: 60%;
  text-align: center;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-xl);

  a {
    min-width: 200px;
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.495);
    backdrop-filter: blur(6px);
    border: 1px solid #ffffff61;
  }
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.stat p {
  font-size: 0.9rem;
  font-weight: 300;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
}

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

.btn-primary-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary-white {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   SECTIONS
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);

  @media (max-width: 480px) {
    margin: 0 auto 30px !important;
    margin-bottom: 30px !important;
  }
}


@media (max-width: 480px) {
  .section-header {
    margin: 0 auto 30px !important;
    margin-bottom: 30px !important;
  }

}

.section-header h2 {
  font-size: 2.75rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-medium);
}

/* Services Overview Section */
.services-overview {
  background: var(--bg-light);
  padding: 70px 0;
}

@media (max-width: 768px) {
  .services-overview {
    padding: 80px 0px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-xl);
}

.service-card {
  width: 100%;
  background: white;
  border-radius: var(--radius-xl);
  display: flex;
  gap: 60px;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid #eee;
}

.service-card .service-cardThumbnail {
  width: 55%;
  height: 100%;
  background: #000;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-card .service-cardThumbnail .service-cardThumbnailBgImg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.7;
}

.service-card .service-cardThumbnail .service-cardThumbnailBgImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .service-cardThumbnail .productImg {
  width: 75%;
  aspect-ratio: 3 / 2;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.482);
}

.service-card .service-cardThumbnail .productImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .service-cardDetails {
  width: calc(100% - 55% - 60px);
  display: flex;
  flex-direction: column;
  padding: 60px 40px 60px 0px;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-top: 10px;
  font-weight: 800;
  color: var(--text-dark);
  /* font-family: var(--font-heading); */
}

.service-card>p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.service-features li {
  color: var(--text-medium);
  position: relative;
  padding-left: var(--spacing-md);
  font-size: 14px;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.service-card a {
  margin-top: var(--spacing-lg) !important;
  width: fit-content !important;
}

.service-link:hover {
  transform: translateX(5px);
}

.innerServiceOverview .services-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.innerServiceOverview .service-card {
  flex-direction: column;
  gap: 0px;
}

.innerServiceOverview .service-card h3 {
  margin-top: 0;
}

.innerServiceOverview .service-cardThumbnail {
  width: 100%;
  aspect-ratio: 3 / 1.5;
  position: relative;
  overflow: hidden;
}

.innerServiceOverview .service-cardThumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.innerServiceOverview .service-cardDetails {
  width: 100%;
  padding: 30px;
}

.innerServiceOverview .service-cardDetails .pill {
  width: fit-content;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;

  /* Large desktops */
  @media (max-width: 1200px) {
    padding: 80px 0;
  }

  /* Tablets */
  @media (max-width: 992px) {
    padding: 70px 0;
  }

  /* Large mobiles */

  /* Small mobiles */
  @media (max-width: 480px) {
    padding: 30px 0 20px !important;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.benefit-card {
  padding: var(--spacing-md);
  border: 1px solid var(--border-color);
  background: #f5f6f7;
  border-radius: var(--radius-lg);
}

.benefit-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  /* font-family: var(--font-heading); */
}

.benefit-card p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* Industries Section */
.industries {
  background: var(--bg-light);
  padding: 100px 0;
}

@media (max-width: 768px) {
  .industries {
    padding: 80px 0px;
  }
}

.industries .industriesMain {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.industries .industriesMain .section-header {
  width: 40%;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 150px;
  text-align: left;
}

.industries .industriesMain .industries-grid {
  width: calc(100% - 40% - 60px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.industry-card {
  width: calc(100% / 2 - 15px);
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.industry-card::after {
  position: absolute;
  /* content: ''; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.industry-icon {
  font-size: 2.5rem;
}

.industry-card h3 {
  font-size: 1.25rem;
  margin-top: 10px !important;
  font-weight: 600;
  margin-bottom: 0 !important;
  /* font-family: var(--font-heading); */
}

.industry-card p {
  color: var(--text-medium);
  margin-top: 10px;
  line-height: 1.4;
}

.industry-link {
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 20px;
}

.industry-link:hover {
  text-decoration: underline;
}

/* Case Studies Preview */
.case-studies-preview {
  background: white;
  padding: 60px 0;
  position: relative;
  z-index: 0;

  @media (max-width: 1200px) {
    padding: 80px 0;
  }

  /* Tablets */
  @media (max-width: 992px) {
    padding: 70px 0;
  }

  /* Large mobiles */
  @media (max-width: 768px) {
    padding: 60px 0;
  }

  /* Small mobiles */
  @media (max-width: 480px) {
    padding: 30px 0;
  }
}

.case-studies-preview::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url(assets/images/caseStudyBg.webp);
  background-size: cover;
  background-position: center;
}

.case-studies-preview::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--bg-light);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
}

.case-study-card {
  background: rgba(255, 255, 255, 0.695);
  backdrop-filter: blur(10px);
  padding: var(--spacing-md);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  border: 1px solid #0000001f;
}

.case-study-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.case-study-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 800;
  /* font-family: var(--font-heading); */
}

.case-study-card>p {
  color: var(--text-medium);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.metric {
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.726);
  border: 1px solid #0000001f;
  border-radius: var(--radius-md);
}

.metric strong {
  display: block;
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.metric span {
  font-size: 0.85rem;
  color: var(--text-medium);
}

.case-study-link {
  color: var(--primary-color);
  font-weight: 600;
}

.case-study-link:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-light));
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
}

/* ============================ */
/*         RESPONSIVE           */
/* ============================ */

/* Tablets */
@media (max-width: 992px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-content p {
    font-size: 1.15rem;
  }
}

/* Large Mobiles */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-buttons a,
  .cta-buttons button {
    width: 80%;
    max-width: 280px;
    text-align: center;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.05rem;
  }

  .cta-buttons a,
  .cta-buttons button {
    width: 90%;
  }
}

/* Testimonials Section */
.testimonials {
  background: var(--bg-light);
  padding: 60px 0;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0px;
  }
}

.testimonials-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonials-marquee::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, var(--bg-light), rgba(255, 255, 255, 0));
}

.testimonials-marquee::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--bg-light));
}

.testimonials-marquee:hover .testimonials-grid {
  animation-play-state: paused;
}

.testimonials-grid {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-x 30s linear infinite;
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  min-width: var(--testimonial-width, 420px);
  max-width: var(--testimonial-width, 420px);
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  :root {
    --testimonial-width: 300px;
  }
}

@media (max-width: 480px) {
  :root {
    --testimonial-width: 260px;
  }
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Blog Preview Section */
.blog-preview {
  background: white;
  padding: 70px 0;
}

@media (max-width: 768px) {
  .blog-preview {
    padding: 30px 0px;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.blog-card:hover .blog-image img {
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.blog-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg,
      var(--primary-light),
      var(--primary-color));
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: var(--radius-lg);
}

.blog-content {
  padding: var(--spacing-sm);
}

.blog-meta {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: 0.85rem;
  align-items: center;
}

.blog-category {
  background: var(--bg-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--primary-color);
  font-weight: 500;
  font-size: 12px;
}

.blog-date {
  color: var(--text-light);
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
  /* font-family: var(--font-heading); */
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-card p {
  color: var(--text-medium);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

.blog-cta {
  text-align: center;
}

.blog-cta .btn-secondary {
  border-color: var(--primary-color) !important;
  color: var(--primary-color);
}

.blog-cta .btn-secondary:hover {
  background-color: var(--primary-color) !important;
  color: white !important;
}

/* ========================================
   FOOTER
   ======================================== */
/* --- BASE FOOTER STYLES --- */
.footer {
  background: #f4f5ff;
  color: var(--text-dark);
  /* Use padding-inline (left/right) to ensure content doesn't hit screen edges */
  padding: 100px 20px 20px 20px; 
}

.footer-content {
  display: grid;
  /* Default Desktop: 4 columns */
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  max-width: 1200px;
  margin-inline: auto; /* Centers the container, but text inside stays left */
}

.footer-section .footerLogo {
  width: 200px;
  margin-bottom: var(--spacing-md);
}

.footer-section .footerLogo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.footer-section h4 {
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
  color: var(--text-dark);
  font-weight: 500;
}

.footer-section p {
  color: var(--text-medium);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section ul a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(68, 0, 254, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(68, 0, 254, 0.15);
  max-width: 1200px;
  margin-inline: auto;
}

.footer-bottom p {
  color: var(--text-medium);
  font-size: 12px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
}

.footer-links a {
  font-size: 12px;
  color: var(--text-medium);
  text-decoration: none;
}

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

/* --- IMPROVED RESPONSIVE MEDIA QUERIES --- */

/* Tablet & Large Mobile (Under 1024px) */
@media (max-width: 1024px) {
  .footer-content {
    /* 2 columns for better spacing on tablets */
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
  }
}

/* Standard Mobile (Under 768px) */
@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 20px 20px;
  }

  .footer-content {
    /* Stack all sections vertically */
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-bottom {
    /* Stack copyright and bottom links */
    flex-direction: column;
    align-items: center; /* Keep left aligned */
    gap: var(--spacing-md);
  }

  .footer-links {
    flex-wrap: wrap; /* Prevent links from cutting off */
    gap: 15px;
  }
}

/* Small Mobile (Under 480px) */
@media (max-width: 480px) {
  .footer-section h3 {
    font-size: 1.25rem;
  }

  .footerLogo {
    width: 160px; /* Slightly smaller logo on very small screens */
  }
}
/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .industries-grid,
  .case-studies-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    width: 80%;
  }

  .hero-stats {
    width: 90%;
  }

  .industries .industriesMain {
    gap: 30px;
  }

  .industries .industriesMain .section-header {
    width: 45%;
  }

  .industries .industriesMain .industries-grid {
    width: calc(55% - 30px);
  }

  .industry-card {
    width: 100%;
  }

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

  .servicePackageList .package-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    width: 100%;
    margin-bottom: var(--spacing-lg);
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-sm);
  }

  .service-card {
    flex-direction: column;
    gap: 0;
  }

  .service-card .service-cardThumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .service-card .service-cardDetails {
    width: 100%;
    padding: var(--spacing-md);
  }

  .industries .industriesMain {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .industries .industriesMain .section-header {
    width: 100%;
    position: static;
    text-align: center;
  }

  .industries .industriesMain .industries-grid {
    width: 100%;
  }

  .industry-card {
    width: 100%;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Navigation update (already applied but keeping for context) */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px var(--spacing-lg) var(--spacing-xl);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    gap: 0;
    overflow-y: auto;
    max-height: none;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    margin-bottom: 5px;
  }

  .nav-menu>li>a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu>li>a.active::after {
    display: none;
  }

  .nav-menu>li>a.active {
    color: var(--primary-color);
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: var(--spacing-sm);
    padding-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9ff;
    border-radius: 0;
    width: 100%;
    min-width: 0;
  }

  .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }

  .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .dropdown.active .dropdown-menu {
    max-height: 500px;
    padding-bottom: 10px;
  }

  .btn-nav {
    margin-top: 20px;
    text-align: center;
    width: 100% !important;
  }

  .mobile-menu-toggle {
    z-index: 1002;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-sm);
  }

  .hero-buttons a,
  .cta-buttons a {
    width: 100%;
  }

  .benefits-grid,
  .case-studies-grid,
  .blog-grid,
  .footer-content,
  .services-grid,
  .servicePackageList,
  .experienceCloudList {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .testimonials-marquee .testimonials-grid {
    display: flex !important;
    flex-direction: row !important;
    width: max-content !important;
  }

  .servicePackageList .package-card {
    width: 100% !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-top: 40px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .stat h3 {
    font-size: 1.75rem;
  }

  .stat p {
    font-size: 0.85rem;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.pt-sm {
  padding-top: var(--spacing-sm);
}

.pt-md {
  padding-top: var(--spacing-md);
}

.pt-lg {
  padding-top: var(--spacing-lg);
}

.pb-sm {
  padding-bottom: var(--spacing-sm);
}

.pb-md {
  padding-bottom: var(--spacing-md);
}

.pb-lg {
  padding-bottom: var(--spacing-lg);
}

/* ========================================
   EXTENDED UTILITY CLASSES FOR INNER PAGES
   ======================================== */

/* Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

@media (max-width: 1024px) {

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

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Badge & Pill Styles */
.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.badge-success {
  background: var(--success-color);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.pill {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  background: rgba(68, 0, 254, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

/* Timeline Styles */
.timeline {
  position: relative;

  display: flex;
  flex-direction: column;
}

.timeline::before {
  /* content: ''; */
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,
      var(--primary-color),
      var(--primary-light));
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.timeline-itemCol1 {
  width: 20px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

.timeline-itemCol1::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 1px;
  height: 100%;
  border-left: 1px dashed var(--primary-color);
}

.timeline-itemCol1 .dot {
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
}

.timeline-itemCol2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px dashed var(--primary-color);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
}

.timeline-item::before {
  /* content: ''; */
  position: absolute;
  left: -2.5rem;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  background: var(--primary-color);
  border-radius: 50%;
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-item h4 {
  color: var(--primary-color);
  font-weight: 800;
  margin: 0;
}

.timeline-item p {
  color: var(--text-medium);
  line-height: 1.4;
  margin: 0;
  margin-top: 15px;
}

/* Pricing Card */
.pricing-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg,
      rgba(68, 0, 254, 0.05),
      rgba(167, 148, 255, 0.05));
  position: relative;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: var(--spacing-md) 0;
}

.pricing-card .price span {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-medium);
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: var(--spacing-lg) 0;
}

.pricing-card ul li {
  padding: var(--spacing-xs) 0;
  color: var(--text-medium);
  position: relative;
  padding-left: var(--spacing-md);
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Resource Item */
.resource-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-md);
  align-items: start;
  transition: all 0.3s ease;
}

.resource-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.resource-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.resource-content h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.resource-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xs);
}

.resource-meta {
  display: flex;
  gap: var(--spacing-sm);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1.7;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  box-shadow: var(--shadow-md);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-light));
  color: white;
  font-size: 4rem;
}

/* KPI Cards */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: 50px;
}

.kpi-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.kpi-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.kpi-value {
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  line-height: 1;
}

.kpi-label {
  font-size: 0.95rem;
  color: var(--text-medium);
  font-weight: 400;
}

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

@media (max-width: 768px) {
  .kpi-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

/* Package/Solution Card */
.package-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.package-header {
  text-align: center;
  padding-bottom: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--bg-light);
}

.package-header h3 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.package-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.package-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.package-features li {
  padding: var(--spacing-xs) 0;
  color: var(--text-medium);
  position: relative;
  padding-left: var(--spacing-md);
}

.package-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Testimonial Block */
.testimonial-block {
  background: linear-gradient(135deg,
      rgba(68, 0, 254, 0.05),
      rgba(167, 148, 255, 0.05));
  border-left: 4px solid var(--primary-color);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  margin: var(--spacing-xl) 0;
}

.testimonial-block blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-info strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.testimonial-info span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.page-hero {
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--primary-dark) 100%);
  color: white;
  text-align: center;
  margin-top: 80px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 34%);
  z-index: -1;
}
.page-hero .page-hero-main{
  width: 100%;
  padding: 100px 0px;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-hero h1 {
  /* font-family: var(--font-heading); */
  font-size: 4em;
  margin: 0 !important;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 0 8px rgb(0 0 0 / 8%);
}

.page-hero p {
  font-size: 18px;
  margin: 0 !important;
  margin-top: 20px !important;
  font-weight: 300;
  text-align: center;
  width: 60%;
}

.page-content {
  padding: 70px 0;
}

/* ============================= */
/*       MEDIA RESPONSIVE         */
/* ============================= */

/* Large desktops */
@media (max-width: 1200px) {
  .page-content {
    padding: 80px 0;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .page-content {
    padding: 70px 0;
  }
}

/* Large mobiles */
@media (max-width: 768px) {
  .page-content {
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 3em;
  }

  .page-hero p {
    width: 80%;
    font-size: 16px;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .page-content {
    padding: 50px 0;
  }

  .page-hero {
    padding: 120px 0;
  }

  .page-hero h1 {
    font-size: 2em;
  }

  .page-hero p {
    width: 90%;
    font-size: 15px;
  }
}

/* servicePackage */
.servicePackage {
  width: 100%;
  padding: 70px 0px;
  background-color: var(--bg-light);

  @media (max-width: 1200px) {
    padding: 70px 0;
  }

  /* Tablets */
  @media (max-width: 992px) {
    padding: 70px 0;
  }

  /* Large mobiles */
  @media (max-width: 768px) {
    padding: 60px 0;
  }

  /* Small mobiles */
  @media (max-width: 480px) {
    padding: 30px 0;
  }
}

.servicePackageList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.servicePackageList .package-card {
  width: calc(100% / 3 - 20px);
  box-shadow: none;
  border: 1px solid var(--border-color);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  height: inherit;
}

.servicePackageList .package-card .package-header {
  width: 100%;
  background: #dfe2ff;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.servicePackageList .package-card .package-header .package-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  font-size: 30px;
  color: var(--primary-color);
}

.servicePackageList .package-card .package-header h3 {
  font-weight: 800;
  font-size: 26px;
}

.servicePackageList .package-card .package-header .pill,
.servicePackageList .package-card .package-header .badge {
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 20px;
  text-transform: capitalize;
}

.servicePackageList .package-card .package-features li {
  font-size: 14px;
}

.servicePackageList .package-card a {
  margin-top: auto;
}

/* businessOutcomes */
.businessOutcomes {
  width: 100%;
  padding: 70px 0px;

  @media (max-width: 1200px) {
    padding: 80px 0;
  }

  /* Tablets */
  @media (max-width: 992px) {
    padding: 70px 0;
  }

  /* Large mobiles */
  @media (max-width: 768px) {
    padding: 60px 0;
  }

  /* Small mobiles */
  @media (max-width: 480px) {
    padding: 50px 0;
  }
}

/* implementationProcess */
.implementationProcess {
  width: 100%;
  padding: 70px 0px;
  background-color: var(--bg-light);

  @media (max-width: 1200px) {
    padding: 80px 0;
  }

  /* Tablets */
  @media (max-width: 992px) {
    padding: 70px 0;
  }

  /* Large mobiles */
  @media (max-width: 768px) {
    padding: 40px 0;
  }

  /* Small mobiles */
  @media (max-width: 480px) {
    padding: 30px 0;
  }
}

/* serviceVideoSection */
.serviceVideoSection {
  width: 100%;
  padding: 70px 0px;

  @media (max-width: 1200px) {
    padding: 80px 0;
  }

  /* Tablets */
  @media (max-width: 992px) {
    padding: 70px 0;
  }

  /* Large mobiles */
  @media (max-width: 768px) {
    padding: 60px 0;
  }

  /* Small mobiles */
  @media (max-width: 480px) {
    padding: 50px 0;
  }
}

/* experienceCloud */
.experienceCloud {
  width: 100%;
  padding: 70px 0;
}

.experienceCloud .experienceCloudList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.experienceCloud .experienceCloudList .package-card {
  width: calc(50% - 15px);
  border: 1px solid var(--border-color);
  padding: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  min-height: 400px;
}

.experienceCloud .experienceCloudList .package-card .package-header {
  width: 100%;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: left;
  margin: 0;
}

.experienceCloud .experienceCloudList .package-card .package-header .package-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e6eeff;
  border-radius: var(--radius-lg);
  font-size: 30px;
  margin: 0;
  color: var(--primary-color);
}

.experienceCloud .experienceCloudList .package-card .package-header h3 {
  font-weight: 800;
  font-size: 26px;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 10px;
}

.experienceCloud .experienceCloudList .package-card .package-cardDetails {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.experienceCloud .experienceCloudList .package-card .package-cardDetails ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}

.experienceCloud .experienceCloudList .package-card .package-cardDetails ul li {
  width: calc(100% / 2 - 10px);
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* ---------- Responsive Breakpoints ---------- */

/* Large Desktops */
@media (max-width: 1200px) {
  .experienceCloud {
    padding: 70px 0;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .experienceCloud {
    padding: 70px 0;
  }
}

/* Tablets & Large Mobiles */
@media (max-width: 768px) {
  .experienceCloud {
    padding: 60px 0;
  }

  .experienceCloud .experienceCloudList .package-card {
    width: 100% !important;
  }

  .experienceCloud .experienceCloudList .package-card .package-cardDetails ul li {
    width: 100% !important;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .experienceCloud {
    padding: 30px 0;
  }
}

/* architecture */
.architecture {
  width: 100%;
  padding: 70px 0;
  background: var(--bg-light);
}

/* Large desktops */
@media (max-width: 1200px) {
  .architecture {
    padding: 70px 0;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .architecture {
    padding: 70px 0;
  }
}

/* Large mobiles */
@media (max-width: 768px) {
  .architecture {
    padding: 60px 0;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .architecture {
    padding: 40px 0;
  }
}

.architecture .package-card {
  box-shadow: none;
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
}

.architecture .package-card .package-icon {
  width: 80px;
  height: 80px;
  background: #e6eeff;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: var(--primary-color);
  margin: 0;
}

.architecture .package-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  margin-top: 20px;
}

.architecture .package-card ul {
  margin: 0;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px dashed var(--border-color);
  padding-top: 20px;
}

.architecture .package-card ul li {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.resourcesRowWrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resourcesRowWrapper .resourceRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 32px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #ececff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  /* ================= LEFT ================= */
  /* ================= BUTTON ================= */
}

.resourcesRowWrapper .resourceRow:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .resourcesRowWrapper .resourceRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.resourcesRowWrapper .resourceRow .resourceLeft {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  /* ================= ICON ================= */
  /* ================= CONTENT ================= */
}

.resourcesRowWrapper .resourceRow .resourceLeft .resourceIcon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f2f0ff;
  color: #4f2bff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.resourcesRowWrapper .resourceRow .resourceLeft .resourceIcon.success {
  background: #e8fff1;
  color: #1a9c53;
}

.resourcesRowWrapper .resourceRow .resourceLeft .resourceIcon.danger {
  background: #fff1f1;
  color: #e03131;
}

.resourcesRowWrapper .resourceRow .resourceLeft .resourceContent {
  /* ================= META ================= */
}

.resourcesRowWrapper .resourceRow .resourceLeft .resourceContent h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a;
}

.resourcesRowWrapper .resourceRow .resourceLeft .resourceContent p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 10px;
  max-width: 620px;

  @media (max-width: 768px) {
    line-height: 1.6;
    font-size: 12.5px;
  }
}

.resourcesRowWrapper .resourceRow .resourceLeft .resourceContent .resourceMeta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #64748b;
}

.resourcesRowWrapper .resourceRow .resourceLeft .resourceContent .resourceMeta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.resourcesRowWrapper .resourceRow .btnPrimary {
  padding: 10px 22px;
  background: #4f2bff;
  color: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

.resourcesRowWrapper .resourceRow .btnPrimary:hover {
  background: #3f20e0;
}

@media (max-width: 768px) {
  .resourcesRowWrapper .resourceRow .btnPrimary {
    align-self: stretch;
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */

.webinarsSection {
  padding: 4rem 0;
}

.webinarsSection .sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
  @media (max-width: 768px) {
    margin-bottom: 1.5rem;
  }
}

.webinarsSection .sectionSubTitle {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.webinarsSection .liveWebinarsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .webinarsSection .liveWebinarsGrid {
    grid-template-columns: 1fr;
  }
}

.webinarsSection .liveWebinarsGrid .liveWebinarCard {
  position: relative;
  padding: 28px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eef0ff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.webinarsSection .liveWebinarsGrid .liveWebinarCard h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 14px 0 10px;
}

.webinarsSection .liveWebinarsGrid .liveWebinarCard p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}

.webinarsSection .liveWebinarsGrid .liveWebinarCard .liveBadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #e8fff1;
  color: #16a34a;
}

.webinarsSection .liveWebinarsGrid .liveWebinarCard .liveBadge i {
  font-size: 8px;
}

.webinarsSection .liveWebinarsGrid .liveWebinarCard .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 20px;
}

.webinarsSection .liveWebinarsGrid .liveWebinarCard .meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.webinarsSection .liveWebinarsGrid .liveWebinarCard .primaryBtn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
}

.webinarsSection .liveWebinarsGrid .liveWebinarCard .primaryBtn:hover {
  opacity: 0.9;
}

.webinarsSection .onDemandGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 640px) {
  .webinarsSection .onDemandGrid {
    grid-template-columns: 1fr;
  }
}

.webinarsSection .onDemandGrid .onDemandCard {
  padding: 26px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eef0ff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.webinarsSection .onDemandGrid .onDemandCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.webinarsSection .onDemandGrid .onDemandCard .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f2f0ff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.webinarsSection .onDemandGrid .onDemandCard .duration-watch {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.webinarsSection .onDemandGrid .onDemandCard h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.webinarsSection .onDemandGrid .onDemandCard p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.webinarsSection .onDemandGrid .onDemandCard .duration {
  display: inline-block;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  margin-top: 10px;
}

.webinarsSection .onDemandGrid .onDemandCard a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
}

/*# sourceMappingURL=style.css.map */

.acceleratorsSection {
  padding: 70px 0;
  background: #f0f2ff;

  /* Large desktops */
  @media (max-width: 1200px) {
    padding: 80px 0;
  }

  /* Tablets */
  @media (max-width: 992px) {
    padding: 70px 0;
  }

  /* Large mobiles */
  @media (max-width: 768px) {
    padding: 60px 0;
  }

  /* Small mobiles */
  @media (max-width: 480px) {
    padding: 50px 0;
  }
}

.acceleratorsSection .sectionHeader {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;

  @media (max-width: 480px) {
    margin: 0 auto 44px;
  }
}

.acceleratorsSection .sectionHeader h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.acceleratorsSection .sectionHeader p {
  font-size: 18px;
  color: #64748b;
}

.acceleratorsSection .acceleratorsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

@media (max-width: 640px) {
  .acceleratorsSection .acceleratorsGrid {
    grid-template-columns: 1fr;
  }
}

.acceleratorsSection .acceleratorCard {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  transition: 0.35s ease;
  position: relative;
}

.acceleratorsSection .acceleratorCard:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.acceleratorsSection .acceleratorCard .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(79, 70, 229, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.acceleratorsSection .acceleratorCard .icon i {
  font-size: 22px;
  color: #4f46e5;
}

.acceleratorsSection .acceleratorCard h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
}

.acceleratorsSection .acceleratorCard .description {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 22px;
  line-height: 1.6;
}

.acceleratorsSection .acceleratorCard .features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acceleratorsSection .acceleratorCard .features li {
  font-size: 14px;
  color: #334155;
  padding-left: 22px;
  position: relative;
}

.acceleratorsSection .acceleratorCard .features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: 600;
}

.acceleratorsSection .acceleratorCard .cardBtn {
  margin-top: auto;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.acceleratorsSection .acceleratorCard .cardBtn:hover {
  opacity: 0.9;
}

/*# sourceMappingURL=style.css.map */

.services-overview {
  padding: 70px 0;
  background: #f8f9fb;

  /* Large desktops */
  @media (max-width: 1200px) {
    padding: 60px 0;
  }

  /* Tablets */
  @media (max-width: 992px) {
    padding: 70px 0;
  }

  /* Large mobiles */
  @media (max-width: 768px) {
    padding: 60px 0;
  }

  /* Small mobiles */
  @media (max-width: 480px) {
    padding: 50px 0 20px;
  }
}

.services-overview .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-overview .section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-overview .section-header p {
  font-size: 18px;
  color: #6a6a6a;
}

.services-overview .services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.services-overview .services-wrapper .service-card {
  display: flex;
  align-items: stretch;
  gap: 30px;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  height: 100%;
  min-height: 260px;
  transition: 0.3s ease;
}

.services-overview .services-wrapper .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.services-overview .services-wrapper .service-card .service-image {
  flex: 0 0 35%;
}

.services-overview .services-wrapper .service-card .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 14px;
}

.services-overview .services-wrapper .service-card .service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-overview .services-wrapper .service-card .service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-overview .services-wrapper .service-card .service-content .service-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: #eef2ff;
  border-radius: 12px;
  color: var(--primary-color);
}

.services-overview .services-wrapper .service-card .service-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.services-overview .services-wrapper .service-card .service-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.services-overview .services-wrapper .service-card .service-content ul {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.services-overview .services-wrapper .service-card .service-content ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
}

.services-overview .services-wrapper .service-card .service-content ul li::before {
  content: "✓";
  color: #5379ff;
  position: absolute;
  left: 0;
}

@media (max-width: 992px) {
  .services-overview .services-wrapper .service-card {
    flex-direction: column;
  }

  .services-overview .services-wrapper .service-card .service-image {
    flex: none;
  }

  .services-overview .services-wrapper .service-card .service-image img {
    height: 220px;
  }
}

/*# sourceMappingURL=style.css.map */

.kpi-outcomes {
  padding: 70px 0;
  background: var(--bg-light);

  /* Large desktops */
  @media (max-width: 1200px) {
    padding: 80px 0;
  }

  /* Tablets */
  @media (max-width: 992px) {
    padding: 70px 0;
  }

  /* Large mobiles */
  @media (max-width: 768px) {
    padding: 60px 0;
  }

  /* Small mobiles */
  @media (max-width: 480px) {
    padding: 20px 0;
  }
}

.kpi-outcomes .section-header {
  text-align: center;
  margin-bottom: 60px;

  @media (max-width: 480px) {
    margin: 0 auto 44px;
  }
}

.kpi-outcomes .section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
}

.kpi-outcomes .section-header p {
  font-size: 18px;
  color: #64748b;
}

.kpi-outcomes .kpi-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.kpi-outcomes .kpi-card {
  flex: 0 0 calc(25% - 21px);
  min-height: 180px;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
  text-align: center;
}

.kpi-outcomes .kpi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.kpi-outcomes .kpi-card .kpi-value {
  font-size: 46px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.kpi-outcomes .kpi-card .kpi-label {
  font-size: 16px;
  color: #475569;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .kpi-outcomes .kpi-card {
    flex: 0 0 calc(50% - 14px);
  }
}

@media (max-width: 600px) {
  .kpi-outcomes .kpi-card {
    flex: 0 0 100%;
  }
}

/*# sourceMappingURL=style.css.map */

.accelerators {
  padding: 100px 20px;
  background: #f5f7fa;
}

.accelerators .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.accelerators .section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1c1c1c;
}

.accelerators .section-header p {
  font-size: 18px;
  color: #555;
  margin-top: 6px;
}

.accelerators .accelerators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.accelerators .accelerators-grid .accelerator-card {
  width: calc(33.33% - 20px);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.accelerators .accelerators-grid .accelerator-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

.accelerators .accelerators-grid .accelerator-card:hover .card-image img {
  transform: scale(1.05);
}

.accelerators .accelerators-grid .accelerator-card .card-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.accelerators .accelerators-grid .accelerator-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.accelerators .accelerators-grid .accelerator-card .card-image .card-icon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: #3d3be8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
}

.accelerators .accelerators-grid .accelerator-card .card-image .card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.accelerators .accelerators-grid .accelerator-card .card-content {
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accelerators .accelerators-grid .accelerator-card .card-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1c1c1c;
}

.accelerators .accelerators-grid .accelerator-card .card-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.accelerators .accelerators-grid .accelerator-card .card-content ul {
  list-style: none;
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.accelerators .accelerators-grid .accelerator-card .card-content ul li {
  position: relative;
  font-size: 14px;
  color: #333;
}

.accelerators .accelerators-grid .accelerator-card .card-content ul li::before {
  content: "✔";
  color: #3d3be8;
  position: absolute;
  left: -18px;
  top: 0;
}

.accelerators .accelerators-grid .accelerator-card .card-content .pill {
  align-self: flex-start;
  margin-top: auto;
  background: linear-gradient(90deg, #3d3be8, #6f72ff);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .accelerators .accelerators-grid .accelerator-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 992px) {
  .accelerators {
    padding: 80px 15px;
  }

  .accelerators .section-header h2 {
    font-size: 32px;
  }

  .accelerators .section-header p {
    font-size: 16px;
  }

  .accelerators .accelerators-grid .accelerator-card {
    width: calc(50% - 15px);
  }

  .accelerators .accelerator-card .card-image {
    height: 200px;
  }

  .accelerators .accelerator-card .card-content {
    padding: 30px 15px 15px;
  }
}

@media (max-width: 768px) {
  .accelerators {
    padding: 70px 15px;
  }

  .accelerators .section-header h2 {
    font-size: 28px;
  }

  .accelerators .section-header p {
    font-size: 15px;
  }

  .accelerators .accelerators-grid {
    gap: 20px;
  }

  .accelerators .accelerators-grid .accelerator-card {
    width: 100%;
  }

  .accelerators .accelerator-card .card-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .accelerators {
    padding: 60px 10px 30px;
  }

  .accelerators .section-header h2 {
    font-size: 24px;
  }

  .accelerators .section-header p {
    font-size: 14px;
  }

  .accelerators .accelerator-card .card-image {
    height: 160px;
  }

  .accelerators .accelerator-card .card-content h3 {
    font-size: 20px;
  }

  .accelerators .accelerator-card .card-content p,
  .accelerators .accelerator-card .card-content ul li {
    font-size: 13px;
  }

  .accelerators .accelerator-card .card-content .pill {
    font-size: 12px;
    padding: 5px 12px;
  }
}

/*# sourceMappingURL=style.css.map */

.servicesOverview {
  padding: 60px 0;
  background: var(--bg-light);
}

@media (max-width: 768px) {
  .servicesOverview {
    padding: 40px 0;
  }
}

.servicesOverview .sectionHeader {
  text-align: center;
  margin-bottom: 64px;

  @media (max-width: 768px) {
    margin-bottom: 30px;
  }
}

.servicesOverview .sectionHeader h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.servicesOverview .sectionHeader p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.servicesOverview .caseCard {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  margin-bottom: 48px;
  border: 1px solid #e0e0e0;
  /* light border */
  transition: transform 0.3s ease;
}

.servicesOverview .caseCard:hover {
  transform: translateY(-6px);
}

@media (max-width: 768px) {
  .servicesOverview .caseCard {
    padding: 32px 24px;
  }
}

.servicesOverview .caseCard .caseHeader {
  margin-bottom: 32px;
}

.servicesOverview .caseCard .caseHeader .caseBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
}

.servicesOverview .caseCard .caseHeader .caseBadge.retail {
  background: var(--primary-color);
}

.servicesOverview .caseCard .caseHeader .caseBadge.manufacturing {
  background: var(--primary-color);
}

.servicesOverview .caseCard .caseHeader .caseBadge.distribution {
  background: var(--primary-color);
}

.servicesOverview .caseCard .caseHeader h3 {
  font-size: 2rem;
  margin: 16px 0 12px;
  /* font-family: var(--font-heading); */

  @media (max-width: 768px) {
    font-size: 20px !important;
  }
}

.servicesOverview .caseCard .caseHeader p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 850px;
}

.servicesOverview .caseCard .caseBody {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .servicesOverview .caseCard .caseBody {
    grid-template-columns: 1fr;
  }
}

.servicesOverview .caseCard .caseBody .caseBlock {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 20px;
}

.servicesOverview .caseCard .caseBody .caseBlock h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 16px;
  font-weight: 800;
}

.servicesOverview .caseCard .caseBody .caseBlock ul {
  list-style: none;
  padding: 0;
}

.servicesOverview .caseCard .caseBody .caseBlock ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-medium);
}

.servicesOverview .caseCard .caseBody .caseBlock ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.servicesOverview .caseCard .caseMetrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

@media (max-width: 480px) {
  .servicesOverview .caseCard .caseMetrics {
    grid-template-columns: 1fr;
  }
}

.servicesOverview .caseCard .caseMetrics .metricItem {
  background: var(--bg-light);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}

.servicesOverview .caseCard .caseMetrics .metricItem i {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.servicesOverview .caseCard .caseMetrics .metricItem strong {
  display: block;
  font-size: 2.2rem;
  color: var(--primary-color);
}

.servicesOverview .caseCard .caseMetrics .metricItem span {
  font-size: 0.95rem;
  color: var(--text-medium);
}

/*# sourceMappingURL=style.css.map */

/* testimonials section */
.testimonials {
  padding: 60px 0;
  background: var(--bg-light);
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .testimonials .section-header {
    margin-bottom: 30px;
  }
}

.testimonials .section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1c1c1c;
}

.testimonials .section-header p {
  font-size: 18px;
  color: #666;
  margin-top: 8px;
}

.testimonials .marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.testimonials .marquee-container .marquee-track {
  display: flex;
  gap: 24px;
  animation: marqueeScroll 22s linear infinite;
}

.testimonials .marquee-container .marquee-track:hover {
  animation-play-state: paused;
}

.testimonials .marquee-container .marquee-track .testimonial-card {
  min-width: 600px;
  background: #fff;
  border-left: 6px solid var(--primary-color);
  padding: 28px 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonials .marquee-container .marquee-track .testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
}

.testimonials .marquee-container .marquee-track .testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials .marquee-container .marquee-track .testimonial-card .author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials .marquee-container .marquee-track .testimonial-card .author .info {
  display: flex;
  flex-direction: column;
}

.testimonials .marquee-container .marquee-track .testimonial-card .author .info strong {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
}

.testimonials .marquee-container .marquee-track .testimonial-card .author .info span {
  font-size: 14px;
  color: #777;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .testimonials .marquee-container .marquee-track .testimonial-card {
    min-width: 500px;
    padding: 24px 26px;
  }

  .testimonials .marquee-container .marquee-track .testimonial-card blockquote {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials .section-header h2 {
    font-size: 30px;
  }

  .testimonials .marquee-container .marquee-track .testimonial-card {
    min-width: 380px;
    padding: 20px;
  }

  .testimonials .marquee-container .marquee-track .testimonial-card .author .avatar {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 30px 0;
  }

  .testimonials .section-header h2 {
    font-size: 26px;
  }

  .testimonials .marquee-container .marquee-track .testimonial-card {
    min-width: 300px;
    padding: 18px;
  }

  .testimonials .marquee-container .marquee-track .testimonial-card blockquote {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */

.why-choose-us {
  padding: 70px 0;
  background-color: var(--bg-light);

  /* ================= HEADER ================= */
  /* ================= GRID ================= */
  /* ================= RESPONSIVE ================= */
}

.why-choose-us .section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
}

.why-choose-us .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-choose-us .benefits-grid .benefit-card {
  position: relative;
  padding: 42px 34px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  /* kept / slightly stronger */
  transition: all 0.35s ease;
  overflow: hidden;
  /* gradient glow */
  /* ================= NUMBER ================= */
}

.why-choose-us .benefits-grid .benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6d28d9, #4f46e5);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-choose-us .benefits-grid .benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 65px rgba(79, 70, 229, 0.18);
}

.why-choose-us .benefits-grid .benefit-card:hover::before {
  opacity: 0.06;
}

.why-choose-us .benefits-grid .benefit-card .benefit-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d28d9, #4f46e5);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.why-choose-us .benefits-grid .benefit-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .why-choose-us .benefits-grid .benefit-card h3 {
    font-size: 20px;
  }
}

.why-choose-us .benefits-grid .benefit-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
  position: relative;
  z-index: 1;
}

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

  .why-choose-us .section-header .title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .why-choose-us .benefits-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-us .section-header {
    margin-bottom: 50px;
  }

  .why-choose-us .section-header .title {
    font-size: 30px;
  }
}

/*# sourceMappingURL=style.css.map */

.industries {
  background: #ffffff;
  padding: 70px 0;
  overflow: hidden;

  @media (max-width: 600px) {
    padding: 40px 0;
  }
}

.industries .section-header {
  text-align: center;
  margin-bottom: 50px;

  @media (max-width: 600px) {
    margin-bottom: 20px;
  }
}

.industries .section-header .section-image img {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: auto;
}

.industries .industries-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -14px;
  padding: 0 20px;

  @media (max-width: 768px) {
    padding: 0 20px;
    gap: 30px;
  }
}

.industries .industries-grid .industry-card {
  background: #f8faff;
  border: 1px solid #e5edff;
  border-radius: 18px;
  padding: 30px;
  margin-top: 20px;
  margin: 14px;
  flex: 0 0 calc(33.333% - 28px);
  text-align: center;
  transition: 0.3s ease;

  @media (max-width: 900px) {
    margin: 0;
    margin-top: 20px;
  }
}

.industries .industries-grid .industry-card .industry-img {
  width: 100%;
  height: 200px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 12px;
}

.industries .industries-grid .industry-card .industry-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.industries .industries-grid .industry-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0b1c3f;
}

.industries .industries-grid .industry-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a6c8a;
}

@media (max-width: 992px) {
  .industries .industries-grid .industry-card {
    flex: 0 0 calc(50% - 28px);
  }
}

@media (max-width: 600px) {
  .industries .industries-grid .industry-card {
    flex: 0 0 100%;
  }
}

/*# sourceMappingURL=style.css.map */

.industry-solutions-section {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;

  /* Large desktops */
  @media (max-width: 1200px) {
    padding: 70px 0;
  }

  /* Tablets */
  @media (max-width: 992px) {
    padding: 50px 0;
  }

  /* Large mobiles */
  @media (max-width: 768px) {
    padding: 30px 0;
  }

  /* Small mobiles */
  @media (max-width: 480px) {
    padding: 20px 0;
  }
}

.industry-solutions-section .industry-solutions-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .industry-solutions-section .industry-solutions-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.industry-solutions-section .industry-solutions-info .industry-solutions-title {
  font-size: 2.5rem;
  color: #1f2937;
  font-weight: 800;
  margin-bottom: 20px;
}

.industry-solutions-section .industry-solutions-info .industry-solutions-lead {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.3;
  margin-bottom: 40px;
}

.industry-solutions-section .industry-solutions-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .industry-solutions-section .industry-solutions-features {
    grid-template-columns: 1fr;
  }
}

.industry-solutions-section .industry-solutions-features .industry-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.industry-solutions-section .industry-solutions-features .industry-feature-card:hover {
  transform: translateX(5px);
  background: #f5f3ff;
  border-color: #6366f1;
}

.industry-solutions-section .industry-solutions-features .industry-feature-card .industry-feature-icon {
  color: #6366f1;
  font-weight: bold;
  font-size: 1rem;
}

.industry-solutions-section .industry-solutions-features .industry-feature-card .industry-feature-name {
  font-size: 0.95rem;
  color: #1f2937;
  font-weight: 500;
}

.industry-solutions-section .industry-solutions-btn {
  display: inline-block;
  padding: 16px 32px;
  background-color: #6366f1;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  font-size: 16px;
}


/* ----------- Responsive Breakpoints ----------- */

/* Large desktops (≤1200px) */
@media (max-width: 1200px) {
  .industry-solutions-section .industry-solutions-btn {
    padding: 15px 30px;
    font-size: 16px;
  }
}

/* Tablets (≤992px) */
@media (max-width: 992px) {
  .industry-solutions-section .industry-solutions-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* Large mobiles (≤768px) */
@media (max-width: 768px) {
  .industry-solutions-section .industry-solutions-btn {
    padding: 14px 26px;
    font-size: 15px;
    width: auto;
  }
}

/* Small mobiles (≤480px) */
@media (max-width: 480px) {
  .industry-solutions-section .industry-solutions-btn {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-size: 14px;
  }
}


.industry-solutions-section .industry-solutions-btn:hover {
  background-color: #4f46e5;
}

.industry-solutions-section .industry-solutions-visual .industry-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-solutions-section .industry-solutions-visual .industry-image-wrapper .industry-main-img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-solutions-section .industry-solutions-visual .industry-image-wrapper:hover .industry-main-img {
  transform: scale(1.05);
}

.industry-solutions-section .industry-solutions-visual .industry-image-wrapper .industry-live-status {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1f2937;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.industry-solutions-section .industry-solutions-visual .industry-image-wrapper .industry-live-status .industry-pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: industry-pulse 2s infinite;
}

@keyframes industry-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/*# sourceMappingURL=style.css.map */

.industry-impact {
  padding: 70px 0;
  background: #fff;

  @media (max-width: 992px) {
    padding: 40px 0;
  }
}

.industry-impact .container {
  width: 100%;
  margin: 0 auto;
}

.industry-impact .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.industry-impact .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.industry-impact .section-header p {
  font-size: 1rem;
  color: #555;
}

.industry-impact .industry-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .industry-impact .industry-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .industry-impact .industry-stats {
    grid-template-columns: repeat(1, 1fr);
  }
}

.industry-impact .industry-stats .stat-box {
  background: #f9fafb;
  padding: 2rem 1rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.industry-impact .industry-stats .stat-box i {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.industry-impact .industry-stats .stat-box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.industry-impact .industry-stats .stat-box p {
  font-size: 0.95rem;
  color: #475569;
}

.industry-impact .industry-stats .stat-box:hover {
  background: var(--salesforce-color);
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
}

.industry-impact .industry-stats .stat-box:hover i,
.industry-impact .industry-stats .stat-box:hover h3,
.industry-impact .industry-stats .stat-box:hover p {
  color: #fff;
}

/*# sourceMappingURL=style.css.map */

.journal-section {
  padding: 100px 0;
  background-color: #ffffff;
  color: #334155;
  font-family: "Inter", sans-serif;
}

.journal-section .journal-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.journal-section .journal-header {
  text-align: center;
  margin-bottom: 60px;
}

.journal-section .journal-header .journal-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.journal-section .journal-header .journal-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .journal-section .journal-header .journal-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 0 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .journal-section .journal-header .journal-filters::-webkit-scrollbar {
    display: none;
  }
}

.journal-section .journal-header .journal-filters .filter-btn {
  background: #f1f5f9;
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-dark);
  white-space: nowrap;
}

.journal-section .journal-header .journal-filters .filter-btn:hover {
  background: #e2e8f0;
}

.journal-section .journal-header .journal-filters .filter-btn.active {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.journal-section .journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}

.journal-section .journal-grid .journal-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.4s ease;
}

.journal-section .journal-grid .journal-card:hover .journal-thumb img {
  transform: scale(1.1);
}

.journal-section .journal-grid .journal-card .journal-thumb {
  height: 240px;
  overflow: hidden;
  background: #f1f5f9;
}

.journal-section .journal-grid .journal-card .journal-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.journal-section .journal-grid .journal-card .journal-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.journal-section .journal-grid .journal-card .journal-body .journal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.journal-section .journal-grid .journal-card .journal-body .journal-meta .badge {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.journal-section .journal-grid .journal-card .journal-body .journal-meta .date {
  font-size: 0.85rem;
  color: #94a3b8;
}

.journal-section .journal-grid .journal-card .journal-body h3.line-clamp-2 {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.journal-section .journal-grid .journal-card .journal-body p.line-clamp-3 {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.journal-section .journal-grid .journal-card .journal-body .journal-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.journal-section .journal-grid .journal-card .journal-body .journal-author .avatar {
  width: 45px;
  height: 45px;
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.journal-section .journal-grid .journal-card .journal-body .journal-author .details .name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  margin: 0;
}

.journal-section .journal-grid .journal-card .journal-body .journal-author .details .time {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0;
}

.journal-section .journal-grid .journal-card .journal-body .journal-author .details .job-role {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.588);
  font-weight: 500;
  margin: 0;
  margin-bottom: 2px;
}

.journal-section .journal-footer-msg {
  margin-top: 80px;
  text-align: center;
}

.journal-section .journal-footer-msg p {
  color: #94a3b8;
  font-style: italic;
  font-size: 1.1rem;
}

.journelTitle {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;

  @media (max-width: 768px) {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .journal-section {
    padding: 50px 0;
  }

  .journal-section .journal-header {
    margin-bottom: 30px;
  }

  .journal-section .journal-header .journal-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .journal-section .journal-container {
    padding: 0 20px;
  }

  .journal-section .journal-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/*# sourceMappingURL=style.css.map */

.services-detailed {
  padding: 70px 0 !important;
  background-color: var(--bg-light);
  font-family: "Inter", sans-serif;

  @media (max-width: 1200px) {
    padding: 80px 0 !important;
  }

  /* Tablets */
  @media (max-width: 992px) {
    padding: 70px 0 !important;
  }

  /* Large mobiles */
  @media (max-width: 768px) {
    padding: 50px 0 !important;
  }

  /* Small mobiles */
  @media (max-width: 480px) {
    padding: 50px 0 !important;
  }
}

.services-detailed .container {
  margin: 0 auto;
}

.services-detailed .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-detailed .section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #202e3b;
  margin-bottom: 16px;
}

.services-detailed .section-header p {
  font-size: 1.125rem;
  color: #667085;
  max-width: 600px;
  margin: 0 auto;
}

.services-detailed .modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.services-detailed .modules-grid .module-card {
  background: #ffffff;
  border: 1px solid #eaecf0;
  padding: 32px 24px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.services-detailed .modules-grid .module-card .icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(113, 75, 103, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-detailed .modules-grid .module-card .icon-wrapper svg {
  width: 28px;
  height: 28px;
  color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-detailed .modules-grid .module-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #202e3b;
  margin-bottom: 8px;
}

.services-detailed .modules-grid .module-card p {
  font-size: 0.95rem;
  color: #667085;
  line-height: 1.5;
  margin: 0;
}

.services-detailed .modules-grid .module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(113, 75, 103, 0.3);
}

.services-detailed .modules-grid .module-card:hover .icon-wrapper {
  background: var(--primary-color);
  transform: rotate(-5deg);
}

.services-detailed .modules-grid .module-card:hover .icon-wrapper svg {
  color: #ffffff;
}

@media (max-width: 768px) {
  .services-detailed {
    padding: 60px 0;
  }

  .services-detailed .section-header h2 {
    font-size: 1.8rem !important;
  }

  .services-detailed .modules-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }
}

/*# sourceMappingURL=style.css.map */

.odoo-services-suite {
  padding: 70px 0;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;


  @media (max-width: 768px) {
    padding: 30px 0;
}
}

.odoo-services-suite .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.odoo-services-suite .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.odoo-services-suite .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.odoo-services-suite .services-grid .service-card {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: #f9fafb;
  border-radius: 24px;
  border: 1px solid #eaecf0;
  transition: all 0.4s ease;
}

.odoo-services-suite .services-grid .service-card .service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.odoo-services-suite .services-grid .service-card .service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary-dark);
}

.odoo-services-suite .services-grid .service-card .service-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #202e3b;
  margin-bottom: 12px;
}

.odoo-services-suite .services-grid .service-card .service-content p {
  font-size: 1rem;
  color: #667085;
  line-height: 1.6;
  margin-bottom: 20px;
}

.odoo-services-suite .services-grid .service-card .service-content .features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.odoo-services-suite .services-grid .service-card .service-content .features-list li {
  font-size: 0.9rem;
  color: #475467;
  position: relative;
  padding-left: 20px;
}

.odoo-services-suite .services-grid .service-card .service-content .features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #017e84;
  font-weight: bold;
}

.odoo-services-suite .services-grid .service-card:hover {
  background: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(113, 75, 103, 0.1);
}

.odoo-services-suite .services-grid .service-card:hover .service-icon {
  background: var(--primary-color);
}

.odoo-services-suite .services-grid .service-card:hover .service-icon svg {
  color: #ffffff;
}

@media (max-width: 992px) {
  .odoo-services-suite .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .odoo-services-suite .service-card {
    flex-direction: column;
    text-align: center;
  }

  .odoo-services-suite .service-card .service-icon {
    margin: 0 auto;
  }

  .odoo-services-suite .service-card .features-list {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/*# sourceMappingURL=style.css.map */

.explore-icons {
  padding: 90px 0;
  background: linear-gradient(180deg, #faf7f9, #ffffff);
}

.explore-icons .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.explore-icons .section-header .title {
  font-size: 34px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.explore-icons .section-header .subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.explore-icons .explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

@media (max-width: 576px) {
  .explore-icons .explore-grid {
    grid-template-columns: 1fr;
  }
}

.explore-icons .explore-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.explore-icons .explore-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #714b67, #a76a8d);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.explore-icons .explore-card>* {
  position: relative;
  z-index: 1;
}

.explore-icons .explore-card .icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: rgba(113, 75, 103, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.explore-icons .explore-card .icon-box i {
  font-size: 28px;
  color: var(--primary-color);
}

.explore-icons .explore-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.explore-icons .explore-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 22px;
  transition: color 0.4s ease;
}

.explore-icons .explore-card a {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.explore-icons .explore-card:hover .icon-box {
  background: var(--primary-dark);
}

.explore-icons .explore-card:hover .icon-box i {
  color: #ffffff;
}

/*# sourceMappingURL=style.css.map */

.features-section {
  padding: 0px 0;
}

@media (max-width: 768px) {
  .features-section {
    padding: 0px 0;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 0px 0;
  }
}

.features-section .container {
  margin: 0 auto;
  padding: 0 16px;
}

.features-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .features-section .section-header {
    margin-bottom: 40px;
  }
}

.features-section .section-header .title {
  font-size: 36px;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .features-section .section-header .title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .features-section .section-header .title {
    font-size: 26px;
  }
}

.features-section .section-header .subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .features-section .section-header .subtitle {
    font-size: 15px;
  }
}

.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .features-section .features-grid {
    gap: 24px;
  }
}

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

@media (max-width: 576px) {
  .features-section .features-grid {
    grid-template-columns: 1fr;
  }
}

.features-section .feature-box {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ddd;
  /* added */
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.features-section .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.1);
}

.features-section .feature-box:hover .feature-image img {
  transform: scale(1.08);
}

.features-section .feature-box .feature-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .features-section .feature-box .feature-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .features-section .feature-box .feature-image {
    height: 180px;
  }
}

.features-section .feature-box .feature-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.features-section .feature-box .feature-content {
  padding: 24px;
  flex: 1;
}

@media (max-width: 480px) {
  .features-section .feature-box .feature-content {
    padding: 20px;
  }
}

.features-section .feature-box .feature-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .features-section .feature-box .feature-content h3 {
    font-size: 18px;
  }
}

.features-section .feature-box .feature-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.65;
}

@media (max-width: 480px) {
  .features-section .feature-box .feature-content p {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */

.industryShowcase {
  padding: 60px 0;

  @media (max-width: 1200px) {
    padding: 80px 0;
  }

  /* Tablets */
  @media (max-width: 992px) {
    padding: 70px 0;
  }

  /* Large mobiles */
  @media (max-width: 768px) {
    padding: 60px 0;
  }

  /* Small mobiles */
  @media (max-width: 480px) {
    padding: 50px 0 30px;
  }
}

.industryShowcase .industryHeader {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.industryShowcase .industryHeader .industryTitle {
  font-size: 40px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.industryShowcase .industryHeader .industrySubtitle {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

.industryShowcase .industryCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.industryShowcase .industryCards .industryItem {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.industryShowcase .industryCards .industryItem:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.12);
}

.industryShowcase .industryCards .industryItem:hover .industryImage img {
  transform: scale(1.08);
}

.industryShowcase .industryCards .industryItem:hover .industryContent a {
  color: #2563eb;
}

.industryShowcase .industryCards .industryItem .industryImage {
  height: 220px;
  overflow: hidden;
}

.industryShowcase .industryCards .industryItem .industryImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industryShowcase .industryCards .industryItem .industryContent {
  padding: 28px;
}

.industryShowcase .industryCards .industryItem .industryContent h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 10px;
}

.industryShowcase .industryCards .industryItem .industryContent p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 18px;
}

.industryShowcase .industryCards .industryItem .industryContent a {
  font-size: 14px;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

@media (max-width: 640px) {
  .industryShowcase .industryHeader {
    margin-bottom: 50px;
  }

  .industryShowcase .industryHeader .industryTitle {
    font-size: 32px;
  }

  .industryShowcase .industryCards {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */