@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --cs-blue: #0a66c2;
  --outspark-dark: #1e2229;
  --outspark-grey: #6b7280;
  --outspark-light: #f9fafb;
  --outspark-font: 'Inter', sans-serif;
  --max-width: 1400px;
}

/* IQ 300% Retina & High-Resolution Optimization */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

@media (-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 144dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }

  /* Ensure icons are ultra-sharp */
  .fa,
  .fas,
  .far,
  .fab,
  .fa-solid,
  .fa-regular,
  .fa-brands {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Section Heading Alignment - CENTERED */
.section-main-title,
.section-subtitle-text,
.cs_section_title,
.testimonial-section-title {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

/* Who Is This For? Points Centering - USER REQUESTED */
.who-is-item h3,
.who-is-item p,
.cs_who_item h4,
.cs_who_item p {
  text-align: center !important;
}

/* Global Container Alignment */
.hero-container,
.container-standard,
.testimonial-card-bg,
.cs-white-card-box,
.about-flex {
  max-width: var(--max-width) !important;
  margin: 0 auto !important;
  padding-left: 60px !important;
  padding-right: 60px !important;
}

@media (max-width: 767px) {

  .hero-container,
  .container-standard,
  .testimonial-card-bg,
  .cs-white-card-box,
  .about-flex {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* IQ 200 Mobile Gap Fixes */
  section {
    padding: 50px 0 !important;
  }

  .custom-hero {
    padding-bottom: 60px !important;
  }

  .testimonial-overlap {
    padding-top: 0 !important;
  }

  .container-wide {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-image-side {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .cs_section_heading,
  .section-header {
    margin-bottom: 30px !important;
    text-align: center !important;
  }

  .hero-container {
    padding-top: 40px !important;
    padding-bottom: 0px !important;
    text-align: center !important;
  }

  .cs-white-card-box {
    padding: 40px 20px !important;
    border-radius: 20px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  /* Positioning Steps Mobile Fix */
  .cs_feature_step {
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 40px !important;
  }

  .cs_step_index {
    margin: 0 auto 20px !important;
  }

  .cs_step_indfo_wrapper {
    width: 100% !important;
    padding: 30px 20px !important;
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
select,
textarea {
  font-family: var(--outspark-font) !important;
}

/* Header Section */
.custom-header {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1100;
  width: 100%;
}

.header-container {
  max-width: 100% !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin: 0 auto !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .header-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.logo-link img {
  height: 55px;
  image-rendering: -webkit-optimize-contrast;
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  padding: 10px 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Dropdown Menu - FIXED WORKING VERSION */
.dropdown-menu {
  position: absolute !important;
  top: 50px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #fff !important;
  min-width: 250px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
  border-radius: 12px !important;
  padding: 10px 0 !important;
  list-style: none !important;
  display: none !important;
  z-index: 9999 !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  margin: 0 !important;
}

.nav-menu li.has-dropdown:hover .dropdown-menu {
  display: block !important;
}

.nav-menu li.has-dropdown::after {
  content: '' !important;
  position: absolute !important;
  top: 30px !important;
  left: -20% !important;
  width: 140% !important;
  height: 30px !important;
  background: transparent !important;
  z-index: -1 !important;
}

.dropdown-menu li a {
  padding: 0px 25px !important;
  display: block !important;
  font-size: 14px !important;
  color: #555 !important;
  font-weight: 400 !important;
}

.dropdown-menu li a:hover {
  background: #f0fdfa !important;
  color: var(--cs-blue) !important;
}

.login-btn {
  background: var(--cs-blue) !important;
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--outspark-dark);
  cursor: pointer;
}

/* Hero Section - EXACT REPLICA OF IMAGE 2 */
.custom-hero {
  background: linear-gradient(135deg, #0a66c245 0%, #ffffff 50%, #fff5f5 100%);
  padding: 10px 0 60px 0;
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-image-side {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
}

.hero-subtext {
  color: #333;
  font-size: 15px;
  margin-bottom: 25px !important;
  padding: 0 !important;
  font-weight: 500;
  opacity: 0.8;
  text-align: left;
}

.hero-title {
  font-size: 40px !important;
  font-weight: 600 !important;
  color: var(--outspark-dark);
  line-height: 1.2;
  margin-bottom: 25px !important;
  padding: 0 !important;
  letter-spacing: -0.5px;
  text-align: left;
}

.hero-title .highlight {
  position: relative;
  z-index: 1;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ffde5900;
  z-index: -1;
  opacity: 1;
}

.hero-description {
  color: #4b5563;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 45px !important;
  max-width: 580px;
  text-align: left;
}

.hero-cta {
  padding: 0 !important;
  text-align: left !important;
  margin: 0 !important;
}

.hero-btn {
  background: var(--cs-blue) !important;
  color: #fff !important;
  padding: 18px 40px !important;
  border-radius: 50px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  box-shadow: 0 10px 25px rgba(10, 102, 194, 0.2) !important;
}

.hero-trust {
  font-size: 14px;
  color: var(--outspark-grey);
  margin-top: 15px;
}

.hero-img-main {
  width: 95%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* Floating Cards - Exact Positions from Image 2 */
.floating-card {
  position: absolute !important;
  background: #fff !important;
  padding: 12px 15px !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  border: 1px solid rgba(0, 0, 0, 0.02) !important;
  z-index: 10 !important;
}

.card-profiles {
  top: 35% !important;
  left: 5% !important;
  /* Move closer to center */
  min-width: 140px !important;
}

.card-resumes {
  top: 68% !important;
  /* Move even lower */
  right: 2% !important;
  min-width: 130px !important;
}

.floating-card h4 {
  margin: 0 !important;
  color: #2563eb !important;
  font-size: 35px !important;
  /* Smaller font */
  font-weight: 800 !important;
}

.floating-card p {
  margin: 0 !important;
  font-size: 11px !important;
  /* Smaller font */
  color: #6b7280 !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
}

.profile-dots {
  display: flex !important;
  margin-bottom: 5px !important;
}

.profile-dots img {
  width: 24px !important;
  /* Smaller avatars */
  height: 24px !important;
  border-radius: 50% !important;
  border: 2px solid #fff !important;
  margin-right: -10px !important;
}

/* Mobile Responsiveness */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 55px !important;
  }
}

@media (max-width: 991px) {
  .header-container {
    padding: 0 20px;
  }

  .mobile-toggle {
    display: block;
  }

  .header-right-group {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    padding: 40px 20px;
    transition: left 0.4s ease;
    overflow-y: auto;
    gap: 30px;
  }

  .header-right-group.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu li a {
    padding: 20px 0;
    justify-content: space-between;
    font-size: 18px;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 0 20px 20px !important;
    width: 100% !important;
  }

  .nav-menu li.mobile-open .dropdown-menu {
    display: block !important;
  }

  .login-btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
  }

  .hero-container {
    flex-direction: column;
    gap: 40px;
    padding: 20px 20px 0 20px;
    text-align: center;
  }

  .hero-subtext {
    font-size: 13px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 6px 15px;
    background: rgba(10, 102, 194, 0.05);
    border-radius: 50px;
    color: var(--cs-blue);
  }

  .hero-title {
    font-size: 32px !important;
    line-height: 1.3 !important;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto 35px;
    color: #64748b;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 30px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
  }

  .hero-trust {
    font-size: 12px;
    margin-top: 20px;
  }

  .hero-image-side {
    width: 100%;
    margin-top: 20px;
  }

  .hero-img-main {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  .card-profiles,
  .card-resumes {
    display: none !important;
  }
}

.testimonial-overlap {
  position: relative;
  margin-top: -60px;
  /* Overlap hero more */
  z-index: 100;
  padding-bottom: 120px;
  /* More space for dots */
}

.testimonial-card-bg {
  background: #fff;
  border-radius: 40px;
  padding: 80px 40px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.02);
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--outspark-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-align: center;
}

.testimonial-section-subtitle {
  color: var(--outspark-grey);
  font-size: 16px;
  margin-bottom: 50px;
  text-align: center;
}

.testimonial-item {
  padding: 20px;
}

.testimonial-item-inner {
  background: #cecece7a;
  padding: 35px;
  border-radius: 24px;
  height: 100%;
  transition: transform 0.3s ease;
  border: 1px solid #f1f5f9;
}

.testimonial-item-inner:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--outspark-dark);
  margin: 0;
}

.user-info p {
  font-size: 13px;
  color: var(--cs-blue);
  margin: 0;
  font-weight: 600;
}

.testimonial-rating {
  margin-bottom: 15px;
  color: #ffb400;
  /* Star color */
  font-size: 12px;
  display: flex;
  gap: 3px;
}


.testimonial-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  font-style: italic;
}

.slick-dots {
  bottom: -50px;
  display: flex !important;
  justify-content: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 10px !important;
}

.slick-dots li {
  margin: 0 !important;
}

.slick-dots li button {
  font-size: 0 !important;
  line-height: 0 !important;
  display: block !important;
  width: 12px !important;
  height: 12px !important;
  padding: 5px !important;
  cursor: pointer !important;
  color: transparent !important;
  border: 0 !important;
  outline: none !important;
  background: #cbd5e1 !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.slick-dots li.slick-active button {
  background: var(--cs-blue) !important;
  transform: scale(1.2) !important;
}

.slick-dots li button:before {
  display: none !important;
}

/* Removed redundant testimonial-overlap and testimonial-card-bg rules to fix spacing */

.testimonial-section-title {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.testimonial-section-subtitle {
  font-size: 14px;
  margin-bottom: 40px;
}

.testimonial-slider .slick-track {
  display: flex !important;
}

.testimonial-slider .slick-slide {
  height: inherit !important;
  display: flex !important;
}

.testimonial-item {
  height: 100% !important;
  display: flex !important;
  padding: 10px;
}

.testimonial-item-inner {
  height: 100% !important;
  width: 100%;
  padding: 25px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.alphabet-avatar {
  width: 45px;
  height: 45px;
  background: var(--cs-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.user-info h4 {
  font-size: 15px;
}

.testimonial-content {
  flex-grow: 1;
}

.testimonial-content p {
  font-size: 13.5px;
  margin-bottom: 0;
}

.slick-dots {
  bottom: -35px;
}


.container-standard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-section {
  padding: 100px 0;
  background: #fff;
  /* Clean white background */
}

.section-main-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--outspark-dark);
  margin-bottom: 50px;
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  width: calc(33.333% - 20px);
  min-width: 320px;
  /* Reduced min-width to prevent overflow on mobile */
  position: relative;
  cursor: pointer;
}

@media (max-width: 767px) {
  .services-section {
    padding: 60px 0;
  }

  .section-main-title {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .services-grid {
    gap: 20px;
  }

  .product-card {
    width: 100%;
    min-width: auto;
    padding: 25px;
  }

  .product-title {
    font-size: 17px;
    margin-bottom: 15px;
  }

  .product-image {
    height: 160px;
    margin-bottom: 15px;
  }

  .product-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--outspark-dark);
  margin-bottom: 20px;
  text-align: center;
}

.product-image {
  width: 100%;
  height: 180px;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a66c2;
  opacity: 0.15;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 2;
}

.product-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: saturate(0.5) brightness(1.1) contrast(1.1);
  transition: all 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
  filter: saturate(0.9) brightness(1.1) contrast(1.1);
}

.product-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 25px;
  text-align: center;
  flex-grow: 1;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 8px;
  color: var(--cs-blue);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.product-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.product-cta i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.product-cta:hover {
  color: #006d5f;
}

.product-cta:hover i {
  transform: translateX(5px);
}

/* About Us Section Styling */
.about-us-section {
  padding: 120px 0;
  background: #fdfdfd;
  overflow: hidden;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-content {
  flex: 1.2;
}

.about-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-tag-small {
  color: var(--cs-blue);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.about-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--outspark-dark);
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -1.5px;
  text-align: left;
}

.highlight-teal {
  color: var(--cs-blue);
  position: relative;
}

.about-lead {
  font-size: 18px;
  color: var(--outspark-dark);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 25px;
}

.about-main-text p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-stats-mini {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.mini-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--outspark-dark);
}

.stat-label {
  font-size: 13px;
  color: var(--cs-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Positioning Visual */
.positioning-visual-box {
  position: relative;
  width: 400px;
  height: 400px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  mix-blend-mode: multiply;
  opacity: 0.15;
  transition: all 0.5s ease;
}

.circle-1 {
  background: #0a66c2;
  top: 0;
  left: 75px;
}

.circle-2 {
  background: #2563eb;
  bottom: 50px;
  left: 0;
}

.circle-3 {
  background: #ffde59;
  bottom: 50px;
  right: 0;
}

.visual-label {
  position: absolute;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--outspark-dark);
  background: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.label-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--cs-blue);
  color: #fff;
  font-size: 13px;
  padding: 10px 20px;
  z-index: 5;
}

.label-top {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.label-bottom {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.positioning-visual-box:hover .circle {
  transform: scale(1.05);
  opacity: 0.25;
}

@media (max-width: 991px) {
  .about-us-section {
    padding: 80px 0;
  }

  .about-flex {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-tag {
    justify-content: center;
  }

  .about-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-align: center !important;
  }

  .about-title .highlight-teal {
    display: block !important;
    margin-top: 10px !important;
  }

  .section-tag-small {
    text-align: center !important;
  }

  .about-lead {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .about-main-text p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .about-stats-mini {
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
  }

  .stat-num {
    font-size: 26px;
  }

  .stat-label {
    font-size: 11px;
  }

  .positioning-visual-box {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .circle {
    width: 160px;
    height: 160px;
  }

  .circle-1 {
    left: 60px;
  }

  .label-center {
    font-size: 11px;
    padding: 8px 15px;
  }
}

/* Consolidated Features Wrapper below */

/* Rebranding Features Section back to Purple for Hover */
.cs_section_subtitle span {
  color: var(--cs-blue) !important;
}

.cs_section_subtitle {
  border-color: var(--cs-blue) !important;
  background: rgba(10, 102, 194, 0.05) !important;
}

/* Points Bubbles */
.cs_step_index {
  background: var(--cs-blue) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
}

/* Ensure equal height and smaller gap */
.cs_features_steps_wrapper {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 15px !important;
  align-items: stretch !important;
}

@media (max-width: 1200px) {
  .cs_features_steps_wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .cs_features_steps_wrapper {
    grid-template-columns: 1fr !important;
  }

  .cs_feature_step {
    margin-bottom: 30px !important;
  }

  .cs_vertical_line {
    display: none !important;
    /* Hide vertical connecting lines on mobile for cleaner stack */
  }
}

.cs_feature_step {
  display: flex !important;
  flex-direction: column !important;
}

.cs_step_indfo_wrapper {
  padding: 25px 20px !important;
  border-radius: 20px !important;
  transition: all 0.4s ease !important;
  height: 100% !important;
  /* Equal height */
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.cs_step_indfo_wrapper h3 {
  font-size: 18px !important;
  /* Even smaller heading */
  font-weight: 700 !important;
  color: var(--outspark-dark) !important;
  margin-bottom: 10px !important;
  transition: color 0.4s ease !important;
}

.cs_step_indfo_wrapper p {
  font-size: 13px !important;
  /* Slightly smaller body */
  line-height: 1.6 !important;
  color: #64748b !important;
  transition: color 0.4s ease !important;
}

/* Purple Hover Effect with Text Color Change */
.cs_feature_step:hover .cs_step_indfo_wrapper {
  background: linear-gradient(135deg, #0a66c2 0%, #0a66c2 100%) !important;
  /* Vibrant Purple Gradient */
  border-color: transparent !important;
  box-shadow: 0 20px 40px rgba(10, 102, 194, 0.2) !important;
}

.cs_feature_step:hover .cs_step_indfo_wrapper h3,
.cs_feature_step:hover .cs_step_indfo_wrapper p {
  color: #fff !important;
  /* White text on hover */
}

/* Points bubble change on hover */
.cs_feature_step:hover .cs_step_index {
  background: #0a66c2 !important;
}

/* Vertical line color */
.cs_vertical_line {
  background: var(--cs-blue) !important;
  opacity: 0.2 !important;
}

/* Why yourprofilr Mosaic Section */
.why-cs-section {
  padding: 80px 0;
}

.cs-mosaic-card {
  position: relative;
  width: 100%;
  min-height: 480px;
  /* Reduced height */
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.cs-mosaic-card:hover {
  transform: translateY(-5px);
}

.mosaic-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.mosaic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(30, 34, 41, 0.4) 0%, rgba(30, 34, 41, 0) 100%);
  z-index: 2;
}

.mosaic-content-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  padding: 40px 60px;
  /* Reduced padding */
}

.mosaic-left {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
}

.mosaic-right {
  flex: 1.2;
  display: flex;
  justify-content: flex-end;
}

.info-card-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 40px;
  /* Reduced padding */
  border-radius: 30px;
  width: 100%;
  max-width: 500px;
  /* Narrower card */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mosaic-title {
  font-size: 24px;
  /* Smaller title */
  font-weight: 800;
  color: var(--outspark-dark);
  margin-bottom: 5px;
  text-align: center;
}

.mosaic-subtitle {
  font-size: 13px;
  /* Smaller subtitle */
  color: var(--cs-blue);
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.mosaic-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.mosaic-feature-list li {
  display: flex;
  gap: 15px;
  /* Tighter gap */
  margin-bottom: 18px;
  /* Tighter margin */
  align-items: flex-start;
  transition: all 0.3s ease;
}

.m-icon {
  color: var(--cs-blue);
  font-size: 16px;
  /* Smaller icon */
  margin-top: 2px;
  filter: drop-shadow(0 0 5px rgba(10, 102, 194, 0.3));
  /* Creative glow */
}

.mosaic-feature-list li:hover .m-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(10, 102, 194, 0.5));
}

.m-text strong {
  display: block;
  font-size: 14px;
  /* Smaller strong text */
  color: var(--outspark-dark);
  margin-bottom: 2px;
  font-weight: 700;
}

.m-text span {
  font-size: 12.5px;
  /* Smaller description */
  color: #64748b;
  line-height: 1.4;
}

.mosaic-cta-box {
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.trusted-tag {
  font-size: 11px;
  /* Smaller tag */
  color: #94a3b8;
  margin-top: 10px;
  font-weight: 500;
}

.floating-badge-v2 {
  background: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  /* Smaller font */
  font-weight: 600;
  color: var(--outspark-dark);
}

.floating-badge-v2 i {
  color: var(--cs-blue);
}

@media (max-width: 991px) {
  .why-cs-section {
    padding: 60px 0;
  }

  .cs-mosaic-card {
    flex-direction: column;
    min-height: auto;
    border-radius: 30px;
    margin: 0 10px;
  }

  .mosaic-bg-layer {
    position: absolute;
    /* Keep it as background but adjust height */
    height: 100%;
    opacity: 0.4;
  }

  .mosaic-content-wrapper {
    flex-direction: column;
    padding: 30px 20px;
  }

  .mosaic-left {
    margin-bottom: 30px;
    padding-top: 0;
    justify-content: center;
  }

  .floating-badge-v2 {
    font-size: 11px;
    padding: 8px 15px;
  }

  .mosaic-right {
    justify-content: center;
    width: 100%;
  }

  .info-card-glass {
    max-width: 100%;
    padding: 25px;
    border-radius: 20px;
  }

  .mosaic-title {
    font-size: 20px;
    text-align: center;
  }

  .mosaic-subtitle {
    font-size: 11px;
    text-align: center;
    margin-bottom: 25px;
  }

  .mosaic-feature-list li {
    gap: 12px;
    margin-bottom: 15px;
  }

  .m-icon {
    font-size: 14px;
  }

  .m-text strong {
    font-size: 13px;
  }

  .m-text span {
    font-size: 11.5px;
  }

  .mosaic-cta-box {
    text-align: center;
  }

  .trusted-tag {
    font-size: 10px;
  }
}



/* Who Is This For Section Styles */
.who-is-for-section {
  padding: 100px 0;
  background: #cecece7a;
}

.cs-white-card-box {
  background: #fff;
  border-radius: 40px;
  padding: 80px 60px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.section-subtitle-text {
  font-size: 16px;
  color: #64748b;
  margin-top: -30px;
  margin-bottom: 50px;
  text-align: center;
}

.who-is-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .who-is-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 767px) {
  .who-is-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .who-is-item h3 {
    text-align: center !important;
  }
}

.who-is-item {
  position: relative;
  transition: all 0.3s ease;
}

.who-is-item:hover {
  transform: translateY(-5px);
}

.item-number {
  font-size: 80px;
  font-weight: 800;
  color: #cecece7a;
  position: absolute;
  top: -40px;
  left: -10px;
  z-index: 1;
  line-height: 1;
  user-select: none;
}

.who-is-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--outspark-dark);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.who-is-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  margin: 0;
}

.who-is-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 40px;
}

.trusted-by-text {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 15px;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .who-is-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .who-is-for-section {
    padding: 60px 0;
  }

  .cs-white-card-box {
    padding: 50px 20px;
    border-radius: 30px;
    margin: 0 10px;
  }

  .section-main-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .section-subtitle-text {
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .who-is-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 45px;
  }

  .item-number {
    font-size: 50px;
    top: -25px;
    left: -5px;
  }

  .who-is-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .who-is-item p {
    font-size: 13px;
  }

  .who-is-footer {
    padding-top: 30px;
  }

  .trusted-by-text {
    font-size: 11px;
  }
}

/* Service Pages & General Mobile Enhancements */
@media (max-width: 991px) {
  .cs_offer_badge {
    font-size: 12px !important;
    padding: 4px 12px !important;
  }

  .cs_list li {
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }


  .cs_how_works_section {
    padding: 60px 0 !important;
  }

  .cs_step_card {
    margin-bottom: 30px;
  }

  .cs_step_icon_box {
    width: 60px !important;
    height: 60px !important;
    border-radius: 15px !important;
  }

  .cs_step_icon_box i {
    font-size: 24px !important;
  }

  .cs_what_you_get {
    padding: 60px 0 !important;
  }

  .cs_benefit_card {
    padding: 20px !important;
    border-radius: 15px !important;
  }

  .cs_why_matters_dashboard {
    padding: 30px 20px !important;
    border-radius: 20px !important;
    margin-top: 20px;
  }

  .cs_different_section {
    padding: 60px 0 !important;
  }

  .cs_different_section [style*="border-right"] {
    border-right: none !important;
    border-bottom: 1px solid #f0f0f0;
  }

  .cs_who_section {
    padding: 60px 0 !important;
  }

  .cs_who_container {
    padding: 40px 20px !important;
    border-radius: 30px !important;
  }

  .cs_stat_item {
    margin-bottom: 20px;
  }

  .cs_stat_item h1,
  .cs_stat_item h4 {
    font-size: 24px !important;
  }

  .cs_cta_box {
    padding: 40px 20px !important;
    border-radius: 20px !important;
  }

  .cs_cta_box h2 {
    font-size: 28px !important;
  }

  .cs_cta_box h3 {
    font-size: 22px !important;
  }

  .cs_cta_box .cs_btn {
    padding: 18px 30px !important;
    font-size: 16px !important;
  }
}

/* IQ 200 Mobile Refinements - Precise Gaps & Alignment */
@media (max-width: 767px) {

  /* Global Content Spacing */
  p,
  .hero-description,
  .cs_fs_13,
  .cs_fs_14 {
    margin-bottom: 25px !important;
    line-height: 1.6 !important;
  }

  /* Button Gaps */
  .cs_btn,
  .hero-btn,
  .login-btn {
    margin-top: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 20px rgba(10, 102, 194, 0.15) !important;
  }

  /* Section Padding Consistency */
  section {
    padding: 60px 0 !important;
  }

  /* Header Fine-Tuning */
  .header-container {
    padding: 0 15px !important;
  }

  .logo-link img {
    height: 45px !important;
  }

  /* Scroll Up Button - Avoid Overlap */
  .cs_scrollup {
    bottom: 20px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    opacity: 0.8;
  }

  /* List Item Spacing */
  .cs_list li {
    gap: 12px !important;
    margin-bottom: 15px !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  /* Step Card Alignments */
  .cs_step_card {
    padding: 30px 20px !important;
    border-radius: 20px !important;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  }

  .cs_step_icon_box,
  .cs_step_card [style*="width: 70px"] {
    width: 55px !important;
    height: 55px !important;
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }

  /* Offer Badge Alignment */
  .cs_offer_badge {
    margin-bottom: 20px !important;
    display: inline-block !important;
    text-align: center;
  }

  /* Footer Widget Alignment */
  .cs_footer_widget {
    margin-bottom: 40px !important;
    text-align: center;
  }

  .cs_footer_widget_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cs_footer_menu {
    text-align: center;
    padding: 0 !important;
  }

  .cs_footer_menu li {
    list-style: none !important;
    margin-bottom: 12px;
  }

  .cs_footer_bottom {
    padding: 30px 0 !important;
  }

  /* IQ 200 Spacer Heights */
  [class*="cs_height_"] {
    height: 30px !important;
    /* Standardize mobile gaps */
  }

  /* Section Headings */
  .cs_section_heading {
    margin-bottom: 35px !important;
  }

  .cs_section_title {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }
}


/* Fix for Hero Titles on Service Pages */
@media (max-width: 991px) {
  .custom-hero h1.hero-title {
    font-size: 30px !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
  }

  .custom-hero .hero-description {
    font-size: 16px !important;
    margin-bottom: 30px !important;
  }
}

/* Fix Button Icon Doubling, Overlap & Wrapping */
.cs_btn.cs_style_1,
.hero-btn,
.product-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

/* Allow text wrapping and ensure full width on mobile */
@media (max-width: 991px) {

  .cs_btn.cs_style_1,
  .hero-btn,
  .product-cta,
  .login-btn {
    white-space: normal !important;
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    text-align: center !important;
  }
}

@media (min-width: 992px) {

  .cs_btn.cs_style_1,
  .hero-btn,
  .product-cta {
    white-space: nowrap !important;
  }
}

.cs_btn.cs_style_1 i,
.hero-btn i,
.product-cta i {
  text-shadow: none !important;
  /* Remove the doubling effect */
  display: inline-block !important;
  transition: transform 0.3s ease !important;
  margin: 0 !important;
}

.cs_btn.cs_style_1 .cs_btn_icon {
  width: auto !important;
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}

.cs_btn.cs_style_1:hover i,
.hero-btn:hover i,
.product-cta:hover i {
  transform: translateX(5px) !important;
}

/* Creative UI Enhancements for Career Move Page */
.outcome-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.outcome-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--cs-blue);
  transition: width 0.3s ease;
}

.outcome-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(10, 102, 194, 0.1);
  border-color: rgba(10, 102, 194, 0.2);
}

.outcome-card:hover::before {
  width: 8px;
}

.outcome-icon-box {
  width: 45px;
  height: 45px;
  background: rgba(10, 102, 194, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-blue);
  font-size: 18px;
  flex-shrink: 0;
}

.creative-number {
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, rgba(10, 102, 194, 0.08) 0%, rgba(10, 102, 194, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 0;
}

.not-box-creative {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-left: 5px solid #64748b;
  position: relative;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
}

.not-box-creative::after {
  content: '\f05e';
  /* fa-ban */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 100px;
  color: rgba(0, 0, 0, 0.02);
  transform: rotate(-15deg);
}

/* Compounding Visibility Section Styles */
.compounding-card {
  background: #fff;
  border-radius: 20px;
  padding: 45px 35px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.compounding-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 102, 194, 0.1);
  border-color: rgba(10, 102, 194, 0.2);
}

.compounding-icon {
  width: 70px;
  height: 70px;
  background: rgba(10, 102, 194, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-blue);
  font-size: 28px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.compounding-card:hover .compounding-icon {
  background: var(--cs-blue);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.compounding-card p {
  font-weight: 700;
  color: var(--outspark-dark);
  font-size: 17px;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.compounding-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--cs-blue), #551DFF);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.compounding-card:hover::after {
  opacity: 1;
}

@media (max-width: 767px) {
  .compounding-card {
    padding: 30px 20px;
  }
}