* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    overflow-x: hidden;
}


.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 31px 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 60px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
}

.shopify {
    font-size: 16px;
    color: #333;
}

.brand-section h4 {
    color: #8B8B8B;
    margin-bottom: 30px;
}

.get-started {
    background: #DC4A26;
    color: #fff;
    font-size: 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 2px 0 rgba(255, 255, 255, 0.30) inset, 0 4px 6px 0 rgba(220, 74, 38, 0.14);
    display: flex;
    height: 54px;
    padding: 5px 5px 5px 40px;
    align-items: center;
    gap: 10px;
}

a.get-started svg {
    background: #fff;
    border-radius: 99px;
    display: flex;
    width: 46px;
    height: 46px;
    padding: 10.633px 10.371px 10.367px 10.629px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.bassed-11 {
    font-size: 18px;
    font-weight: 400;
    color: #414141;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    gap: 110px;
}

.hero-left h4 {
    color: #DC4A26;
    font-size: 30px;
    font-weight: 700;
    line-height: 59px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.main-hero-section {
    position: relative;
}

.main-hero-section:before {
    content: '';
    position: absolute;
    width: 100%;
    min-height: 100%;
    z-index: -1;
    bottom: 117px;
    left: 20.1em;
    background: url(../images/glass-effect.png);
    background-size: calc(99em);
    background-repeat: no-repeat;
    display: block;
}

.main-hero-section:after {
    content: '';
    position: absolute;
    width: 100%;
    min-height: 100%;
    z-index: -1;
    bottom: 82px;
    left: 0px;
    background: url(../images/glass-effect-mobile.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: none;
}

/* Left Content */
.hero-left {
    max-width: 50%;
}

.hero-left h1 {
    margin-bottom: 25px;
    color: #0A0909;
    font-size: 80px;
    font-weight: 800;
    line-height: 80px;
    letter-spacing: -2px;
}

.hero-left p {
    margin-bottom: 30px;
    color: #8B8B8B;
}

.cta-btn-1 {
    width: fit-content;
}

/* Right Video Card */
.video-card {
    background: #F4F6F6;
    border: 1px solid #E9E9E9;
    border-radius: 24px;
    padding: 20px;
    width: 50%;
    height: 475px;
}

.video-wrapper {
    background: #000;
    border-radius: 18px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 362px;
    display: block;
}

/* Rating Section */
.rating {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 16px;
}

/* Marquee Section */
.brand-section {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.brand-section::before,
.brand-section::after {
    content: "";
    position: absolute;
    top: 75px;
    width: 150px;
    height: 45%;
    z-index: 2;
}

.brand-section::before {
    left: 0;
    background: linear-gradient(90deg, #FFF 50%, rgba(255, 255, 255, 0.00) 100%);
}

.brand-section::after {
    right: 0;
    background: linear-gradient(270deg, #FFF 50%, rgba(255, 255, 255, 0.00) 100%);
}

.marquee {
    display: flex;
    gap: 80px;
    animation: scroll 20s linear infinite;
}

.marquee span {
    font-size: 22px;
    font-weight: 600;
    color: #999;
}

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

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

/* Responsive */
@media(max-width:1200px) {
    .hero {
        flex-direction: column;
    }

    .hero::before {
        width: 100%;
        height: 50%;
    }

    .video-card {
        margin-top: 15px;
    }
}

.problem-section {
    padding: 80px 0 50px;
    background: linear-gradient(180deg, #FFF 0%, #F4F6F6 15%, #F4F6F6 50%, #F4F6F6 85%, #FFF 100%);
}

.section-title-101 {
    font-size: 52px;
    font-weight: 600;
}

.section-subtitle-101 {
    color: #DC4A26;
    font-size: 20px;
    margin: 10px 0 30px;
}

.problem-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 26px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    height: 100%;
    transition: 0.3s ease;
}


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

.problem-icon {
    font-size: 42px;
    color: #ff4d1c;
}

.problem-badge {
    display: inline-block;
    background: rgba(220, 74, 38, 0.05);
    color: #DC4A26;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.problem-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.problem-title strong {
    font-weight: 800;
}

.problem-text {
    color: #777;
    font-size: 18px;
    line-height: 1.6;
}

.migration-section {
    padding: 50px 0;
}

.migration-box {
    background: #EEEFF0;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.badge-orange {
    background: rgba(220, 74, 38, 0.05);
    color: #DC4A26;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
}

.title-main-21 {
    font-size: 74px;
    font-weight: 600;
    line-height: 84px;
}

.title-sub {
    color: #DC4A26;
    font-weight: 500;
    font-size: 36px;
}

.btn-orange {
    background: #ff4d1c;
    color: #fff;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 600;
}

.btn-orange:hover {
    background: #e84316;
    color: #fff;
}

/* Phone + floating icons */
.phone-wrapper {
    position: relative;
    text-align: center;
}

.services-section {
    padding: 50px 0;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
}

.section-subtitle {
    color: #888;
    font-size: 20px;
}

.service-card {
    background: #fff;
    border-radius: 28px;
    padding: 10px;
    height: 100%;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.main-text {
    padding: 0 10px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-img {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 40px;
    font-weight: 700;
    margin-top: 40px;
}

ul.shopify-content li {
    color: #8B8B8B;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-align: start;
}

ul.benefits li {
    color: #8B8B8B;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -1px;
}

.service-text {
    color: #777;
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.6;
}

.main-images {
    background: #F4F6F6;
    border-radius: 24px 24px 0 0;
}

@media(max-width:992px) {
    .section-title {
        font-size: 40px;
    }
}

.benefits-section {
    padding: 50px 0;
}

.benefits-box {
    background: #F4F6F6;
    border-radius: 30px;
    padding: 0 70px 0px;
    overflow: hidden;
}

.badge-orange-11 {
    background: rgba(220, 74, 38, 0.05);
    color: #DC4A26;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
}

.title-main {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.1;
}

.title-main span {
    color: #000;
}

.title-orange {
    color: #DC4A26 !important;
    font-size: 36px;
    font-weight: 500;
}

.check-list li {
    margin-bottom: 18px;
    font-size: 18px;
    color: #666;
}

.check-list i {
    color: #ff4d1c;
    margin-right: 12px;
    font-size: 20px;
}

.btn-orange {
    background: #ff4d1c;
    color: #fff;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 600;
}

.btn-orange:hover {
    background: #e84316;
    color: #fff;
}

.preview-img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.preview-wrapper {
    position: relative;
    height: 660px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    top: 72px;
    background: #fff;
    padding: 5px 5px;
}

.preview-img {
    position: absolute;
    top: 0;
    /* Bottom touch kare */
    width: 100%;
    transition: transform 40s ease;
}

/* Hover Effect */
.preview-wrapper:hover .preview-img {
    transform: translateY(-212.4em);
}

@media(max-width:992px) {
    .title-main {
        font-size: 40px;
    }

    .benefits-box {
        padding: 40px;
    }
}

/* .slider-section {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 48px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #777;
  margin-bottom: 60px;
}

.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 80%;
  margin: 0 20px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transform: scale(0.9);
  opacity: 0.4;
  transition: 0.5s;
}

.slide.active {
  transform: scale(1);
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.slide-content {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 80%;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.slide-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.slide-content p {
  color: #666;
  margin-bottom: 20px;
}

.tags span {
  background: #f0f0f0;
  padding: 8px 15px;
  border-radius: 20px;
  margin: 5px;
  display: inline-block;
  font-size: 14px;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.prev { left: 0; }
.next { right: 0; } */



.shopify-services-section {
    padding: 72px 0 56px;
    background: #f4f4f4;
}

.shopify-services-header h2 {
    color: #0A0909;
    font-size: 58px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.shopify-services-header p {
    color: #8B8B8B;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 38px;
}

.shopify-services-slider-wrap {
    margin: 0 -14px;
}

.shopify-service-slide {
    padding: 0 14px;
}

.work-main-image {
    width: 100%;
    border-radius: 14px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.shopify-slide-content {
    padding-top: 14px;
}

.shopify-slide-content h3 {
    margin: 0 0 8px;
    color: #171717;
    font-size: 36px;
    line-height: 1;
    font-weight: 600;
}

.shopify-slide-content span {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: #dceecf;
    color: #5f8f39;
    font-size: 15px;
    line-height: 1;
}

.shopify-services-nav {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.shopify-services-nav button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #d9d9d9;
    background: #f8f8f8;
    color: #171717;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.shopify-services-nav button:hover {
    background: #ffffff;
    border-color: #cfcfcf;
}

.shopify-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shopify-dots li {
    line-height: 1;
}

.shopify-dots li span {
    width: 8px;
    height: 8px;
    background: #ccc;
    display: inline-block;
    border-radius: 4px;
    transition: all 0.3s;
}

.shopify-dots li.slick-active span {
    width: 8px;
    height: 24px;
    background: #dc4a26;
}

.shopify-services-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.shopify-service-slide {
    padding: 0 15px;
}

.work-main-image {
    width: 100%;
    border-radius: 12px;
}

.shopify-slide-content {
    margin-top: 20px;
}

.shopify-slide-content h3 {
    font-size: 20px;
    font-weight: 600;
}

.shopify-slide-content span {
    background: #e6f4ea;
    color: #1b7f3a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* NAVIGATION AREA */
.shopify-services-nav {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* ARROWS */
.shopify-prev,
.shopify-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.shopify-prev:hover,
.shopify-next:hover {
    background: #000;
    color: #fff;
}

/* DOTS */
.shopify-dots {
    display: flex !important;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shopify-dots li {
    width: 25px;
    height: 4px;
    background: #ddd;
    border-radius: 4px;
    transition: 0.3s;
}

.shopify-dots li button {
    display: none;
}

/* ACTIVE DOT (Line Style) */
.shopify-dots li.slick-active {
    width: 40px;
    background: #ff4d2d;
}

.shopify-services-slider-wrap .slick-slide {
    padding: 0 15px;
}

.shopify-services-slider-wrap .slick-list {
    margin: 0 -15px;
}

.shopify-services-slider-wrap {
    display: block;
}

.rw-section {
    padding: 100px 0;
}

.rw-header p {
    color: #8B8B8B;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.rw-slider-wrapper {
    overflow: hidden;
    margin-top: 60px;
    height: 635px;
}

.rw-slider-track {
    display: flex;
    transition: transform 0.6s ease;
    height: fit-content;
}

.rw-slide {
    min-width: 33.333% !important;
    padding: 0 20px;
    box-sizing: border-box;
    transition: transform 0.4s ease;
}

.rw-slide img {
    width: 100%;
    border-radius: 18px;
    height: 89%;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.10)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.10));
}

.rw-content {
    margin-top: 20px;
}

.rw-content h3 {
    color: #0A0909;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -1px;
}

.rw-content span {
    padding: 6px 14px;
    border-radius: 99px;
    background: #F4F6F6;
    color: #8B8B8B;
    font-size: 13px;
    font-weight: 500;
    line-height: 19.5px;
}


.rw-controls {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.rw-arrow {
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.rw-dots {
    display: flex;
    gap: 8px;
}

.rw-dots div {
    width: 25px;
    height: 4px;
    background: #ddd;
    border-radius: 4px;
    transition: 0.3s;
}

.rw-dots div.active {
    width: 40px;
    background: #ff4d2d;
}

@media(max-width:1200px) {
    .shopify-services-header h2 {
        font-size: 48px;
    }

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

    .work-main-image {
        aspect-ratio: 31 / 40;
    }

    .shopify-slide-content h3 {
        font-size: 31px;
    }
}

@media(max-width:768px) {
    .shopify-services-section {
        padding: 52px 0 40px;
    }

    .footer-top-row {
        order: 2;
        margin-top: 20px;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .rw-slide {
        min-width: 100% !important;
    }

    .budget-btn {
        margin: 0 !important;
    }

    .footer-text-row {
        order: 1;
        text-align: center;
        gap: 5px;
    }

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

    .shopify-services-header p {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .shopify-services-slider-wrap {
        margin: 0;
    }

    .shopify-service-slide {
        padding: 0;
    }

    .work-main-image {
        aspect-ratio: 4 / 5;
    }

    .shopify-slide-content h3 {
        font-size: 28px;
    }

    .shopify-slide-content span {
        font-size: 13px;
    }

    .shopify-services-nav {
        gap: 16px;
    }

    .shopify-services-nav button {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }

    section.benefits-section h2.section-title {
        text-align: start !important;
    }

    .man-cta-11 .get-started {
        justify-content: end;
        padding: 5px 5px 5px 40px;
        gap: 35px;
    }

    .main-cta-btn-11 {
        justify-content: start !important;
    }

    .rw-section {
        padding: 0 0 50px;
    }

    .hiring-cta {
        display: none !important;
    }

    .rw-section .section-title {
        text-align: center;
    }

    .problem-section .section-title {
        text-align: center;
    }

    .custom-arrows {
        position: absolute;
        top: 31rem;
        left: 8rem;
    }

    .testimonial-slider {
        width: 100% !important;
    }


    .testimonial-slider .slick-list {
        padding: 0 !important;
    }
}

.testimonial-header {
    position: relative;
}


.hiring-section {
    padding: 100px 0;
    background: #f3f3f3;
    text-align: center;
}

h2.hiring-title {
    margin: 0 0 30px;
}

.hiring-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hiring-card {
    padding: 25px;
    text-align: left;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
}

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

.hiring-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
}

.hiring-icon img {
    width: 100%;
}

.hiring-card h3 {
    margin-bottom: 20px;
    color: #0A0909;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -1px;
}

.hiring-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #8B8B8B;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.hiring-card ul {
    list-style: none;
    padding: 0;
}

.hiring-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #8B8B8B;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    padding: 0;
}


/* CTA Section */

.hiring-cta {
    margin-top: 60px;
    display: inline-flex;
    align-items: center;
    background: #ffff;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    gap: 15px;
}

.hiring-cta span {
    color: #8B8B8B;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -1px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff4d2d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn .arrow {
    background: #fff;
    color: #ff4d2d;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Responsive */

@media (max-width: 992px) {
    .hiring-grid {
        grid-template-columns: 1fr;
    }

    .hiring-title {
        font-size: 36px;
    }
}


.testimonial-section {
    padding: 50px 0 100px;
    overflow: hidden;
}


.slick-slide {
    float: left !important;
}

.testimonial-slider .slick-list {
    margin: 0 -18px;
    padding: 0 0 0 18px;
}

.testimonial-slider {
    width: calc(100% + ((100vw - 100%) / 2));
}


.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.custom-arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    margin-left: 10px;
    font-size: 18px;
}

.testimonial-card {
    background: #F4F6F6;
    padding: 42px;
    border-radius: 20px;
    margin: 0 18px;
    min-height: 280px;
}

.quote {
    color: #e34c26;
    margin-bottom: 40px;
}

.testimonial-card p {
    color: #8B8B8B;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    min-height: 182px;
}

.testimonial-card h4 {
    margin-top: 25px;
    margin-bottom: 5px;
    color: #0A0909;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -1px;
}

.testimonial-card span {
    color: #8B8B8B;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.contact-section {
    background: #000;
    padding: 50px 0;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    padding: 60px;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.contact-form {
    flex: 1;
}

.small-text {
    margin-bottom: 0;
    color: #DC4A26;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}

.contact-form h2 {
    margin-bottom: 40px;
    color: #0A0909;
    font-size: 54px;
    font-weight: 600;
    line-height: 59px;
    letter-spacing: -2px;
}

.contact-form label {
    display: block;
    margin: 15px 0 8px;
    color: #7F8183;
    font-size: 20px;
    line-height: normal;
    letter-spacing: -0.51px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder .contact-form select option::placeholder {
    color: #7F8183;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.51px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    outline: none;
    border-radius: 11px;
    border: 2px solid #E9E9E9;
    background: #FFF;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.budget-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 15px;
}

.budget-btn {
    padding: 10px;
    border-radius: 25px;
    border: 1px solid #ccc;
    cursor: pointer;
    background: transparent;
    transition: 0.3s;
}

label.budget-btn {
    font-size: 16px;
}

/* Active selected style */
input[type="radio"]:checked+.budget-btn {
    background: #fff;
    color: #000;
    border-color: #e94e1b;
}

.submit-btn {
    background: #e94e1b;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn span {
    background: #fff;
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.man-cta-11 .get-started {
    justify-content: center;
    padding: 5px 5px 5px 40px;
}

.faq-section {
    padding: 100px 0;
}

/* RIGHT IMAGE */

.contact-image {
    flex: 1;
    position: relative;
}

.contact-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: 70px;
    background: #fff;
    padding: 26px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.avatars {
    display: flex;
    margin-bottom: 10px;
}

.avatars img {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.floating-card span {
    color: #F15533;
}

.floating-card p {
    color: #070D14;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.95px;
    letter-spacing: -0.51px;
}

.support-image-box {
    position: relative;
    max-width: 50%;
}

.support-image-box img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* Overlay Card */
.support-card {
    position: absolute;
    bottom: 7rem;
    left: 4rem;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    width: 80%;
}

.support-user {
    display: flex;
    gap: 14px;
    align-items: center;
}

.support-user img {
    width: 94px;
    height: 94px;
    border-radius: 11px;
    object-fit: cover;
}

.support-user h4 {
    margin: 0;
    color: #0A0909;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
}

.support-user span {
    color: #8B8B8B;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.support-user p {
    margin: 4px 0 0;
    color: #0A0909;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}

.support-team {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 22.95px;
    letter-spacing: -0.51px;
}

.support-team span {
    color: #DC4A26;
}

.support-user-slider {
    overflow: hidden;
    position: relative;
}

.support-user-track {
    display: flex;
    transition: transform 0.5s ease;
}

.support-user {
    min-width: 100%;
    display: flex;
    gap: 14px;
    align-items: center;
}

.team-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
}

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

.team-card {
    text-align: left;
    display: flex;
    gap: 20px;
}

.team-card img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.team-card h4 {
    font-size: 16px;
    margin: 5px 0;
}

.team-card span {
    font-size: 13px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 13px;
    color: #333;
}

.team-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .main-hero-section:after {
        display: block;
    }

    .problem-section {
        padding: 35px 0 35px;
    }

    .main-hero-section:before {
        display: none;
    }

    .main-fotter-11 {
        display: flex;
        flex-direction: column;
        height: 70px;
    }

    a.get-started svg {
        width: 40px;
        height: 40px;
    }

    .service-item {
        flex-direction: column;
    }

    .navbar .get-started {
        display: none;
    }

    .phone-wrapper img {
        width: 100%;
    }

    .preview-wrapper:hover .preview-img {
        transform: translateY(-120.4em);
    }
}

/* Responsive */

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
}


.faq-subtitle {
    color: #8B8B8B;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.custom-accordion {
    max-width: 900px;
}

.accordion-item {
    border-radius: 22px !important;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #DADADA;
    background: var(--White, #FFF);
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solid #DADADA !important;
}

.accordion-button {
    background: transparent;
    font-size: 20px;
    font-weight: 500;
    padding: 25px 45px 25px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #000;
    border-radius: 21px 21px 0 0;
    background: #F4F6F6;
    border-bottom: 0px;
}

.accordion-body {
    font-size: 17px;
    color: #7F8183;
    padding: 0 45px 25px;
    border-radius: 0 0 21px 21px;
    background: #F4F6F6;
    border-top: 0;
    text-align: start;
}

button.accordion-button {
    color: #0A0909;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}

.accordion-collapse {
    color: #8B8B8B;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
}

.accordion-button::after {
    display: none !important;
}

/* Add custom + icon */
.accordion-button {
    position: relative;
}

.accordion-button::before {
    content: "+";
    position: absolute;
    right: 25px;
    font-size: 24px;
    transition: 0.3s ease;
}

/* Change to minus when open */
.accordion-button:not(.collapsed)::before {
    content: "−";
}

.footer-exact {
    background: #F4F6F6;
    padding: 50px 0 0;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-text-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 32px;
    font-weight: 500;
}

.text-left {
    text-align: left;
    color: #0A0909;
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -1px;
}

.text-center {
    text-align: center;
    color: #0A0909;
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -1px;
}

.text-right {
    text-align: right;
    color: #0A0909;
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -1px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #d0d0d0;
    margin-top: 40px;
    color: #0A0909;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
}

.main-fotter-11 {
    display: flex;
    flex-direction: column;
}

.footer-top-row,
.footer-text-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-text-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .rw-slide {
        min-width: 100% !important;
    }

    .text-left,
    .text-right {
        text-align: center;
    }

    .footer-top-row {
        gap: 20px;
    }
}

@media (max-width: 1600px) {
    .main-hero-section:before {
        left: 0 !important;
    }
}

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

    .hero {
        gap: 50px;
    }

    .hero-left h1,
    .title-main-21 {
        font-size: 60px;
        line-height: 1.1;
    }

    .hero-left h4 {
        font-size: 24px;
        line-height: 1.4;
    }

    .rating {
        gap: 30px;
    }

    .rw-slider-wrapper {
        height: 530px;
    }
}

@media (max-width: 1199px) {

    .hero-left,
    .video-card {
        width: 100%;
        max-width: 100%;
    }

    .video-card {
        height: auto;
    }

    .video-wrapper video {
        height: auto;
    }

    .get-started {
        font-size: 18px;
        padding-left: 24px;
    }

    .section-title-101,
    .section-title,
    .shopify-services-header h2,
    .testimonial-header h2,
    .contact-form h2,
    .faq-title {
        font-size: 42px;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .title-sub,
    .title-orange {
        font-size: 30px;
    }

    .service-title {
        font-size: 32px;
    }

    .floating-card {
        left: 20px;
        bottom: 20px;
        padding: 18px;
    }

    .support-image-box {
        max-width: 100%;
    }

    .support-card {
        left: 10px;
        right: 10px;
        width: 95%;
        bottom: 10px;
    }

    .support-card {
        padding: 15px;
    }
}

@media (max-width: 991px) {
    .main-hero-section:before {
        left: 0;
        bottom: 40px;
        background-size: 100% auto;
    }

    .navbar {
        flex-wrap: wrap;
        gap: 14px;
        padding: 20px 0;
    }

    .nav-left {
        gap: 20px;
    }

    .hero {
        padding: 30px 0;
        gap: 30px;
    }

    .hero-left h1,
    .title-main-21,
    .rw-header h2 {
        font-size: 46px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .hero-left h4 {
        font-size: 20px;
    }

    .rating {
        gap: 25px;
        text-align: center;
    }

    .section-title {
        text-align: center;
    }

    .bassed-11 {
        font-size: 14px;
    }

    .video-card {
        padding: 10px;
    }

    .brand-section::before,
    .brand-section::after {
        width: 70px;
    }

    .benefits-box,
    .contact-wrapper {
        padding: 24px;
    }

    .preview-wrapper {
        height: 460px;
        top: 24px;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .testimonial-card {
        padding: 26px;
        min-height: 230px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .footer-text-row,
    .text-left,
    .text-center,
    .text-right {
        font-size: 16px;
        line-height: 1.3;
    }

}


@media (max-width: 767px) {
    .main-hero-section:before {
        bottom: 83px;
        background-size: calc(100em);
        left: -335px !important;
        width: 725px;
    }

    section.main-hero-section .hero-left h1 {
        font-size: 50px;
    }

    .container {
        padding: 0 14px;
    }

    .nav-left {
        width: 100%;
        justify-content: space-between;
    }

    .get-started {
        width: 100%;
        justify-content: space-between;
        font-size: 16px;
        height: 50px;
        padding: 4px 4px 4px 18px;
    }



    .title-main-21,
    .section-title-101,
    .section-title,
    .shopify-services-header h2,
    .testimonial-header h2,
    .contact-form h2,
    .faq-title,
    .rw-header h2 {
        font-size: 40px;
    }

    .section-subtitle,
    .shopify-services-header p,
    .faq-subtitle,
    .rw-header p,
    .testimonial-card p,
    .contact-form label {
        font-size: 16px;
        line-height: 1.5;
    }

    .service-title {
        font-size: 28px;
        margin-top: 22px;
    }

    .service-text,
    .problem-text,
    .support-user span,
    .support-user p,
    .testimonial-card span {
        font-size: 15px;
        line-height: 1.5;
    }

    .problem-title,
    .rw-content h3,
    .support-user h4 {
        font-size: 20px;
        line-height: 1.4;
    }

    .support-user img {
        width: 70px;
        height: 70px;
    }

    .support-card {
        position: absolute;
        margin-top: 16px;
    }

    .floating-card {
        position: static;
        margin-top: 16px;
    }

    .contact-form h2 {
        margin-bottom: 20px;
    }

    .accordion-button,
    button.accordion-button {
        padding: 18px 40px 18px 20px;
        font-size: 17px;
        line-height: 1.4;
    }

    .accordion-body {
        padding: 0 20px 18px;
        font-size: 15px;
    }

    .hiring-section {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {

    .logo img,
    .shopify img {
        width: auto;
        max-height: 34px;
    }

    .marquee {
        gap: 45px;
    }

    .marquee span img {
        max-height: 22px;
    }

    .problem-card,
    .service-card,
    .testimonial-card {
        border-radius: 16px;
    }

    .contact-wrapper,
    .migration-box,
    .benefits-box {
        padding: 18px;
        border-radius: 18px;
    }

    .submit-btn {
        width: 100%;
        justify-content: space-between;
    }
}


 .error-message {
        color: red;
        font-size: 14px;
        margin: 0px 0px 0px 10px;
    }