/* SF Pro font stack - system font on Apple, falls back gracefully */
@font-face {
  font-family: "SF Pro";
  src:
    local("SF Pro Display"), local("SF Pro Text"),
    local(".SFNSDisplay-Regular"), local("SFProDisplay-Regular");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro";
  src:
    local("SF Pro Display Bold"), local("SF Pro Text Bold"),
    local(".SFNSDisplay-Bold"), local("SFProDisplay-Bold");
  font-weight: 700;
  font-style: normal;
}

:root {
  --primary-text: #000000;
  --secondary-text: #454648;
  --bg-dark: #090b0e;
  --bg-light: #ffffff;
  --accent-gray: #f6f6f9;
  --border-color: #e5e5ea;
  --primary-blue: #2fc1ff;
  --primary-red: #ff003c;
  --gradient-blue: linear-gradient(135deg, #2fc1ff 0%, #0099ff 100%);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
}

body {
  font-family:
    "SF Pro",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
  color: var(--secondary-text);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #303030 #f3f4f6;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff003c, #1a1c1e);
  border-radius: 999px;
  border: 2px solid #f3f4f6;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e00034, #050608);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-text);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--secondary-text);
}

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

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

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

section {
  scroll-margin-top: 110px;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  background-color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  color: #666;
  margin-bottom: 32px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.logos-wrapper .section-tag {
  margin-top: 20px;
}

.section-title-highlight {
  position: relative;
  padding-left: 32px;
}

.section-title-highlight::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff003c;
  box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.6);
  animation: sectionDotPulse 1.8s infinite;
}

@keyframes sectionDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.6);
  }

  60% {
    box-shadow: 0 0 0 8px rgba(255, 0, 60, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 60, 0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  border: none;
}

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

.btn-primary {
  background-color: var(--bg-dark);
  color: #fff;
}

.btn-primary:hover {
  background-color: #000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  margin-left: 12px;
  color: var(--bg-dark);
}

.full-width {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  border-bottom: 2px dashed #c4c4c4;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  height: 90px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-right: 40px;
  border-right: 2px dashed #c4c4c4;
}

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

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav a {
  font-family:
    "SF Pro",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--primary-red);
}

/* Header CTA - Contact Button */
.header-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-left: 40px;
  border-left: 2px dashed #c4c4c4;
}

.btn-contact-us {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 20px;
  background: #090b0e;
  color: #fff;
  border-radius: 100px;
  font-family:
    "SF Pro",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-contact-us:hover {
  background: #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.btn-contact-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff003c;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-contact-icon svg {
  width: 12px;
  height: 12px;
}

/* Hero Section */
.hero-bg-pattern {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.logos-wrapper .section-tag {
  background: #f2f4f7;
}

.bg-vector.full-pattern {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: top center;
}

#hero-section {
  position: relative;
  padding-top: 170px;
  padding-bottom: 24px;
  overflow: hidden;
  background-color: var(--bg-light);
}

.thankyou-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-title {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #000;
}

.thankyou-title span {
  color: var(--primary-red);
}

.thankyou-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--secondary-text);
  max-width: 640px;
  margin: 0 auto 32px;
}

.btn-thankyou {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #090b0e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-thankyou:hover {
  background: #000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.btn-thankyou-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.thankyou-page {
  overflow: hidden;
  height: 100vh;
}

body.thankyou-page #hero-section {
  padding-top: 160px;
  padding-bottom: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

body.thankyou-page .thankyou-hero {
  min-height: auto;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  justify-content: space-between;
  padding-bottom: 50px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  max-width: 600px;
  flex-shrink: 0;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 68px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #000;
}

.hero-text p {
  font-size: 18px;
  line-height: 150%;
  color: #454648;
  max-width: 603px;
  margin-bottom: 0;
}

.partners {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 0;
}

.partner-badge {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  width: 136px;
  height: 60px;
  background: #f6f6f9;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 96px;
  height: 40px;
}

.badge-logo {
  width: 64px;
  height: auto;
  object-fit: contain;
}

.badge-logo-clutch {
  width: 84px;
  height: 40px;
  object-fit: contain;
}

.badge-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
}

.badge-stars svg {
  width: 10px;
  height: 10px;
}

.badge-goodfirms-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  margin-bottom: 2px;
}

.goodfirms-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gf-score {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  color: #0583d2;
  font-size: 14px;
  line-height: 1;
}

.gf-stars {
  display: flex;
  gap: 2px;
}

/* Phone Input */
.phone-input {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #8a8a8a;
}

.phone-input input {
  border-bottom: none !important;
  padding-left: 8px;
}

.country-code {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #525252;
  white-space: nowrap;
}

.flag-icon {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.divider-line {
  color: #555;
  font-weight: 300;
}

/* Hero Form Card */
.hero-form-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 26px;
  gap: 24px;
  width: 480px;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  transition: transform 0.3s ease;
}

.hero-form-card:hover {
  transform: translateY(-5px);
}

.form-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
  width: 100%;
  gap: 16px;
}

.form-card-header h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #000;
}

.form-card-header p {
  font-size: 14px;
  line-height: 150%;
  color: #6b7280;
}

.hero-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-form .form-row {
  display: flex;
  gap: 20px;
}

.hero-form .form-row .form-group {
  flex: 1;
}

.hero-form .form-group {
  margin-bottom: 0;
}

.hero-form .form-group label {
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 6px;
}

.hero-form .form-group input {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  background: transparent;
}

.form-group .iti.iti--show-flags {
  width: 100%;
}

.hero-form .form-group input::placeholder {
  color: #9ca3af;
  font-size: 15px;
}

.hero-form .form-group input:focus {
  outline: none;
  border-bottom-color: #ff003c;
}

.form-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btn-hero-submit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 4px 10px 26px;
  gap: 0px;
  width: 200px;
  height: 56px;
  background: #090b0e;
  border-radius: 100px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero-submit:hover {
  background: #000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-icon-red {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff003c;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--primary-blue);
}

.phone-input {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.phone-input input {
  border-bottom: none;
  padding-left: 12px;
}

/* Integrated Logos Styles */

.logos-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 140px;
  position: relative;
  z-index: 1;
}

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

.logo-strip {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 80px;
  opacity: 0.7;
  animation: marquee 30s linear infinite;
}

.logo-strip img {
  height: 32px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-strip img:hover {
  filter: grayscale(0%);
}

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

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

/* About Section */
#about-section {
  padding: 28px 0 86px;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  max-width: 480px;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #454648;
  max-width: 520px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

/* Custom Gradient Dashed Lines */
.about-features::before,
.about-features::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* Horizontal Line */
.about-features::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  background-image: repeating-linear-gradient(to right,
      #ccc 0,
      #ccc 6px,
      transparent 6px,
      transparent 12px);
  mask-image: linear-gradient(to right,
      transparent,
      black 30%,
      black 70%,
      transparent);
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 30%,
      black 70%,
      transparent);
}

/* Vertical Line */
.about-features::after {
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 100%;
  background-image: repeating-linear-gradient(to bottom,
      #ccc 0,
      #ccc 6px,
      transparent 6px,
      transparent 12px);
  mask-image: linear-gradient(to bottom,
      transparent,
      black 30%,
      black 70%,
      transparent);
  -webkit-mask-image: linear-gradient(to bottom,
      transparent,
      black 30%,
      black 70%,
      transparent);
}

.feature-box {
  padding: 30px 24px;
  transition: all 0.3s ease;
  background: transparent;
  position: relative;
}

.feature-box:hover {
  transform: scale(1.02);
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 16px;
  line-height: 1.5;
  color: #454648;
}

/* Services Section */
#services-section {
  background-color: #090b0e;
  color: #fff;
  padding: 80px 0;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.services-header h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.services-header p {
  color: #8a8a8a;
  font-size: 16px;
  line-height: 1.6;
}

.dark-tag {
  background-color: #1a1c1e;
  color: #8a8a8a;
  border: 1px solid #2d2f31;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 30px;
}

.section-tag.section-title-highlight {
  padding-left: 32px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding: 40px 0;
  border-bottom: 1px solid #1a1c1e;
  transition: all 0.3s ease;
  gap: 16px;
}

.service-item:first-child {
  border-top: 1px solid #1a1c1e;
}

.service-main {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.service-num {
  color: #454648;
  font-size: 22px;
  font-weight: 600;
  min-width: 40px;
  margin-top: -8px;
}

.service-item h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  flex: 1;
  transition: all 0.3s ease;
  letter-spacing: -0.5px;
}

.service-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid #2d2f31;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: transparent;
}

.service-item:hover h3 {
  transform: translateX(15px);
}

.service-item:hover .service-arrow {
  background: #fff;
  border-color: #fff;
  transform: scale(1.1);
}

.service-item:hover .service-arrow svg path {
  stroke: #090b0e;
}

.service-item.active h3 {
  transform: translateX(15px);
}

.service-item.active .service-arrow {
  background: #fff;
  border-color: #fff;
  transform: scale(1.1);
}

.service-item.active .service-arrow svg path {
  stroke: #090b0e;
}

.service-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db;
  max-width: 520px;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    max-height 0.3s ease,
    transform 0.3s ease;
}

.service-item:hover .service-desc {
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
}

.service-item.active .service-desc {
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
}

.service-media {
  position: absolute;
  top: 50%;
  right: 0;
  width: 220px;
  transform: translateY(-50%);
  pointer-events: none;
}

.service-card {
  position: relative;
  max-width: 220px;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateX(40px) rotate(4deg);
  transform-origin: center;
  transition:
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.45s ease;
}

.service-item:hover .service-card {
  opacity: 1;
  transform: translateX(0) rotate(-6deg);
}

.service-item.active .service-card {
  opacity: 1;
  transform: translateX(0) rotate(-6deg);
}

.service-card-img {
  width: 100%;
  display: block;
}

.service-card-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.service-preview-info {
  position: absolute;
  left: 20px;
  right: 80px;
  bottom: 20px;
}

.service-preview-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-preview-text {
  font-size: 13px;
  line-height: 1.5;
  color: #e5e7eb;
}

/* Pricing Section */
#pricing-section {
  padding: 72px 0;
  background-color: #ffffff;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.pricing-header .section-tag {
  margin-bottom: 16px;
}

.pricing-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.pricing-header p {
  color: #8a8a8a;
  font-size: 14px;
  line-height: 1.6;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f1f1f1;
  padding: 24px 24px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-card.popular {
  padding: 52px 24px 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  border-color: #f1f1f1;
  z-index: 2;
}

.popular-tag {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffe5ec;
  color: #ff003c;
  padding: 8px 20px;
  border: 1px solid #ff003c;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.card-header h4 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f1f1;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  margin-bottom: 12px;
  color: #454648;
  font-size: 14px;
  font-weight: 400;
}

.card-features li:last-child {
  margin-bottom: 0;
}

.pricing-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-schedule-call {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 24px;
  background: #090b0e;
  color: #fff;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #2d2f31;
  transition: all 0.3s ease;
}

.btn-schedule-call:hover {
  background: #000;
  border-color: #fff;
  transform: translateY(-3px);
}

/* Process Section */
#process-section {
  padding: 0px 0 56px;
  background-color: #ffffff;
}

.process-header {
  text-align: center;
  margin-bottom: 48px;
}

.process-header .section-tag {
  display: inline-block;
  margin-bottom: 24px;
}

.process-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.process-header p {
  color: #8a8a8a;
  font-size: 14px;
  line-height: 1.6;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f1f3f5;
  border: 1px dashed #d1d5db;
  padding: 8px;
  border-radius: 37px;
  max-width: 1200px;
  margin: 0 auto 50px;
  gap: 8px;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 100px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1 0 auto;
    justify-content: center;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.step.active {
  border-color: #00aeef;
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.1);
}
#process-section .step.active{
  display: flex;
}
.step span {
  font-size: 17px;
  font-weight: 700;
  color: #1a1c1e;
}

.step-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 24px;
  padding: 60px 80px 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
  max-width: 1200px;
  margin: 0 auto;
}

.detail-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.detail-right h3 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  line-height: 1.25;
  margin-bottom: 30px;
  max-width: 400px;
}

.detail-number {
  font-size: 120px;
  font-weight: 800;
  color: #eaeaea;
  line-height: 1;
}

.detail-right {
  display: flex;
  flex-direction: column;
}

.detail-block {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
}

.detail-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.detail-block h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.detail-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* Industries Section */
#industries-section {
  padding: 0 0 72px;
  background-color: #fff;
}

.industries-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.header-content-left {
  max-width: 600px;
}

.header-content-left .section-tag {
  margin-bottom: 24px;
}

.header-content-left h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.header-content-left p {
  color: #8a8a8a;
  font-size: 14px;
  line-height: 1.6;
}

.header-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #f8f9fa;
  border-color: #1a1c1e;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  will-change: transform, opacity;
}

.industry-card {
  position: relative;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.industry-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-bg {
  transform: scale(1.05);
}

.industry-default-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s ease;
}

.industry-card:hover .industry-default-info {
  opacity: 0;
}

.industry-default-info h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.arrow-icon-default {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.industry-card:hover .industry-hover-overlay {
  opacity: 1;
  pointer-events: auto;
}

.hover-content-top h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hover-content-top p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.1;
}

.arrow-icon-red {
  width: 40px;
  height: 40px;
  background: #ff003c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon-red svg {
  transform: rotate(45deg);
}

.arrow-icon-red svg path {
  stroke: #fff;
}

/* CTA Banner */
#cta-banner-section {
  padding: 100px 0 80px;
  background-color: #ffffff;
}

.cta-banner-box {
  background-color: #080808;
  border-radius: 32px;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #1a1a1a;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.cta-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/landing/images/new_hero_pattern.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 140%;
  opacity: 0.7;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 40px;
  margin-top: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 8px 8px 8px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
}

.cta-btn span {
  color: #000;
  font-weight: 600;
  font-size: 18px;
}

.btn-icon-red {
  width: 48px;
  height: 48px;
  background: #ff003c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon-red svg {
  transform: rotate(45deg);
}

/* Case Study */
.case-study-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 45px;
}

.case-study-header .section-tag {
  display: inline-block;
  margin-bottom: 24px;
}

.case-study-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.case-study-header p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Case Study Card */
.case-study-card {
  background: #eff8ff;
  border-radius: 32px;
  overflow: hidden;
  padding: 40px;
  /* Reduced padding */
  border: 1px solid transparent;
}

.case-study-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  /* Reduced gap */
  align-items: center;
  will-change: transform, opacity;
}

.case-study-left {
  display: flex;
  flex-direction: column;
  padding-right: 0;
}

.client-logo {
  height: 40px;
  width: auto;
  margin-bottom: 32px;
  align-self: flex-start;
}

.case-study-left h3 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.25;
}

.case-study-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 40px;
}

.results-section h4 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.results-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
}

.results-section ul li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.6;
}

.results-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #374151;
  font-weight: bold;
}

.results-section ul li strong {
  color: #111827;
  font-weight: 700;
}

.case-study-nav {
  display: flex;
  gap: 16px;
}

.case-study-nav .nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.case-study-nav .nav-btn:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.case-study-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

/* Reliable CSS MacBook Mockup */
.css-macbook {
  position: relative;
  width: 100%;
  max-width: 600px;
  /* Adjust based on image ratio */
  margin: 0 auto;
}

.macbook-top {
  background: #111;
  border-radius: 20px 20px 0 0;
  padding: 3% 3% 0;
  /* Creates the black bezel */
  box-shadow: inset 0 0 0 2px #333;
  position: relative;
}

.camera-dot {
  position: absolute;
  top: 1.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #444;
  border-radius: 50%;
  z-index: 2;
}

.screen-content {
  position: relative;
  width: 100%;
  padding-bottom: 62.5%;
  /* Aspect Ratio */
  overflow: hidden;
  background: #000;
}

.screen-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* or contain */
  border-radius: 4px 4px 0 0;
}

.macbook-base {
  background: linear-gradient(to bottom, #e4e7eb 0%, #d1d5db 100%);
  height: 24px;
  border-radius: 0 0 24px 24px;
  position: relative;
  margin-top: -1px;
  /* seamless connection */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.macbook-base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  background: #aab;
  border-radius: 0 0 8px 8px;
  opacity: 0.6;
}

.project-mockup-raw {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

/* FAQ Section */
#faq-section {
  padding: 52px 0;
  background-color: #fff;
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.faq-header .section-tag {
  display: inline-block;
  margin-bottom: 24px;
}

.faq-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

.faq-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.faq-list {
  column-count: 2;
  column-gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  margin-bottom: 12px;
}

.faq-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-item:hover .faq-icon,
.faq-header-row:hover .faq-icon {
  background: #e5e7eb;
}

.faq-header-row span {
  font-size: 18px;
  color: #111827;
  font-weight: 500;
  padding-right: 20px;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.faq-answer {
  display: none;
  padding: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

.faq-item.open .faq-answer {
  display: block;
}

/********************************************
 data engineering service new page css start 
 *******************************************/
#hero-section h1.page-title {
  text-align: center !important;
  display: table;
  margin: 0 auto 60px;
  padding: 0 20px;
  z-index: 1;
  position: relative;
  font-size: 40px;
}

.pr-section {
  padding-bottom: 60px;
  margin-top: -40px;
  position: relative;
}

.rating-card {
  display: flex;
  width: 100%;
  /* padding-right: 24px; */
  justify-content: space-between;
  align-items: center;
}

.partner-new {
  flex-direction: column;
  padding-left: 24px;
  justify-content: space-between;
}

.partner-new .partners {
  padding: 16px 0;
}

.about-content-new .about-text {
  text-align: center;
}

.about-content-new .about-text h2 {
  max-width: 100%;
}

.about-content-new .about-text ul {
  display: table;
  margin: 0 auto;
}

.about-content-new .about-features {
  margin: 0 -24px;
}

.about-content-new .feature-box {
  padding: 40px;
  text-align: center;
}

.about-content-new .feature-box .feature-icon {
  margin: 0 auto 16px;
}

.partners-logos .partner-badge {
  width: 152px;
}

.partners-logos .partner-badge img {
  min-width: 135px;
  max-height: 42px;
}

.data-process-steps .step {
  flex: initial;
}

.pr-section .partner-badge {
  width: 190px;
  height: 75px;
}

/* data engineering service new page css end */




/* stepCardSection css start */
.stepCardSection .progress-wrap {
      display: flex;
      align-items: flex-start;
      margin-bottom: 36px;
    }

    .stepCardSection .step.active{
      border-color: transparent;
      box-shadow: none;
    }
    .stepCardSection .step-dot {
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 8px;
      flex: 1;
      position: relative;
    }

    /* Connecting line */
    .stepCardSection .step-dot::after {
      content: '';
      position: absolute;
      top: 19px;
      left: calc(50% + -30px);
      right: calc(-50% + 70px);
      height: 2px;
      background: #cbd5e1;
      z-index: 0;
      transition: background 0.45s;
    }
    .stepCardSection.step-dot:last-child::after { display: none; }
    .stepCardSection .step-dot.completed::after  { background: linear-gradient(135deg, #e8193c 0%, #ff5c35 100%); }

    .stepCardSection .dot-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid #cbd5e1;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 13px;
      color: #64748b;
      position: relative;
      z-index: 1;
      transition: all 0.3s cubic-bezier(.4,0,.2,1);
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    }

    .stepCardSection .step-dot.active .dot-circle {
      border-color: #ff003c;
      background: #ff003c;
      color: #fff;
      box-shadow: 0 0 0 5px rgba(232, 25, 60, 0.22), 0 4px 14px rgba(232, 25, 60, 0.22);
    }

    .stepCardSection .step-dot.completed .dot-circle {
      border-color: #ff003c;
      background: #ff003c;
      color: #fff;
      box-shadow: 0 2px 12px rgba(232, 25, 60, 0.22);
    }

    .stepCardSection .dot-label {
      font-size: 10px;
      letter-spacing: 0.08em;
      color: #94a3b8;
      text-transform: uppercase;
      font-weight: 600;
      text-align: center;
      line-height: 1.2;
    }
    .stepCardSection .step-dot.active .dot-label    { color: #e8193c; }
    .stepCardSection .step-dot.completed .dot-label { color: #334155; }

    /* ── Card ── */
    .stepCardSection .card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 44px 44px 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    }

    .stepCardSection .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: #ff003c;
      border-radius: 20px 20px 0 0;
    }
    .stepCardSection .btn-icon-red{
      width: 38px;
      height: 38px;
    }

    /* ── Steps ── */
    .stepCardSection .step { display: none; animation: fadeUp 0.32s ease forwards; }
    .step.active { display: block; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .stepCardSection .step-counter {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #e8193c;
      background: rgba(232, 25, 60, 0.08);
      border: 1px solid rgba(232, 25, 60, 0.18);
      border-radius: 30px;
      padding: 4px 14px;
      margin-bottom: 18px;
    }

    .stepCardSection .question {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(18px, 3.2vw, 23px);
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: -0.015em;
      margin-bottom: 18px;
      color: #0f172a;
    }

    .stepCardSection .question-sub {
      font-size: 14px;
      color: #64748b;
      margin-bottom: 28px;
      line-height: 1.55;
    }

    /* ── Options ── */
    .stepCardSection .options {
      display: grid;
      gap: 10px;
      margin-bottom: 30px;
    }

    .stepCardSection .option-label {
      display: flex;
      align-items: flex-start;
      padding: 15px 20px;
      border-radius: 12px;
      border: 1.5px solid #e2e8f0;
      background: #ffffff;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
      position: relative;
    }

    .stepCardSection .option-label:hover {
      border-color: rgba(232, 25, 60, 0.4);
      box-shadow: 0 2px 14px rgba(232, 25, 60, 0.08);
      background: rgba(232, 25, 60, 0.015);
    }

    .stepCardSection .option-label:has(input:checked) {
      border-color: rgba(232, 25, 60, 0.45);
      background: rgba(232, 25, 60, 0.03);
    }

    .stepCardSection .option-label input { display: none; }

    .stepCardSection .custom-check {
      width: 20px;
      height: 20px;
      min-width: 20px;
      border-radius: 6px;
      border: 2px solid #cbd5e1;
      background: #f0f2f8;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      margin-top: 1px;
    }

    .stepCardSection .custom-check svg {
      opacity: 0;
      transform: scale(0.4);
      transition: all 0.2s;
    }

    .stepCardSection .option-label:has(input:checked) .custom-check {
      background: #ff003c;
      border-color: #ff003c;
      box-shadow: 0 2px 8px #ff003c;
    }
    .stepCardSection .option-label:has(input:checked) .custom-check svg {
      opacity: 1;
      transform: scale(1);
    }

    .stepCardSection .opt-content {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      width: 100%;
    }

    .stepCardSection .opt-text {
      flex: 1;
      font-size: 14.5px;
      font-weight: 500;
      color: #334155;
      line-height: 1.5;
    }

    .stepCardSection .opt-badge {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 2px 10px;
      border-radius: 30px;
      background: rgba(232, 25, 60, 0.09);
      color: #e8193c;
      border: 1px solid rgba(232, 25, 60, 0.2);
      white-space: nowrap;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* ── Email / Step 5 ── */
    .stepCardSection .email-hero {
      text-align: center;
      margin-bottom: 26px;
    }

    .stepCardSection .email-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 18px;
      background: rgba(232, 25, 60, 0.07);
      border: 1.5px solid rgba(232, 25, 60, 0.22);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stepCardSection .input-wrap {
      position: relative;
      margin-bottom: 10px;
    }

    .stepCardSection .input-wrap svg {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #94a3b8;
      pointer-events: none;
    }

    .stepCardSection .email-input {
      width: 100%;
      padding: 15px 18px 15px 48px;
      background: #f0f2f8;
      border: 1.5px solid #e2e8f0;
      border-radius: 12px;
      color: #0f172a;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .stepCardSection .email-input::placeholder { color: #94a3b8; }
    .stepCardSection .email-input:focus {
      border-color: #e8193c;
      box-shadow: 0 0 0 4px rgba(232, 25, 60, 0.22);
      background: #ffffff;
    }

    .stepCardSection .email-note {
      font-size: 12.5px;
      color: #64748b;
      text-align: center;
      margin-top: 8px;
      margin-bottom: 20px;
    }

    /* ── Trust strip ── */
    .stepCardSection .info-strip {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      padding: 14px 18px;
      background: #f0f2f8;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      margin-bottom: 4px;
    }

    .stepCardSection .info-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12.5px;
      color: #64748b;
      font-weight: 500;
      flex: 1;
      min-width: 130px;
    }

    .stepCardSection .info-item svg { color: #22c55e; flex-shrink: 0; }

    /* ── Divider ── */
    .stepCardSection .divider {
      height: 1px;
      background: #e2e8f0;
      margin: 26px 0 22px;
    }

    /* ── Buttons ── */
    .stepCardSection .btn-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .stepCardSection .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      border-radius: 30px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.22s;
      letter-spacing: 0.01em;
    }

    .stepCardSection .btn-ghost {
      background: transparent;
      color: #64748b;
      border: 1.5px solid #cbd5e1;
    }
    .stepCardSection .btn-ghost:hover {
      border-color: rgba(232, 25, 60, 0.38);
      color: #e8193c;
      background: rgba(232, 25, 60, 0.08);
    }

    .stepCardSection .btn-primary {
      background: linear-gradient(135deg, #e8193c 0%, #ff5c35 100%);
      color: #fff;
      box-shadow: 0 4px 18px rgba(232, 25, 60, 0.22);
      flex: 1;
      justify-content: center;
    }
    .stepCardSection .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(232, 25, 60, 0.38);
    }

    .stepCardSection .btn-submit {
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #fff;
      box-shadow: 0 4px 18px rgba(34, 197, 94, 0.28);
      flex: 1;
      justify-content: center;
    }
    .stepCardSection .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(34, 197, 94, 0.42);
    }

    /* ── Success Screen ── */
    .stepCardSection .success-screen {
      display: none;
      text-align: center;
      padding: 24px 0 12px;
      animation: fadeUp 0.4s ease forwards;
    }
    .stepCardSection .success-screen.show { display: block; }

    .stepCardSection .success-circle {
      width: 88px;
      height: 88px;
      background: rgba(34, 197, 94, 0.07);
      border: 2px solid #22c55e;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 26px;
      box-shadow: 0 0 48px rgba(34, 197, 94, 0.15);
    }

    .stepCardSection .success-screen h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 27px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .stepCardSection .success-screen p {
      color: #64748b;
      font-size: 15px;
      max-width: 340px;
      margin: 0 auto 30px;
      line-height: 1.65;
    }

    .stepCardSection .success-badges {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .stepCardSection .s-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12.5px;
      font-weight: 600;
      color: #334155;
      background: #f0f2f8;
      border: 1px solid #e2e8f0;
      border-radius: 30px;
      padding: 7px 16px;
    }
    .stepCardSection .s-badge svg { color: #22c55e; }
/* stepCardSection css end */

@media (max-width: 1200px) {
  .pr-section {
    padding-bottom: 50px;
    margin-top: 50px;
  }

  .pr-section .partner-badge {
    width: auto;
    height: 65px;
    padding: 24px;
  }
  .stepCardSection .step-dot::after{
    width: 100%;
  }
}

@media (max-width: 991px) {
  .partner-new {
    flex-direction: initial !important;
    display: flex;
  }

  .partner-new {
    flex-direction: initial !important;
    display: flex;
  }

  .partners-logos .partner-badge img {
    min-width: 110px;
    max-height: 40px;
  }

  .partner-new .partners {
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pr-section .partner-badge {
    width: auto;
    height: 60px;
    padding: 16px;
  }

  .about-content-new .feature-box h4::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-form .form-row {
    flex-direction: column;
    gap: 36px;
  }

  #hero-section {
    padding-top: 140px;
  }

  .hero-bg-pattern {
    top: -10px;
    height: 110%;
  }

  .bg-vector.full-pattern {
    object-fit: cover;
    opacity: 0.6;
  }

  /* #industries-section .industries-grid {
    display: flex;
    gap: 16px;
    overflow: hidden;
  } */

  #case-study-section {
    padding-top: 0px !important;
  }

  #industries-section .industry-card {
    min-width: 100%;
    height: 320px;
  }

  .faq-list {
    column-count: 1;
    column-gap: 0;
  }

  .footer-content {
    align-items: center;
    text-align: center;
  }

  .footer-top {
    display: flex;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

/* Contact Section */
#contact-section {
  padding: 40px 0;
  background-color: #fff;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Vertically centered */
  gap: 60px;
}

.contact-text {
  flex: 1;
  /* Removed max-width to stretch */
  padding-top: 0;
  /* Removed offset */
}

/* Custom Select & Phone Inputs */
.custom-select-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #8a8a8a;
  cursor: pointer;
}

.custom-select-input span {
  font-size: 18px;
  color: #000;
}

.phone-input-group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #8a8a8a;
  padding: 4px 0;
}

.phone-input-group .country-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 12px;
  border-right: 1px solid #e5e7eb;
  margin-right: 12px;
}

.phone-input-group .country-prefix span {
  font-size: 18px;
  color: #000;
  padding-top: 2px;
}

.phone-input-group input {
  border: none !important;
  padding: 8px 0;
  flex: 1;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-text {
    padding-top: 0;
    margin-bottom: 40px;
    max-width: 100%;
  }
}

/* Footer */

#footer-section {
  background-color: #050505;
  color: #9ca3af;
  padding: 80px 0 40px;
  border-top: 1px solid #111;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Reduced gap */
}

.footer-top {
  padding-bottom: 0;
}

/* Use class for footer logo image */
.footer-logo-img {
  height: 48px;
  width: auto;
  opacity: 1;
  /* Full opacity */
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom p {
  color: #6b7280;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    padding: 0 48px;
  }

  .header-container {
    padding: 0 48px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .header-container {
    padding: 0 32px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .hero-text {
    max-width: 640px;
    align-items: center;
    text-align: center;
  }

  .hero-form-card {
    width: 100%;
    min-width: auto;
  }

  .partners {
    justify-content: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }

  .process-detail {
    grid-template-columns: 1fr;
    padding: 40px 40px 32px;
    gap: 40px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .case-study-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-text h1,
  .about-text h2,
  .services-header h2,
  .pricing-header h2,
  .process-header h2,
  .header-content-left h2,
  .case-study-header h2,
  .faq-header h2 {
    font-size: 38px;
  }

  .site-nav {
    display: none;
  }

  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

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

  .service-item {
    gap: 0;
  }

  .service-media {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0;
    display: none;
  }

  .service-item.active .service-media {
    display: block;
    margin-top: 16px;
  }

  .service-card {
    transform: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }
}

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

  .header-container {
    padding: 0 20px;
    height: 80px;
  }

  .logo {
    padding-right: 20px;
  }

  .hero-content {
    gap: 32px;
    align-items: center;
  }

  .hero-text {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 16px;
  }

  .partners {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-form-card {
    padding: 24px 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .logos-wrapper {
    margin-top: 80px;
  }

  #about-section,
  #services-section,
  #pricing-section,
  #process-section,
  #industries-section,
  #case-study-section,
  #faq-section,
  #contact-section {
    padding: 56px 0;
  }

  #cta-banner-section {
    padding: 0 0 56px;
  }

  .about-content {
    gap: 40px;
  }

  .about-text h2 {
    font-size: 30px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  .about-features::before,
  .about-features::after {
    display: none;
  }

  .feature-box {
    padding: 18px 14px;
  }

  .feature-box h4 {
    position: relative;
    padding-top: 14px;
  }

  .feature-box h4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 2px;
    border-radius: 999px;
    background-color: #e5e7eb;
  }

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

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

  .service-main {
    gap: 12px;
  }

  .service-item h3 {
    font-size: 26px;
  }

  .service-item {
    padding: 28px 0;
    gap: 0;
  }

  .service-num {
    font-size: 18px;
    margin-top: 0;
  }

  .service-arrow {
    width: 40px;
    height: 40px;
  }

  .pricing-header h2,
  .process-header h2,
  .header-content-left h2,
  .case-study-header h2,
  .faq-header h2 {
    font-size: 32px;
  }

  .process-detail {
    padding: 32px 20px 24px;
  }

  .detail-number {
    font-size: 80px;
  }

  .industries-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .header-nav {
    align-self: flex-start;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .industry-card {
    height: 320px;
  }

  .cta-banner-box {
    padding: 72px 24px;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .case-study-card {
    padding: 28px 20px;
  }

  .case-study-nav {
    margin-top: 8px;
  }

  .faq-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .contact-wrapper {
    gap: 40px;
  }

  .contact-text h2 {
    font-size: 32px !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #about-section {
    padding: 60px 0 48px;
  }

  .about-text h2 {
    font-size: 26px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-card {
    height: 280px;
  }

  .feature-box {
    padding: 18px 10px;
  }

  .hero-text h1 {
    font-size: 26px;
    line-height: 1.25;
  }

  .hero-form-card {
    padding: 24px 16px;
  }

  .partners {
    gap: 12px;
  }

  .partner-badge {
    padding: 8px 14px;
  }

  .services-header h2,
  .pricing-header h2,
  .process-header h2,
  .header-content-left h2,
  .case-study-header h2,
  .faq-header h2 {
    font-size: 28px;
  }

  #services-section {
    padding: 60px 0;
  }

  #pricing-section {
    padding: 60px 0;
  }

  .service-item {
    padding: 24px 0;
  }

  .service-item h3 {
    font-size: 22px;
  }

  .service-desc {
    font-size: 14px;
  }

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

  .industry-card {
    height: 280px;
  }

  .thankyou-title {
    font-size: 34px;
  }

  .thankyou-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  body.thankyou-page #hero-section {
    padding-top: 140px;
  }
}

/* Extra fine-tuning just for header + hero */
@media (max-width: 768px) {
  #hero-section {
    padding-top: 140px;
    padding-bottom: 28px;
  }

  .header-cta {
    padding-left: 20px;
  }

  .btn-contact-us {
    padding: 8px 8px 8px 16px;
    font-size: 12px;
  }

  .btn-contact-icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  #hero-section {
    padding-top: 130px;
  }

  .header-cta {
    display: none;
  }
}

/* Process Steps Active States */
.step[data-step="discovery"].active,
.step[ot-step="discovery"].active {
  border-color: #00aeef;
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.1);
  background-color: #f0f9ff;
}

.step[data-step="planning"].active,
.step[iot-step="planning"].active,
.step[industry-step="planning"].active,
.step[tech-step="planning"].active {
  border-color: #8e44ad;
  box-shadow: 0 4px 12px rgba(142, 68, 173, 0.1);
  background-color: #faf5ff;
}

.step[data-step="design"].active,
.step[iot-step="design"].active,
.step[industry-step="design"].active,
.step[tech-step="design"].active {
  border-color: #27ae60;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.1);
  background-color: #f0fff4;
}

.step[data-step="development"].active,
.step[iot-step="development"].active,
.step[industry-step="development"].active,
.step[tech-step="development"].active {
  border-color: #e67e22;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.1);
  background-color: #fffaf0;
}

.step[data-step="launch"].active,
.step[iot-step="launch"].active,
.step[industry-step="launch"].active,
.step[tech-step="launch"].active {
  border-color: #ff4d6d;
  box-shadow: 0 4px 12px rgba(255, 77, 109, 0.1);
  background-color: #fff0f3;
}

.step:not(.active):hover {
  background-color: #f9fafb;
  transform: translateY(-2px);
}

.field-error {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #d80000;
}

.form-success {
  margin-top: 12px;
  padding: 10px;
  background: #e6ffea;
  color: #007a2f;
  border-radius: 6px;
}

.hero-text ul li {
  position: relative;
  padding-left: 30px;
}

.hero-text ul li:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d80000;
  background-size: contain;
  box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.6);
  animation: sectionDotPulse 1.8s infinite;
}

/* File Upload Wrapper */
.file-upload-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px dashed #e4e4e4;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fafafa;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover Effect */
.file-upload-wrapper:hover {
  border-color: #ff4d6d;
  background: #fff5f7;
}

/* Hide Default Input */
.file-upload-wrapper input[type="file"] {
  display: none;
}

/* Custom Button */
.file-upload-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff4d6d;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

.file-upload-label:hover {
  background: #e63b5d;
}

/* Icon */
.file-icon {
  font-size: 16px;
}

/* File Text */
.file-text {
  font-size: 14px;
  color: #fff;
}

/* File Name Display */
.file-name-display {
  font-size: 13px;
  color: #555;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Note Text */
.file-note {
  font-size: 13px;
  font-weight: 400;
  color: #777;
}

.industry-tag {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  color: #ff003c;
}

.industry-tag span {
  font-weight: 700;
  color: #000000;
}

.case-study-card-new {
  position: relative;
  overflow: initial;
  padding: 55px 40px;
}

.case-study-nav-new {
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  right: -28px;
  width: calc(100% + 56px);
  justify-content: space-between;
}

.case-study-btn {
  display: flex;
  align-items: center;
  color: #ff003c;
  font-size: 18px;
  font-weight: 600;
  transition: all .3s;
}

.case-study-btn .arrow-icon-default {
  margin-left: 16px;
  background-color: #ff003c;
  transition: all .3s;
}

.case-study-btn:hover .arrow-icon-default {
  transform: rotate(45deg);
}

.case-study-nav-new button.nav-btn {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  #hero-section h1.page-title {
    font-size: 30px;
    margin: 0 auto 40px;
  }

  .rating-card {
    flex-direction: column;
  }

  .partner-new {
    padding: 24px 0 0;
  }
}

@media(max-width : 575px){
  .stepCardSection .step-dot::after {
      top: 15px;
      left: calc(50% + -20px);
      right: calc(-50% + 0px);
  }
  .stepCardSection .dot-circle{
    width: 30px;
    height: 30px;
  }
  .stepCardSection .card{
    padding: 10px 0;
  }
  .stepCardSection .btn-row{
    flex-direction: column-reverse;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .file-upload-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .file-name-display {
    max-width: 100%;
  }
}

.about-text li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ff003c;
  font-size: 20px;
}