/* Root variables for styling */
:root {
  --color-dark: #050412;
  --light-grey: #e1e1e8;
  --color-text-dark: #2f2f2f;
  --color-text-dark-black: #141414;
  --color-text-muted: #767676;
  --color-white: #ffffff;

  /* Brand gradients */
  --grad-red-purple: linear-gradient(268.3deg, #9747ff -5.05%, #e63c2e 75.54%);
  --grad-purple-pink: linear-gradient(135deg, #9747ff 0%, #e63c2e 100%);
  --grad-pink-red: linear-gradient(135deg, #ff3366 0%, #e63c2e 100%);
  --grad-purple-glow: linear-gradient(135deg, #9747ff, #7000ff);
  --cta-gradient: radial-gradient(
    42.33% 70.51% at 50% 50%,
    rgba(16, 16, 16, 0.93) 0%,
    #141414 100%
  );
  --gradient-theme: linear-gradient(277.75deg, #9747ff 29.69%, #e63c2e 97.02%);
  --shadow-card: 6px 6px 16.9px 0px #00000017;
  --shadow-card-hover: 0px 20px 40px rgba(151, 71, 255, 0.12);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-card: 16px;
}

/* Reset styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text-dark);
  background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

ul {
  list-style: none;
}
section {
  padding-inline: 80px;
  padding-bottom: 120px;
}
@media (max-width: 640px) {
  section {
    padding-bottom: 64px;
	padding-inline: 16px;
  }
}

/* Common Layout Containers */
.container {
  width: 100%;
  max-width: 1280px;
  position: relative;
  z-index: 1;
}

/* Gradient Text Effect */
.gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text.purple-red {
  background-image: var(--grad-red-purple);
}

.gradient-text.purple-pink {
  background-image: var(--grad-purple-pink);
}

.gradient-text.pink-red {
  background-image: var(--grad-pink-red);
}

.gradient-text.red-purple {
  background-image: var(--grad-red-purple);
}

/* Common Section Titles */
.section-title {
  font-size: 52px;
  font-weight: 400;
  line-height: 130%;
  color: #2f2f2f;
  letter-spacing: 0;
}
html[data-theme="dark"] .section-title{
	color:var(--color-white);
}

.section-title.center {
  text-align: center;
}
.line-h-150 {
  line-height: 150% !important;
}
.mb-48{
  margin-bottom:48px;
}
.mt-24{
	margin-top:24px;
}
@media (max-width: 640px) {
  .mt-24{
	margin-top:18px;
   }
}

.section-subtitle {
  font-size: 28px;
  color: var(--color-text-muted);
  font-weight: 400;
  line-height: 180%;
  letter-spacing:0;
  text-align: center;
  margin-top:12px;
  padding-inline:53px;
}
.base-card {
  padding: 24px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  transition: var(--transition-smooth);
  border-radius: 16px;
  border-block: 1px;
}
.base-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(151, 71, 255, 0.15);
}

/* MOBILE VIEW (max-width: 640px) */
@media (max-width: 640px) {
  .section-title {
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0;
  }
  .section-title.mb-12 {
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 18px;
	margin-top:8px;
	padding-inline:0;
  }
  .base-card {
    padding: 18px 20px;
  }
}

/* Hide by default (mobile first) */
.desktop-only {
  display: none;
}

/* Show only on desktop */
@media (min-width: 1024px) {
  .desktop-only {
    display: inline;
  }
}

/* Show by default (mobile first) */
.mobile-only {
  display: inline;
}

/* Hide on desktop */
@media (min-width: 1024px) {
  .mobile-only {
    display: none;
  }
}


/* ==========================================================================
   Section One 
   ========================================================================== */

.hero {
  position: relative;
  display:flex;
  justify-content:center;
  width: 100%;
  height: 830px;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: 0;
  margin-top:80px;
  margin-bottom: 120px;
  
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  z-index: 1;
  transition: background-position 0.4s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 4, 18, 0.85) 0%,
    rgba(5, 4, 18, 0.55) 45%,
    rgba(5, 4, 18, 0.1) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
	max-width:1280px;
}

.hero-title {
  font-size: 48px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 130%;
  letter-spacing: -2px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 24px;
  border-radius: 9999px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0;
  color: var(--color-white);
  background: var(--grad-red-purple);
  box-shadow: 0 4px 28px rgba(151, 71, 255, 0.35);
  transition: var(--transition-smooth);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(151, 71, 255, 0.5);
}
@media (max-width: 1024px) {
  .hero-title {
    font-size: 46px;
  }
}
@media (max-width: 640px) {
  .hero {
    height: 100vh;
    max-height: 650px;
    margin-bottom: 64px;
  }

  .hero-bg-img {
    background-position: center;
  }

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

  .hero-title {
    font-size: 34px;
    line-height: 1.3;
	text-align:left;
  }

  .hero-btn {
    justify-content: center;
    font-size: 14px;
    padding: 14px 24px;
  }
}

/* ==========================================================================
   Section Two
   ========================================================================== */

.business-alignment {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
}

.alignment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top:48px;
}

.base-card.business-card {
  min-height: 225px;
}

.base-card .business-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0;
  color: var(--color-text-dark);
}
html[data-theme="dark"] .base-card .business-title{
	color:var(--color-white)
}
.base-card .business-text{
	margin-top:16px;
	font-size:16px;
	font-weight:400;
	line-height:130%;
	letter-spacing:0;
	color:var(--color-text-muted);
}
.card-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px 0 12px 0;
  background: var(--grad-red-purple);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
@media (max-width: 1024px) {
  .alignment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .alignment-grid {
    grid-template-columns: 1fr;
    padding: 0;
	margin-top:24px;
  }

  .base-card.business-card {
    min-height: 123px;
  }

  .base-card .business-title {
    font-size: 18px;
  }
  .card-btn{
	border-radius: 4px 0 4px 0;
  }
}

/* ==========================================================================
   Section Three
   ========================================================================== */

.proof-value {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top:48px;
}

.base-card.stat-card {
  padding: 24px;
  transition: var(--transition-smooth);
  overflow: hidden;
  min-height: 215px;
}

.stat-number {
  font-size: 40px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
}

.stat-desc {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-text-muted);
  line-height: 150%;
}

/* Special fourth card styling with corner accent */
/* .stat-card.has-accent {
  border-color: rgba(151, 71, 255, 0.3);
}

.corner-accent {
  border-radius: 16px;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--grad-purple-pink);
  clip-path: path(
    "M 25 0 L 44 0 A 16 16 0 0 1 60 16 L 60 25 A 4 4 0 0 1 52 25 L 52 16 A 8 8 0 0 0 44 8 L 25 8 A 4 4 0 0 1 25 0 Z"
  );
} */
.stat-card.has-accent {
  border-color: rgba(151, 71, 255, 0.3);
  position: relative; /* Ensures absolute positioning works correctly */
}
/* Dynamically inject the corner accent shape using ::after */
.stat-card.has-accent::after {
  content: "";
  border-radius: 16px;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--grad-purple-pink);
  clip-path: path(
    "M 25 0 L 44 0 A 16 16 0 0 1 60 16 L 60 25 A 4 4 0 0 1 52 25 L 52 16 A 8 8 0 0 0 44 8 L 25 8 A 4 4 0 0 1 25 0 Z"
  );
  pointer-events: none; /* Allows clicks to pass through if necessary */
}
@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stat-card {
    padding: 30px 24px;
  }
  .base-card.stat-card {
    min-height: 144px;
    padding: 18px;
  }

  .stat-number {
    font-size: 24px;
  }
  .stat-desc {
    font-size: 14px;
  }
}

/* ==========================================================================
     Section Four
   ========================================================================== */

.ai-services {
  position:relative;
  display: flex;
  justify-content: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 24px 32px;
}

.service-card {
  padding: 16px 24px;
  transition: var(--transition-smooth);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}
html[data-theme="dark"] .service-icon-wrapper svg image{
	filter: brightness(0) invert(1);
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.35);
}

.service-title {
  font-size: 18px;
  font-weight: 500;
  line-height:120%;
  color: var(--color-text-dark-black);
  margin-bottom: 12px;
  letter-spacing: 0;
}
html[data-theme="dark"] .service-title{
	color:var(--color-white);
}

.service-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 160%;
  letter-spacing:0;
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    padding: 24px 20px;
  }
  .service-card {
    padding: 12px 0;
  }
  .service-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .service-text {
	font-size:14px;
  }
}

/* ==========================================================================
   Section Five
   ========================================================================== */
.step-timeline {
  display: flex;
  justify-content: center;
}

.timeline-container {
  display: flex;
  align-items: flex-start;
  gap: 74px;
  margin-top: 64px;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 196px;
  min-height:196px;
}

.step-num {
  font-size: 72px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
}

.step-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--color-text-dark);
}
html[data-theme="dark"] .step-title{
	color:var(--color-white);
}
.step-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 150%;
  letter-spacing: 0;
}

.timeline-arrow {
  position: absolute;
  top: 23px;
  left: 110px;
  width: 120.79296875px;
  height: 26.17776870727539px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.arrow-svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .timeline-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
  }
  .timeline-step {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    padding-right: 100px;
  }

  .timeline-arrow {
    display: flex;
    position: absolute;
    top: 90px;
    right: 0px;
    left: auto;
    transform: rotate(90deg);
    transform-origin: center;
  }
  .step-num {
    font-size: 42px;
  }
  .step-title {
    font-size: 22px;
  }
  .step-text {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .timeline-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 24px;
  }

  .timeline-step {
    min-height:170px;
  }
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */
.cta-card {
  padding: 50px 24px;
  border-radius: 20px;
}
.cta-about-new{
	position:relative;
}
.cta-about-new .career-container {
  width: 100%;
}

.cta-title {
  font-size: 28px;
}

.cta-text {
  font-size: 15px;
}

.cta-btn {
  width: 100%;
  justify-content: center;
}

.cta-about-new .career-container {
  display: block;
  margin: 0 auto;
  max-width:1280px;
}

.cta-about-new .career-banner {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: var(--cta-gradient);
  padding: 48px 24px;
  text-align: center;
  background-image: url("/wp-content/uploads/2026/01/cta-dotted-bg.webp");
  background-repeat: repeat;
  background-size: auto;
  background-position: top left;
}

/* @media (min-width: 768px) and (max-width: 1023px) {
  .cta-about-new .career-banner {
    padding: 2.7rem;
  }
} */
.banner-content{
	max-width:1013px;
	margin:0 auto;
}

.cta-about-new .banner-title {
  font-size: 52px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 130%;
  margin-top: 0;

}
.cta-about-new .banner-subtitle {
  font-size: 28px;
  font-weight: 400;
  color: var(--color-white);
  margin-top: 12px;
  line-height: 150%;
}

@media (max-width: 1200px) {
  .cta-about-new .banner-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .cta-about-new .banner-title {
    font-size: 35px;
  }
}

@media (max-width: 640px) {
  .cta-about-new .career-banner {
    padding: 24px 18px;
  }
  .cta-about-new .banner-title {
    font-size: 32px;
  }
  .cta-about-new .banner-subtitle {
    font-size: 18px;
	margin-top: 8px;
  }
  .gradiant-bg-btn {
    padding: 10px 24px;
  }
  .cta-about-new .btn-wrap {
    font-size: 14px;
  }
  .btn-area.has-subtitle {
    margin-top: 24px !important;
  }
  .btn-area.no-subtitle {
    margin-top: 20px !important;
  }
  .gradiant-bg-btn{
	padding:10px 18px !important;
  }
	
}

.cta-about-new .highlight {
  background: var(--gradient-theme);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cta-about-new .btn-area {
  display: flex;
  justify-content: center;
}
.btn-area.has-subtitle {
    margin-top: 48px;
}

.btn-area.no-subtitle {
    margin-top: 32px;
}

.cta-about-new .btn-wrap {
  min-width: fit-content;
  border: none;
  text-decoration: none;
}
.gradiant-bg-btn {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(268.3deg, #9747ff -5.05%, #e63c2e 75.54%);
  padding: 8px 24px;
  border-radius: 100px;
  box-shadow: 0 11px 29px 0 #ff0a0a2e;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  color: var(--color-white);
  outline: 0;
  border: none;
  z-index: 1;
  cursor: pointer;
  transition: 0.4s;
  overflow: hidden;
  text-decoration: none;
}

/* ==========================================================================
   Carousel downward Section
   ========================================================================== */

.services-section-container {
  max-width: 1280px;
  margin:0 auto;
  position: relative;
  min-height: 350vh; /* Keeps the page long enough for scroll interaction */
}

/* On narrow screens remove the outer padding so the full width is usable */
@media (max-width: 640px) {
  .desktop-sticky{
	max-height:545px;	
  }
  .services-section-container {
    padding-inline: 16px;
  }
  .services-list-desktop{
	flex:none !important;	
  }
}

.services-section-container.mobile {
  min-height: 350vh;
}

.desktop-sticky {
  position: sticky;
  top: 70px; /* Offset for the floating demo header */
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.services-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* centre children (incl. image) in column layout */
  justify-content: center;
  gap: 48px;
  max-width: 1440px;
  width: 100%;
  min-width: 0; /* prevent flex blowout */
  box-sizing: border-box;
  overflow: hidden; /* hard clip — nothing escapes this box */
  min-height: 545px; /* Mobile min-height */
}

@media (min-width: 1024px) {
  .services-main-content {
    flex-direction: row;
    align-items: center;
    min-height: 442px; /* Desktop min-height */
  }
}

/* Highlighted Gradient Text */
.gradient-text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.gradient-text.purple-pink {
  background-image: var(--grad-purple-pink);
}

/* Mobile-only Layout */
.services-mobile-layout {
  width: 100%;
}

.services-mobile-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-mobile-header h1 {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--light-black);
}

html[data-theme="dark"] .services-mobile-header h1 {
  color: var(--dark-theme-white);
}

@media (min-width: 1024px) {
  .services-mobile-header h1 {
    font-size: 2.75rem;
  }
}

.services-accordion {
  width: 100%;
}

.services-accordion-item {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

html[data-theme="dark"] .services-accordion-item {
  border-bottom: 1px solid var(--border-dark);
}

.services-accordion-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.services-accordion-button {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  cursor: pointer;
  min-height: 48px;
}

.services-accordion-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--light-black);
  transition: color 0.3s;
}

html[data-theme="dark"] .services-accordion-title {
  color: var(--dark-theme-white);
}

.services-accordion-caret {
  transform: rotate(270deg);
  font-size: 1.5rem;
  display: flex;
  color: var(--light-black);
  transition:
    transform 0.4s ease,
    color 0.3s;
}

html[data-theme="dark"] .services-accordion-caret {
  color: var(--dark-theme-white);
}

.services-accordion-item.open .services-accordion-caret {
  transform: rotate(90deg);
}

.services-accordion-panel {
  display: none;
  padding-top: 20px;
}

.services-accordion-item.open .services-accordion-panel {
  display: block;
}

.services-accordion-panel .service-description {
  color: var(--text-muted-light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 1rem;
}

html[data-theme="dark"] .services-accordion-panel .service-description {
  color: var(--text-muted-dark);
}

/* Black Background Placeholder for Mobile accordion panel visuals */
.services-visual-placeholder {
  width: 100%;
  height: 250px;
  background-color: #000000;
  border-radius: 16px;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

/* Glowing accent lines for the black block */
.services-visual-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.15) 0%,
    transparent 50%,
    rgba(239, 68, 68, 0.1) 100%
  );
  pointer-events: none;
}

/* Desktop-only Layout Toggles (Not needed since layout is shared) */
.services-desktop-contents {
  display: contents;
}

/* Desktop Image (Visual Block) Container */
.services-image-container-desktop {
  position: relative;
  width: 100%;
  max-width: 586px;
  aspect-ratio: 586 / 352;
  flex-shrink: 1;
  min-width: 0; /* allow flex shrinking below intrinsic size */
  margin: 0 auto;
}

/* Below 747px: image is fluid, centred, and fully contained */
@media (max-width: 747px) {
  .services-image-container-desktop {
    width: 100%; /* fill available width (after parent padding) */
    margin: 0 auto; /* centre horizontally */
    /* aspect-ratio is already set above — height scales proportionally */
  }
}

.services-image-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.services-image-item.active {
  opacity: 1;
  pointer-events: auto;
}

/* Visual Placeholder fills its parent image item fully */
.services-image-item img {
  width: 100%;
  height: auto;
  border-radius: 35px;
}

@media (min-width: 640px) {
  .services-image-item .services-visual-placeholder {
    font-size: 1.5rem;
  }
}

/* Vertical Progress Bar */
.services-progress-container-desktop {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20rem;
}

.services-progress-bar-desktop {
  width: 4px;
  height: 16rem;
  background-color: var(--border-light);
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
}

html[data-theme="dark"] .services-progress-bar-desktop {
  background-color: var(--border-dark);
}

.services-progress-fill-desktop {
  width: 100%;
  background: var(--gradient-theme);
  border-radius: 9999px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: height 0.1s linear;
}

/* Services Scroll List on the Right */
.services-list-desktop {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.border-right-black {
  border-right: none;
}
html[data-theme="dark"] .border-right-black {
  border-right: 2px solid var(--color-white);
}

@media (min-width: 1024px) {
  .services-list-desktop {
    gap: 48px;
  }
  .border-right-black {
    border-right: 2px solid black;
  }
}

.section-title-large {
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-text-dark);
  letter-spacing: 0;
}

html[data-theme="dark"] .section-title-large {
  color: var(--dark-theme-white);
}

@media (min-width: 1024px) {
  .section-title-large {
    font-size: 52px;
  }
}

.services-text-wrapper-desktop {
  position: relative;
  width: 100%;
  height: 160px; /* Compact height on mobile since text size is smaller */
}

@media (min-width: 1024px) {
  .services-text-wrapper-desktop {
    height: 280px;
  }
}

.services-item-desktop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.services-item-desktop.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.industry-name {
  font-size: 22px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .industry-name {
    font-size: 32px;
  }
}
html[data-theme="dark"] .industry-name {
  color: var(--color-white);
}

.industry-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 15px;
}

.industry-list li {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 180%;
  color: var(--color-text-muted);
  position: relative;
  padding-left: 20px;
}

.industry-list li.active {
  opacity: 1;
}

/* ==========================================================================
    Five Box layout Section
   ========================================================================== */
.why-arimac {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
}

/* .why-arimac .titles {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 24px;
} */

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top:48px;
}

.base-card.why-card {
  min-height: 225px;
  padding:24px;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(230, 60, 46, 0.15);
}

.why-card-title {
  font-size: 24px;
  font-weight: 400;
  line-height:130%;
  letter-spacing:0;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}
html[data-theme="dark"] .why-card-title{
	color:var(--color-white);
}

.why-card-text {
  font-size: 16px;
  font-weight:400;
  color: var(--color-text-muted);
  line-height: 130%;
  letter-spacing:0;
  flex-grow: 1;
}

.why-card-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--grad-red-purple);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  opacity: 0.8;
}

.why-card:hover .why-card-btn {
  opacity: 1;
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
	margin-top:24px;
  }

  .why-card {
    min-height: 123px !important;
    padding: 18px 20px;
  }
  
  .why-card-title{
	font-size:16px;
    margin-bottom:8px;	
  }
   
  .why-card-text{
	font-size:14px;
	
  }

}

/* ==========================================================================
	Three column layout Section  
	Colored Title List 
   ========================================================================== */
.complexity {
  position: relative;
  text-align: center;
}

/* .complexity .titles {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 24px;
} */

.complexity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  margin-top:32px;
}

.complexity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align:center;
  padding-block: 24px;
  height: 207px;
  min-width:155px;
  border-radius:16px;
}

.complexity-name {
  font-size: 64px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0;
}

.complexity-desc {
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--color-text-muted);
}
@media (max-width: 1024px) {
  .complexity-grid {
     grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .complexity-grid {
    grid-template-columns: 1fr;
	margin-top:24px;
  }

  .complexity-card {
	height:auto;
	min-height:107px;
    min-width:218px;
    padding-block: 18px;
  }
  .complexity-name {
    font-size: 36px;
  }
  .complexity-desc {
    font-size: 16px;
  }
}


/* ==========================================================================
	Background image with text layout Section  
   ========================================================================== */


.get-free-cloud {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 120px;
}

.free-cloud-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.free-cloud-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:linear-gradient(
    to right,
    rgba(0, 0, 0, 0.966) 0%,
    rgba(0, 0, 0, 0.8) 25%,
    rgba(0, 0, 0, 0.6) 45%,
    rgba(0, 0, 0, 0.4) 65%
  );
}

.free-cloud-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.free-cloud-text {
  flex: 1;
  min-width: 0;
}

.free-cloud-title {
  font-size: 52px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 130%;
  letter-spacing: 0;
}

.free-cloud-desc {
  font-size: 22px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 180%;
  letter-spacing: 0;
  margin-top:12px;
  margin-bottom: 12px;
}
.free-cloud-list {
  display:flex;
  flex-direction:column;
  list-style-type: disc;
  color: var(--color-white);
  padding-left: 20px;
}
.free-cloud-list li{
  font-size: 22px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0;
}
.free-cloud-list br {
  display: none;
}

.free-cloud-cta {
  flex-shrink: 0;
}

.free-cloud-btn {
  white-space: nowrap;
  padding: 12px 32px !important;
}

@media (max-width: 900px) {
  .free-cloud-content {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .free-cloud-title {
    font-size: 36px;
  }

}

@media (max-width: 640px) {
  .get-free-cloud {
    padding-block: 44px;
    min-height: auto;
    margin-bottom: 64px;
  }

  .free-cloud-title {
    font-size: 32px;
    width: fit-content;
  }

  .free-cloud-desc {
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .free-cloud-list li {
    font-size: 16px;
  }
  .free-cloud-btn{
	font-size:14px;
	padding:8px 20px !important;	
  }
}


/* ==========================================================================
	Single image with_button layout Section  
   ========================================================================== */
.chart {
  width: 100%;
  min-height: 800px;
  margin-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.chart-bg-img {
  width: 100%;
  flex: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.chart-bg-img-dark{
	display:none;
}
html[data-theme="dark"] .chart-bg-img {
	display:none;
}
html[data-theme="dark"] .chart-bg-img-dark{
	display:block;
	  width: 100%;
  flex: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 1024px) {
  .chart {
    min-height: 500px;
  }
}
@media (max-width: 640px) {
  .chart {
    min-height: 300px;
    margin-bottom: 64px;
  }
}


/* ==========================================================================
   two column layout Section
   ========================================================================== */
.success-stories {
  display: flex;
  justify-content: center;
  padding-bottom: 120px;
}

.success-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  width: 100%;
}

.success-titles {
  display: flex;
  flex-direction: column;
}

.success-tag {
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
  letter-spacing: 0;
}
.success-section-title{
	font-size:52px;
	font-weight:400;
	line-height:150%;
	letter-spacing:0;
	color:var(--color-text-dark)
}
html[data-theme="dark"] .success-section-title{
	color:var(--color-white);
}
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid transparent;
  background-image: linear-gradient(var(--color-white), var(--color-white)), var(--grad-purple-pink);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  font-size: 16px;
  line-height: 200%;
  font-weight: 500;
  color: var(--color-text-dark);
  transition: var(--transition-smooth);
  width: fit-content;
}
.btn-read-more span {
  background: var(--grad-purple-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-read-more:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.success-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
  min-width: 320px;
}

.success-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(151, 71, 255, 0.15);
}

.success-img-wrapper {
  width: 100%;
  height: 306px;
  overflow: hidden;
  position: relative;
}

.success-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.success-card:hover .success-img-wrapper img {
  transform: scale(1.05);
}

.success-card-content {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.success-card-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--color-text-dark-black);
}
html[data-theme="dark"] .success-card-title{
	color:var(--color-white);
}

.success-card-text {
  font-size: 16px;
  font-weight:400;
  color: var(--color-text-muted);
  line-height: 180%;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: max-height 0.3s ease;
}

.success-card-text.expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}
.success-card-content .btn-read-more {
  margin-top: auto;
}

/* Tablet and Mobile media queries for success stories */
@media (max-width: 1024px) {
/*   .success-img-wrapper {
    height: 280px;
  } */
  .success-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .success-stories{
    padding-bottom: 64px;
  }
  .success-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px;
  }
  .success-section-title{
	font-size:32px;
	line-height:130%;
  }
  .btn-read-more {
    font-size: 14px;
    padding:10px 16px;
    gap: 8px;
    justify-content: center;
  }
  .success-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
/*   .success-img-wrapper {
    height: 240px;
  } */
  .success-card-content {
    padding:18px 20px;
    gap: 12px;
  }
  .success-card-title {
    font-size: 18px;
    margin-bottom: 0;
  }
  .success-card-text{
    font-size: 14px;
    line-height: 180%;
    line-clamp: 4;
    -webkit-line-clamp: 4;
  }
  .success-tag{
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 10px;
  }
}
.mobile-break {
  display: none;
}
@media (max-width: 425px) {
/* 	.success-section-title{
		overflow-wrap:anywhere;
	} */
	  .mobile-break {
    display: block;
  }
}
@media (max-width: 375px) {
  .success-card{
    min-width: auto;
  }
}
