:root {
    --primary-dark: #171738;
    --primary-purple: #533DA4;
    --accent-pink: #A598F6;
    --accent-green: #7775B6;
    --text-white: #FFFFFF;
}
/* Hero Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Slide Styles */
  .slide {
    position: absolute;
    
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
  }
  
  .slide.active {
    /*padding-top: 50px;*/
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }
  
  .slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.4);
    transition: transform 10s ease-in-out;
    z-index: 0;
  }
  
  .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(23, 23, 56, 0.7);
    z-index: 1;
  }
  
  .slide.active .slide-bg {
    transform: scale(1);
  }
  
  /* Content Styles */
  .content-wrapper {
    width: 50%;
    padding: 0 5%;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.5s;
    position: relative;
    z-index: 2;
  }
  
  .slide.active .content-wrapper {
    opacity: 1;
    transform: translateY(0);
  }
  
  .slide-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
  }
  
  .slide-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
  }
  
  /* Stats Section */
  .stats {
    margin-bottom: 2rem;
  }
  
  .stat-item {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  /* Button Styles */
  .hero-slider-btn {
    position: relative;
    z-index: 3;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: var(--purple-900);
    background-color: var(--white);
    border: 2px solid var(--white);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0;
  }
  
  .hero-slider-btn:hover {
    background-color: var(--purple-900);
    border-color: var(--purple-900);
    color: var(--white);
  }
  
  .hero-slider-btn:active {
    background-color: var(--purple-800);
    border-color: var(--purple-800);
    transform: translateY(1px);
  }
  
  .hero-slider-btn.outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
  }
  
  .hero-slider-btn.outline:hover {
    background-color: var(--purple-900);
    border-color: var(--purple-900);
    color: var(--white);
  }
  
  /* Navigation Styles */
  .slider-nav {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    z-index: 3;
  }
  @media (max-width: 768px) {
    .slider-nav{
      width: 90%;
      margin: 0 auto;
    }
  }
  .nav-item {
    text-align: center;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
  }
  
  .nav-item.active {
    opacity: 1;
  }
  
  .nav-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    color: white;
    margin-bottom: 0.5rem;
  }
  
  .nav-bar {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
  }
  
  .nav-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #533DA4;
    transition: width 0.3s;
  }
  
  .nav-item.active .nav-bar::after {
    width: 100%;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .content-wrapper {
        width: 90%;
        padding: 0 5%;
        text-align: center;
        margin: 0 auto;
    }
  
    .slide-title {
        font-size: 2rem;
    }
  
    .slide-description {
        font-size: 1rem;
    }
  
    .hero-slider-btn {
      padding: 0.5rem 1rem;
      font-size: var(--text-xs);
      margin-bottom: 1rem;
      width: 70%;
    }
  
    .nav-title {
        font-size: 0.875rem;
    }
  }
  
  
  /* Services Section */
  
  .services {
    background: var(--neutral-400);
    padding: 8rem 0;
    min-height: auto;
    position: relative;
    overflow: hidden;
  }
  .cta-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 0.9rem;
    padding: 25px 0 0;
}
  .services-title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 5rem;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  }
  
  .service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  }
  
  .service-card {
  background: #f8f9ff;
  
  padding: 3rem;
  position: relative;
  opacity: 0;
  transform: translateX(-100px);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(83, 61, 164, 0.1);
  transform: translateX(-100px);
  opacity: 0;
  }
  
  .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(83, 61, 164, 0.1);
  }
  
  .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;  /* Adjusted for the circle-cut image */
  height: 200px;  /* Adjusted for the circle-cut image */
  background-image: url('/assets/images/brand/circle-cut.png');
  background-size: cover;
  background-position: top right;
  border-radius: 0 24px 0 0;
  opacity: 0.1;  /* Adjust opacity as needed */
  }
  
  
  .service-title {
  font-size: 2rem;
  color: #2D3958;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  }
  
  .service-description {
  color: #6E7CA0;
  margin-bottom: 2rem;
  line-height: 1.6;
  }
  
  .service-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  }
  
  .topic-tag {
  padding: 0.5rem 1rem;
  background: rgba(83, 61, 164, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  }
  
  .service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin: 1.5rem 0;
  }
  
  @media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .services-title {
    font-size: 2.5rem;
    padding: 0 2rem;
  }
  }
  
  
  /*  Stats Section */
  
  .stats-section {
  min-height: 600px;
  background: #171738;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
  font-family: 'Inter Tight', sans-serif;
  overflow: hidden;
  }
  
  
  
  .stats-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  
  }
  
  .stats-container .section-title {
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  position: relative;
  z-index: 2;
  }
  
  .section-title h2 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #B8A8E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  
  .section-title p {
  text-align: center !important; 
  font-size: 1.1rem;
  color: rgb(255, 255, 255);
  max-width: 600px;
  margin: 0 auto;
  }
  
  /* Background Effects */
  .stats-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  }
  
  .stats-bg::before,
  .stats-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  
  background: var(--primary);
  filter: blur(80px);
  animation: bgMove 15s infinite alternate ease-in-out;
  }
  
  .stats-bg::before {
  top: -200px;
  right: -100px;
  animation-delay: -5s;
  }
  
  .stats-bg::after {
  bottom: -200px;
  left: -100px;
  }
  
  @keyframes bgMove {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.2); }
  100% { transform: translate(-50px, -50px) scale(1); }
  }
  
  .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  perspective: 1000px;
  }
  
  /* Enhanced Glass Morphism Cards */
  .stat-card {
  background: var(--purple-400);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  
  padding: 40px 30px;
  text-align: center;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  overflow: hidden;
  }
  
  .stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%, 
    rgba(255, 255, 255, 0.1), 
    transparent 70%
  );
  
  z-index: 1;
  }
  
  .stat-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  transform: rotate(30deg);
  pointer-events: none;
  }
  
  .stat-content {
  position: relative;
  z-index: 2;
  }
  
  .stat-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: rgba(83, 61, 164, 0.5);
  
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  }
  
  .stat-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  }
  
  .growth-stat-number {
  font-size: 4rem;
  font-weight: 600;
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* margin: 20px 0; */
  position: relative;
  display: inline-block; 
  }
  
  
  /* Add the + prefix */
  .growth-stat-number::after {
  content: '+';
  position: absolute;
  font-size: 2.5rem; /* Slightly smaller than the number */
  right: -25px; /* Adjust based on your preference */
  top: 0;
  background: inherit; /* Inherit the gradient from parent */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  
  .stat-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  /* margin-top: 10px; */
  position: relative;
  }
  
  /* Particles */
  .particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  }
  
  .arrow {
  position: absolute;
  pointer-events: none;
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .section-title h2 {
    font-size: 3rem;
  }
  }
  
  @media (max-width: 768px) {
  .stats-section {
    min-height: auto;
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
  }
  
  .section-title p {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .stat-card {
    padding: 30px;
  }
  
  .growth-stat-number {
    font-size: 3rem;
  }
  
  .stat-number::after {
    font-size: 2rem;
    right: -20px;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  }
  
  
  
  
  /* ////////////////////////////// */
  /* Modules Section */
  /* ////////////////////////////// */
  
  .modules-section {
  background-color: var(--white);
  min-height: 100vh;
  overflow: hidden;
  }
  
  .modules-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: flex;
  justify-content: space-between;
  }
  
  .left-content {
  width: 30%;
  position: sticky;
  top: 6rem;
  height: fit-content;
  }
  
  .left-content h2 {
  font-size: var(--text-xl);
  color: var(--navy-900);
  margin-bottom: 2rem;
  line-height: 1.1;
  }
  
  .left-content p {
  font-size: var(--text-lg);
  color: var(--navy-600);
  margin-bottom: 1rem;
  }
  
  .progress-bar {
  margin-top: 4rem;
  background: rgba(23, 23, 56, 0.1);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  }
  
  .checkmark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.3s ease;
  }
  
  .checkmark.active {
  background: var(--navy-900);
  color: white;
  }
  
  .module-items {
  width: 60%;
  position: relative;
  height: 70vh;
  /* Add this to create a 3D space for stacking */
  perspective: 1000px;
  overflow: hidden;
  }
  
  .module-card {
  background: var(--navy-900);
  padding: 3rem;
  position: absolute; /* Change to absolute positioning */
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100px);
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  min-height: 250px;
  /* Add these for proper stacking */
  transform-origin: top center;
  will-change: transform, opacity;
  }
  
  .module-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  }
  
  .module-content p {
  color: var(--neutral-400);
  font-size: var(--text-lg);
  line-height: 1.6;
  }
  
  .module-image {
  display: flex;
  justify-content: center;
  align-items: center;
  }
  
  .module-image img {
  max-width: 100%;
  height: auto;
  }
  
  /* Progressive background colors */
  .module-card:nth-child(1) { background-color: var(--navy-900); }
  .module-card:nth-child(2) { background-color: var(--navy-800); }
  .module-card:nth-child(3) { background-color: var(--navy-700); }
  .module-card:nth-child(4) { background-color: var(--navy-600); }
  .module-card:nth-child(5) { background-color: var(--navy-500); }
  .module-card:nth-child(6) { background-color: var(--navy-400); }
  
  @media (max-width: 1024px) {
  .modules-container {
    flex-direction: column;
  }
  
  .left-content {
    width: 100%;
    position: relative;
    top: 0;
    margin-bottom: 4rem;
  }
  
  .module-items {
    width: 100%;
  }
  
  .module-card {
    grid-template-columns: 1fr;
  }
  }
  
  
  
  
  
  /* //////////////////////////////// */
  /* Delivery Section */
  /* ////////////////////////////////// */
  
  
  
  .delivery-approach {
   
  background: var(--purple-900); /* Added background image */
  background-size: contain; /* Changed from #151922 to match brand dark purple */
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
  }

  .floatleft{

    position: absolute;
    /* transform: translate(-50%, -50%); */
    width: 300px;
    top: 0;
    right: 0;
  }
  
  .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  }
  
  .section-header {
  text-align: left; /* Changed to left align per brand guidelines */
  margin-bottom: 4rem;
  }
  
  .section-header h2 {
  color: var(--white);
  font-size: var(--text-xl); /* Using the 1.333 scale */
  margin-bottom: 1rem;
  font-weight: 600; /* Semi-bold per guidelines */
  font-family: 'Inter Tight', sans-serif;
  }
  
  .section-header p {
  color: rgba(255, 255, 255, 0.8); /* Slightly transparent white for better contrast */
  font-size: var(--text-base);
  /* max-width: 600px; */
  margin: 0; /* Removed auto margins for left alignment */
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400; /* Regular weight */
  }
  
  .delivery-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  }
  
  .step-card {
  background: var(--white); /* Lighter shade of navy from brand palette */
  border-radius: 0;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transform: translateX(-100%);
  opacity: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(83, 61, 164, 0.1); /* Subtle purple border */
  }
  
  .step-number {
  background: var(--primary); /* Changed to brand primary purple */
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600; /* Semi-bold per guidelines */
  margin-bottom: 1.5rem;
  font-family: 'Inter Tight', sans-serif;
  }
  
  .step-title {
  color: var(--dark-purple);
  font-size: var(--text-lg);
  margin-bottom: 1rem;
  font-weight: 500; /* Medium weight per guidelines */
  font-family: 'Inter Tight', sans-serif;
  text-align: left;
  }
  
  .step-description {
  color:var(--neutral-900);
  line-height: 1.6;
  font-size: var(--text-sm);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400; /* Regular weight */
  text-align: left;
  }
  
  .brand-element {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 100px;
  height: 100px;
  opacity: 1;
  z-index: -1;
  }
  
  .brand-element circle {
  fill: var(--primary); /* Changed to brand primary purple */
  }
  
  @media (max-width: 1200px) {
  .delivery-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  }
  
  @media (max-width: 768px) {
  .delivery-steps {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: var(--text-xl); /* Smaller heading for mobile */
  }
  }
  
  
  /* ////////////////////////////// */
  /* Case Studies */
  /* ////////////////////////////// */
  /* Swiper Specific Styles */
  .success-stories {
    padding: 120px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.success-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(131, 71, 230, 0.05), rgba(46, 255, 168, 0.05));
    z-index: 1;
}

.success-stories-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-green);
}
.swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    width: 100%;
    height: auto;
}

.swiper-button-prev,
.swiper-button-next {
    
    display: none;
    
}

/* Case Study Card Styles */
.case-study-card {
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.card-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    height: 100%;
}

.case-study-content {
    padding: 3rem;
}

.company-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.company-logo {
    width: 48px;
    height: 48px;
    background: #171738;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.industry-tag {
    padding: 0.5rem 1rem;
    background: rgba(131, 71, 230, 0.1);
    color: var(--primary-purple);
    font-size: 0.875rem;
    font-weight: 500;
}

.case-study-content h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.challenge-section,
.solution-section {
    margin-bottom: 2rem;
}

.challenge-section h4,
.solution-section h4 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.challenge-section p,
.solution-section p {
    color: rgba(43, 38, 86, 0.8);
    line-height: 1.6;
}

.solution-list {
    list-style: none;
    padding: 0;
}

.solution-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(43, 38, 86, 0.8);
}

.solution-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: rgba(43, 38, 86, 0.8);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(131, 71, 230, 0.05);
    transition: transform 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--primary-dark);
    line-height: 1.4;
}

.case-study-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.case-study-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(131, 71, 230, 0.4); /* Purple overlay with 40% opacity */
    /* Alternative gradient overlay: */
    /* background: linear-gradient(45deg, rgba(131, 71, 230, 0.6), rgba(131, 71, 230, 0.3)); */
    z-index: 1;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Swiper Navigation Styles */
.swiper-button-prev,
.swiper-button-next {
    color: var(--primary-dark);
}

.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(43, 38, 86, 0.2);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: rgba(43, 38, 86, 0.8);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .card-inner {
        grid-template-columns: 1fr;
    }
    .case-study-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .case-study-content {
        padding: 2rem;
    }
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

  
  


  /* //////////////////////////////////////////////////// */
/* Testimonials Section */
/* ////////////////////////////////////////// */

/* Testimonials Section Styles */
.testimonials {
  position: relative;
  padding: 6rem 2rem;
  background: var(--primary);
  overflow: hidden;
  color: white;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.bg-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}

.bg-circle-2 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: -50px;
}

.bg-circle-3 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 30%;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
}

.testimonials-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonial-cards {
  position: relative;
  min-height: 300px; /* Adjust based on content */
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.testimonial-content {
  padding: 2rem;
  color: #333;
}

.quote-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.875rem;
  color: #666;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-button:hover {
  background: var(--primary);
  color: white;
}

.nav-button.prev {
  left: 0;
}

.nav-button.next {
  right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials {
      padding: 4rem 1rem;
  }

  .section-title {
      font-size: 2rem;
  }

  .testimonial-text {
      font-size: 1rem;
  }

  .testimonials-wrapper {
      padding: 0 50px;
  }
}

@media (max-width: 480px) {
  .section-title {
      font-size: 1.75rem;
  }

  .testimonial-content {
      padding: 1.5rem;
  }

  .testimonials-wrapper {
      padding: 0 40px;
  }
}

    /* //////////////////////////////////////////////////// */
  /* CTA Section */
    /* //////////////////////////////////////////////////// */

/* CTA MSP Section Styles */
.cta-msp {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
  background: var(--navy-900);
}

.cta-msp-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.circle-gradient-1,
.circle-gradient-2,
.circle-gradient-3 {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary), var(--purple-400));
  filter: blur(60px);
  opacity: 0.15;
  animation: floatAnimation 15s infinite alternate;
}

.circle-gradient-1 {
  width: 600px;
  height: 600px;
  top: -20%;
  left: -10%;
}

.circle-gradient-2 {
  width: 500px;
  height: 500px;
  bottom: -30%;
  right: -10%;
  animation-delay: -5s;
}

.circle-gradient-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

.cta-msp-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-msp-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-msp-title {
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--white), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.cta-msp-subtitle {
  font-size: var(--text-lg);
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 3rem;
}

.cta-msp-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.stat-label {
  color: var(--white);
  opacity: 0.8;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-msp-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.btn-primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.btn-primary:hover:before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(83, 61, 164, 0.3);
  color: var(--purple-200);
}

.btn-secondary {
  border: 2px solid var(--purple-400);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(83, 61, 164, 0.3);
  color: var(--purple-200);
}

.trust-indicators {
  margin-top: 4rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
  opacity: 0.7;
}

.partner-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .cta-msp {
      padding: 4rem 1.5rem;
  }

  .cta-msp-title {
      font-size: var(--text-2xl);
  }

  .cta-msp-subtitle {
      font-size: var(--text-base);
  }

  .cta-msp-stats {
      flex-direction: column;
      gap: 2rem;
  }

  .stat-number {
      font-size: 2.5rem;
  }

  .cta-msp-actions {
      flex-direction: column;
  }

  .trust-logos {
      flex-wrap: wrap;
      gap: 2rem;
  }
}


  /* Blog Section Styles */
.blog-section {
  background-color: var(--white);
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-purple);
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #f8f8f8;
  border-radius: 20px;
  overflow: hidden;
  transform-origin: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--dark-purple);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.blog-excerpt {
  color: #666;
  line-height: 1.6;
}

/* Matter.js Canvas */
#matter-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }

  .section-description {
      font-size: 1rem;
  }

  .blog-title {
      font-size: 1.25rem;
  }

  .blog-excerpt {
      font-size: 0.9rem;
  }

  .blog-section {
      padding: 4rem 1rem;
  }
}
		.intro_bg{
			background: url(../../assets/images/brand/Purple.svg);
			background-repeat: no-repeat;
			background-position: right top;
			background-size: 19%;
		}
		.flex-container {
			display: flex;
			justify-content: space-between;
			align-items: center;
			width: 1200px;
			margin: 0 auto;
		}

        .left-box {
			flex: 0 0 40%;
			padding: 2rem;
        }

        .left-box h1 {
			font-size: 2.5rem;
			color: var(--dark-purple);
			margin: 0;
        }

        .right-box {
            flex: 0 0 60%;
            padding: 2rem;
            border-radius: 8px;

        }

        .right-box p {
			margin: 0;
			font-size: 1.3rem;
			line-height: 1.6;
			color: var(--text-secondary);
			font-weight: lighter;
        }

        @media (max-width: 768px) {
            .flex-container {
                flex-direction: column;
                padding: 15px;
				width: 100%;
            }

            .left-box, .right-box {
                flex: none;
                width: 100%;
                padding: 0;
                margin-bottom: 20px;
            }

            .right-box {
                padding: 15px;
            }
        }
		
/*SOLUTION SECTION START*/

.solutions-section {
    padding: 6rem 0;
    background-color: var(--background);
}

.solutions-container {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


.solution-content{
    display: flex;
    flex-direction: column;

}
.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 5rem;
}

.section-badge {
    display: inline-block;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    /* border-radius: 2rem; */
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--card-bg);
    /* border-radius: 1rem; */
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.platform-logo {
    height: 80px;
    margin-bottom: 2rem;
}

.platform-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.solution-list {
    margin: 2rem 0;
    flex-grow: 1;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.solution-item span {
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.card-cta:hover {
    gap: 1rem;
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

.coming-soon {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.notify-form {
    margin-top: auto;
}

.notify-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    /* border-radius: 0.5rem; */
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.input-group button {
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: white;
    border: none;
    /* border-radius: 0.5rem; */
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.input-group button:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group button {
        width: 100%;
    }
}

/*SOLUTION SECTION ENDS*/
.industry{
	padding: 6rem 0;
    background-color: var(--background);
}

.industry-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-grid-item {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(50px);
  opacity: 0;
}
.industry-grid-item {
  position: relative;
  height: 200px;
  background-image: url('https://via.placeholder.com/300'); /* Replace with actual background images */
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(50px);
  padding:2rem;
  opacity: 0;
}

.industry-grid-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(83, 61, 164, 85%), rgba(23, 23, 56, 85%));
  transition: background 0.3s ease;
  pointer-events: none;
  z-index:1;
}

.industry-grid-item:hover:before {
  background: linear-gradient(135deg, rgba(23, 23, 56, 85%), rgba(83, 61, 164, 85%));
}

/* Remove border radius */
.industry-grid-item {
  border-radius: 0;
}

/* Background images for each grid item */
.state-government {
  background-image: url('../../assets/images/home/industry_1.jpg');
}

.travel-transportation {
  background-image: url('../../assets/images/home/industry_2.jpg');
  
}

.telecommunications {
  background-image: url('../../assets/images/home/industry_3.jpg');
}

.utilities {
  background-image: url('../../assets/images/home/industry_4.jpg');
}

.retail {
  background-image: url('../../assets/images/home/industry_5.jpg');
}

.financial-services {
  background-image: url('../../assets/images/home/industry_6.jpg');
}

.industry-grid-item span {
	z-index: 1;
    color: #fff;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    line-height: 26px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .industry-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .industry-grid-item {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .industry-grid-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .industry-grid-item {
    height: 160px;
  }

  .industry-grid-item span {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .industry-grid-container {
    width: 100%;
  }

  .industry-grid-item {
    height: 140px;
  }

  .industry-grid-item span {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
  }
  
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    /* border-radius: 20px; */
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  }
  
  .contact-content h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
  }
  
  .contact-content p {
    color: rgba(23, 23, 56, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .contact-benefits {
    display: grid;
    gap: 1rem;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-dark);
  }
  
  .benefit-item svg {
    color: var(--primary-purple);
  }
  
  .contact-form {
    display: grid;
    gap: 1.5rem;
  }
  
  .form-group {
    position: relative;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(131, 71, 230, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
  }
  
  .form-group label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(23, 23, 56, 0.6);
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
  }
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--neutral-200);
    font-size: 0.875rem;
    transition: border-color 0.3s;
	}
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--primary-purple);
    outline: none;
  }
  
  .form-group input:focus + label,
  .form-group input:not(:placeholder-shown) + label,
  .form-group textarea + label,
  .form-group textarea:not(:placeholder-shown) + label{
    top: 0;
    font-size: 0.875rem;
    color: var(--primary-purple);
  }
  
  .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .submit-btn svg {
    transition: transform 0.3s ease;
  }
  
  .submit-btn:hover svg {
    transform: translateX(5px);
  }
  
  @media (max-width: 968px) {
    .contact-wrapper {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2rem;
    }
    
    .contact-content {
      text-align: center;
    }