@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.dm-sans {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
main {
  background-color: transparent;
}
#leadForm select option {color: #333!important}
button.owl-prev {
  display: flex;
  align-items: unset;
  font-size: 30px !important;
  justify-content: center;
}
button.owl-next {
  display: flex;
  align-items: unset;
  font-size: 30px !important;
  justify-content: center;
}
.vl-shopify {
  height: 100px;
  width: 4px;
  border-radius: 13px;
  background-color: #d7d7d7;
  position: absolute;

  top: 71px;
  bottom: 0;
}
.flip-box-back {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #a91f25;
  color: white;
  transform: rotateY(180deg);
  overflow-y: scroll;
  position: relative;
  z-index: 99999;
  scrollbar-width: none;
}
.flip-box {
  background-color: transparent;

  height: 62vh;

  perspective: 1000px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  background-color: #bbb;
  color: black;
}

.flip-box-back {
  background-color: #a91f25;
  color: white;
  transform: rotateY(180deg);
}
.third-party-shopify {
  background-image: url("../imgs/shopifyExpert/third-party.png") !important;
  height: 60vh !important;
}
.contact-us-shopify {
  background-color: #a91f25;
}
.marketing-shopify {
  background-image: url("../imgs/shopifyExpert/digital-marketing.png") !important;
  height: 60vh !important;
}

/* Spacer to allow scrolling before the section */
.scroll-spacer {
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.main-title {
  color: #a91f25;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* Left Column - Image Placeholder Container */
.image-col {
  position: sticky;
  top: 100px;
}

/* NEW: Wrapper to hold the stacked images and maintain aspect ratio */
.image-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

/* MODIFIED: Stacked images with fade transitions */
.image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;

  /* Animation properties */
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

/* Show the active image */
.image-placeholder.active {
  opacity: 1;
  visibility: visible;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
}

.img-text {
  font-size: 1.2rem;
  color: #666;
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
  padding: 0 15px;
}

/* Right Column - Timeline */
.timeline-col {
  position: relative;
  padding-bottom: 50px;
}

.timeline-track-container {
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 20px; /* Center of the node column */
  width: 2px;
  background-color: gray;
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: -1px; /* Align with 2px track */
  width: 4px;
  background-color: #a91f25;
  height: 0%;
  z-index: 2;
  transition: height 0.1s ease-out;
}

.step {
  display: flex;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}

.step:last-child {
  margin-bottom: 0;
}

/* Node Styling */
.node-wrapper {
  width: 42px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding-top: 6px; /* Align with first line of text */
}

.node {
  width: 12px;
  height: 12px;
  background-color: gray;
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Active Node Styling */
.step.active .node {
  width: 28px;
  height: 28px;
  background-color: transparent;
  border: 1px solid #a91f25;
  transform: translateY(-8px); /* Adjust alignment due to size change */
}

.step.active .node::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #a91f25;
  border-radius: 50%;
}

/* Content Styling */
.content-range {
  padding-left: 20px;
  opacity: 0.3;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.step.active .content-range {
  opacity: 1;
  transform: translateY(0);
}

.content-range h3 {
  color: #a91f25;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.content-range p {
  color: rgb(0, 0, 0);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (min-width:1100px) and (max-width:1400px){
  .shopify-banner-heading {font-size: 56px!important}
}

/* Responsive Design */
@media (max-width: 768px) {
  .layout-grid {
    grid-template-columns: 1fr;
  }
  .image-col {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
  /* .container {
                margin-top: 20px;
                padding: 30px 15px;
            } */
}

.development-shopify {
  background-image: url("../imgs/shopifyExpert/shopify-development.png") !important;
  height: 60vh !important;
}
.ongoing-support-shopify {
  background-image: url("../imgs/shopifyExpert/ongoing-support.png") !important;
  height: 60vh !important;
}
.projectbanner {
  background-color: #a91f25;
}
.benefits-heading {
  font-size: 20px;
}
.benefits-shopify {
  width: 16%;
}


.Statistics {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: 600;
  font-size: 14.8px;
  line-height: 23.62px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #161519;
}
.shopify-banner-heading {
  font-family: var(--font_primary);
  font-weight: 300 !important;
  font-style: Regular;
  font-size: 62px;
  color: white !important;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}
.landing-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bf1e24;
  color: black;
}
img.shopify-logo-banner {
  height: 250px;
}
.shopify-hero-banner {
  background-image: url("../imgs/shopifyExpert/shopify-banner.png");
}
.para-statics {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  text-align: left;
  vertical-align: middle;
}


.bespoke-solution {
  font-family: var(--font_primary);
  font-weight: 600;
  font-size: 48px;
  line-height: 64px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000000;
}
.bespoke-solution-para {
  font-family: var(--font_primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #666666;
}




p.shopify-para {
  font-family: var(--font_primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 23.04px;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  color: white;
}


section.let-talk.bg-black.padding-all {
  margin-top: 80px;
  margin-bottom: 80px;
}

.lets-talk-para {
  font-family: var(--font_primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #a5a5a5;
}
.lets-talk-span {
  font-family: var(--font_primary);
  font-weight: 600;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #cecece;
}
.client-testimonial {
  font-family: var(--font_primary);
  font-weight: 500;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: #282828;
}
.client-testimonial-span {
  font-family: var(--font_primary);
  font-weight: 500;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: 0;
  text-align: center;
  color: #cecece;
}
.padding-all {
  padding: 50px 15px;
}
.contnt {
  margin-top: auto;
}
.card-section.container-fluid {
  display: flex;
  justify-content: center;
}
.slider-wrapper {
  width: 100%;
  padding: 2rem 1rem;
}
.slide-item {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 10px;
  padding: 24px 0 0;
  gap: 20px;
  border: 1px solid #e6e6e6;
}
.discovery-stratgy {
}
.left-content {
  flex: 1 1 300px;
  max-width: 500px;
  padding: 0 20px 20px 20px;
}
.left-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.step-circle-div {
  margin-bottom: 15px;
}
.step-circle {
  width: 40px;
  height: 40px;
  border: 2px solid black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
}
.right-content {
  flex: 1 1 300px;
}
.right-content img {
  max-width: 100%;
  border-radius: 8px;
}
.step-circle {
  width: 40px;
  height: 40px;
  border: 1px solid #282828;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-family: var(--font_primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 23.04px;
  letter-spacing: 2%;
  vertical-align: middle;
}
.discovery-stratgy {
  font-family: Satoshi;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.24px;
  vertical-align: middle;
  color: #282828;
}
.how-it-works {
  padding: 0px 46px 65px 34px;
}
img.carousel-image {
  width: 100% !important;
  height: 330px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #262626;
  background: #0e0d0d;
  border-radius: 10px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", sans-serif;
}
.contact-form label {
  color: #ffffff;
  font-family: var(--font_primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  vertical-align: middle;
}
.contact-form input,
.contact-form textarea {
  padding: 10px 15px;
  border: 1px solid #222222;
  border-radius: 6px;
  font-size: 14px;
  color: #fff !important;
  outline: none;
  background-color: #131212 !important;
  box-shadow: none !important;
  transition: border 0.2s ease-in-out;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
}
.contact-form button {
  background-color: #ffffff;
  color: #0e0d0d;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: var(--font_primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.26px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}
.contact-form button:hover,
.contact-form button:focus {
  background-color: #d00909;
  color: #fff !important;
}
.testimonial-slider {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 0 0 1px #e0e0e0;
  position: relative;
}
.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 20px;
}
.testimonial-name {
  font-weight: 600;
}
.testimonial-role {
  font-size: 0.9rem;
  color: #666;
}
.testimonial-quote {
  font-family: var(--font_primary);
  font-weight: 600;
  font-size: 30px;
  line-height: 44.2px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: #282828;
}


.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}
.dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
}
.dot.active {
  background: #000;
}
blockquote.testimonial-quote {
  text-align: center;
}
.testimonial-profile {
  margin: auto;
  text-align: center;
}
.expertise-img {
  width: 34px;
  height: auto;
}
.shopify-banner {
  margin-bottom: 130px !important;
}
section.acheivement-sec.logos-section.bg-white {
  margin-top: 50px;
  border-bottom: 1px solid #e6e6e6;
}
.logos-section .swiper-slide {
  border-right: 1px solid #e6e6e6;
}
.banner-heading {
  font-family: var(--font_primary);
  font-weight: 700 !important;
  font-size: 74px !important;
  line-height: 74px !important;
  letter-spacing: -1px !important;
  text-align: center !important;
  vertical-align: middle !important;
  text-transform: capitalize !important;
}
.banner-para {
  font-family: var(--font_primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}
.shopify-banner img {
  max-width: 75%;
}
.custom-carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.custom-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  padding: 0 15px;
}
.custom-slide {
  min-width: 65%;
  margin-right: 20px;
  background: white;
  padding: 50px;
  border-radius: 8px;
  border: 1px solid #cccccc;
}
button.custom-prev-btn.nav-btn {
  background: #ffffff;
  border: 1px solid;
  z-index: 9;
}
button.custom-next-btn.nav-btn {
  background: #ffffff;
  border: 1px solid;
  z-index: 9;
  margin-left: -51px;
}
.active-slide {
  transform: scale(1);
  opacity: 1;
}
.custom-carousel-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.custom-carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.cta-shopify {
  font-family: "Outfit", serif !important;
  font-weight: 800 !important;
  font-style: Bold;
  font-size: 60px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}
.contact-card {
  width: 100%;
  max-width: 450px;
  padding: 30px;
  border-radius: 12px;
  background: #3c4139;
  backdrop-filter: blur(10px);
  opacity: 0.8;
}
.why-shopify-para {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 179%;
  letter-spacing: 0%;
  color: #050411;
}
.why-shopify-heading {
  font-family: var(--font_primary);
  font-weight: 600 !important;
  font-style: SemiBold;
  font-size: 35px;
  leading-trim: NONE;
  line-height: 98%;
  color: #a91f25 !important;
  letter-spacing: 0%;
}
.certificates-heading {
  font-family: var(--font_primary);
  font-weight: 600 !important;
  font-style: SemiBold;
  font-size: 35px;
  leading-trim: NONE;
  line-height: 98%;
  color: #000000 !important;
  letter-spacing: 0%;
}

.custom-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #b8b8b8;
  padding: 12px;
  border-radius: 8px;
}

.custom-input::placeholder {
  color: #ccc;
}

.custom-input:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #b8b8b8;
  box-shadow: none;
}

.country-code {
  max-width: 90px;
  background: rgba(255, 255, 255, 0.08);
  color: #b8b8b8;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.custom-btn {
  background: #a91f25;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
}

.custom-btn:hover {
  background: #a61f1f;
  color: #fff;
}
.custom-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
}
.active-dot {
  background: #333;
}
.shopify-banner-para {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  color: white;
  leading-trim: NONE;
  line-height: 34px;
  letter-spacing: 0%;
}

.owl-item {
  width: 986px;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  height: 37px;
  border: none;
  padding: 0 !important;
  font: inherit;
  width: 36px;
  background-color: #f5f5f5 !important;
  border-radius: 50%;
}

button.owl-next {
  position: absolute;
  right: 0;
  top: 50%;
}
button.owl-prev {
  top: 50%;
  position: absolute;
}

@media screen and (max-width: 600px) {
  .shopify-hero-banner {
    background-image: url(../imgs/shopifyExpert/shopify-banner.png);
  }
  .img-logo-banner {
    justify-content: start !important;
  }
  img.shopify-logo-banner {
    height: 156px;
  }
  .row.d-flex.justify-content-center.align-items-center.reverse {
    flex-direction: column-reverse;
  }
  .vl-shopify {
    display: none;
  }
  h1.shopify-banner-heading.text-white.text-start {
    font-size: 32px;
    font-weight: 400;
  }
  .how-it-works {
    padding: 0px 0px 1px 28px;
  }
  .certificates-heading {
    font-size: 25px;
  }
  #certification-partner {
    width: 100%;
    overflow: scroll;
    gap: 25px;
    scrollbar-width: none;
    margin-bottom: 22px;
  }
  h3.gen-ai-heading.benefits-heading {
    font-size: 15px !important;
    font-weight: 500 !important;
  }
  h1.cta-shopify.text-white.text-center.mb-4 {
    font-size: 32px;
    margin-top: 34px;
  }
  h3.why-shopify-heading {
    font-size: 22px;
    margin-bottom: 26px;
  }
  .shopify-banner-para {
    margin-bottom: 28px;

    font-size: 16px;

    line-height: 28px;
  }
  h1.mt-4.banner-heading.text-center {
    line-height: 46px !important;
    font-size: 40px !important;
  }
  
 
  .custom-slide {
    min-width: 100% !important;
  }
  section.acheivement-sec.logos-section.bg-white {
    margin-top: 0;
  }
  .row.d-flex.justify-content-center.pixels-shopifybanner.padding-all.w-75 {
    width: 100% !important;
  }
  .shopify-banner {
    text-align: center;
    margin-bottom: 70px !important;
  }
  .shopify-banner img {
    max-width: 150%;
    width: 135%;
    margin: 0 auto;
    margin-left: 6%;
  }
  .stats-section .padding-all {
    padding-bottom: 50px;
  }
 
  .bespoke-solution {
    font-size: 33px;
    line-height: 40px !important;
  }
  .shopify-pixels-banner {
    background-color: #fff;
    padding: 0 !important;
  }
  p.shopify-plus,
  span.expert-shopify {
    font-size: 44px;
  }
  .client-testimonial {
    font-size: 44px;
    line-height: 44px;
  }
  .custom-slide {
    padding: 20px !important;
  }
  .testimonial-quote {
    font-size: 20px;
    line-height: 24px;
  }
  
  
  .lets-talk-span {
    font-size: 50px;
    display: block;
  }
  section.let-talk.bg-black.padding-all {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 800px) {
  br {
    display: none;
  }
}
