* {
    box-sizing: border-box;
    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
    /* font-family: 'Poppins', serif; */
    font-family: "Montserrat", sans-serif;
}

    .left-img-rgt-cont {
      padding: 25px 0;
      background: linear-gradient(135deg, #87ceeb, #6a5acd, #1e90ff);
    }

    @media (max-width: 575px) {
      .left-img-rgt-cont {
        padding: 40px 0;
      }
    }

    .left-img-rgt-cont .row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
    }

    /* Scoped container and columns to avoid affecting rest of UI */
    .left-img-rgt-cont .container {
      width: 100%;
      margin-right: auto;
      margin-left: auto;
      padding-right: 15px;
      padding-left: 15px;
    }

    /* Default: stack on small screens */
    .left-img-rgt-cont .col-lg-3,
    .left-img-rgt-cont .col-lg-8 {
      flex: 0 0 100%;
      max-width: 100%;
    }

    /* Large screens: apply column widths */
    @media (min-width: 992px) {
      .left-img-rgt-cont .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
      }

      .left-img-rgt-cont .col-lg-8 {
        flex: 0 0 66.6667%;
        max-width: 66.6667%;
      }
    }

    @media (max-width: 575px) {
      .left-img-rgt-cont .row {
        gap: 20px;
      }
    }

    .rgt-cont-wrap h2 {
      color: #fff;
      font-weight: 700;
      line-height: 1.5;
      font-size: 2rem;
    }

    @media (max-width: 991px) {
      .rgt-cont-wrap h2 {
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .rgt-cont-wrap h2 {
        font-size: 28px;
      }
    }

    @media (max-width: 575px) {
      .rgt-cont-wrap h2 {
        font-size: 24px;
      }

      /* overrides style.css 15px due to load order */
    }

    @media (max-width: 400px) {
      .rgt-cont-wrap h2 {
        font-size: 16px;
      }
    }

    @media (max-width: 991px) {
      .lft-img-wrap {
        max-width: 200px;
        margin: 0 auto;
      }

      .lft-img-wrap img {
        width: 100%;
      }
    }

    @media (min-width: 1200px) {
      .container {
        max-width: 1160px !important;
      }
    }

body {
    scroll-behavior: smooth;
}

.text-green-theme{
    color: #82c600 !important;
}

.bg-green-theme{
    background-color: #82c600 !important;
}

.bg-yellow-theme {
    background-color: #ffd600;
}
/* -------------------- Nav Section ------------------- */

.header {
    font-size: 1.5rem;
}

.logo-title-box {
    margin: 5px 10px;
}

.logo-title-box h2 {
    /* margin-top: 10px; */
    font-size: 21px;
    font-weight: 700;
    line-height: 0.8;
    color: #82c600;
}

.logo-title-box p {
    font-size: 14px;
    color: #545454cf;
    /* font-weight: 600; */
}



/* ------------------------ header section ------------------------ */
.header-logo-box a {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

.header-logo-box img {
    width: 100%;
    max-width: 300px;
}

/* Hire Top 3.5% Shopify Experts */
.hire-banner {
    background-color: #fff;
    background-image: linear-gradient(#e3e3e3 1px, transparent 0),
        linear-gradient(90deg, #e3e3e3 1px, #fff 0);
    background-size: 130px 150px;
    background-position: 50%;
}

.home-right-sec-img .carousel-container {
    height: 100%;
    margin-left: 20px;
}

.home-right-sec-img img {
    height: 500px;
    width: 500px;
    object-fit: contain;
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.article {
    display: flex;
    justify-content: center;
}

.rating-card {
    border: 1px solid gray;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 1px 1px 10px gray;
}

/* .button {
  width: 280px;
  background-color: #ffda30;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
} */



.scrolling-ribbon-container {
    overflow: hidden;
    position: relative;
}

.scrolling-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 3rem;
    padding: 1rem;
    /* animation: scroll 10s linear infinite steps(2); Use steps for controlled sliding */
}

.logos-scrolling-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    padding: 1rem;
    animation: scroll 10s ease-in-out infinite;
}

/* Scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    /* 25% {
        transform: translateX(-10%);
    }

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

    75% {
        transform: translateX(-40%);
    } */
    100% {
        transform: translateX(
                /* calc(-250px * 2) */
                -100%);
    }

}

.tool,
.logo-box {
    flex: 0 0 auto;
    display: flex;
    column-gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    min-width: 120px;
}

.tool img {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 60px;
    margin-bottom: 0.5rem;
}

.tool h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.logo-box img {
    width: 200px;
    margin-bottom: 0.5rem;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
}

.new-dark-logo {
    background: #000;
    padding: 5px 0;
}


/* --------------- Trusted Global Brands Carousel ----------------------  */

.trusted-global {
    background-color: rgb(242, 242, 242);
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Full width */
    max-width: 850px;
    /* Optional, for demonstration */
    height: 120px;
    /* Reduced height */
}
a.bg-yellow-theme.hover\:bg-black.hover\:text-white.px-4.py-2.border.rounded-full.font-semibold.text-xs.sm\:text-lg.transition-colors.duration-300 {
    display: inline-block;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* Smooth sliding */
}

.carousel-item {
    flex: 0 0 auto;
    width: 200px;
    height: 65px;
    margin: 0px 10px;
    object-fit: contain;
}

.carousel-fixed-text {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}


/* ----------------Client Testimonials ------------------------ */

@media (max-width: 310px) {
a.bg-yellow-theme.hover\:bg-black.hover\:text-white.px-4.py-2.border.rounded-full.font-semibold.text-xs.sm\:text-lg.transition-colors.duration-300 {
    width: 100%;
    text-align: center;
    font-size: 14px;
}
}
/* Adjust text for XS screens */
@media (max-width: 639px) {
    .carousel-fixed-text {
        margin-bottom: 0;
    }

    .carousel-container {
        overflow: hidden;
        position: relative;
        width: 100%;
        /* Full width */
        max-width: 400px;
        /* Optional, for demonstration */
        height: 80px;
        /* Reduced height */
        margin-top: 15px;
    }
}


/* ------------------------- Media Query ----------------------- */
@media screen and (max-width: 426px) {
    /* ---Hire Top 3.5% Shopify Experts--- */

    .rating-card h5 {
        display: block !important;
        font-size: 1rem;
        text-align: center;
    }

    .home-left-sec h1 {
        font-size: 22px !important;
    }

    .home-right-sec-img .carousel-container {
        margin-left: 0;
    }

    .home-right-sec-img img {
        width: auto;
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .header-logo-box img {
        max-width: 250px;
    }

    .logo-title-box h2 {
        font-size: 1rem !important;
    }

    .logo-title-box p {
        font-size: 0.7rem !important;
    }

    .home-right-sec-img img {
        width: 400px;
    }

    .rating-card h5 {
        font-size: 1rem;
        text-align: center;
    }

    .card-img,
    .card-rate img {
        width: 60px;
        height: auto;
    }

    .home-left-sec h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .carousel-fixed-text {
        margin-bottom: 0;
    }

    .carousel-container {
        overflow: hidden;
        position: relative;
        width: 100%;
        /* Full width */
        max-width: 400px;
        /* Optional, for demonstration */
        height: 80px;
        /* Reduced height */
        margin-top: 15px;
    }
}

.trusted-global-iframe-80x80 {
    width: 80px;
    height: 80px;
}
.trusted-global-iframe-100x100 {
    width: 90px;
    height: 90px;
    margin: 10px;
    padding-top: 5px;
}

.testimonial_card .rounded-full {
    object-fit: cover;
}

.award-image-wrap-inner {
    position: relative;
    padding: 45% 0 0;
    z-index: 1;
}

.award-image-wrap-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home-left-sec h1 {
    color: #282f3d;
}

.home-left-sec h1 span {
    color: #82c600;
    font-weight: 700;
}

/* .review-box {
    height: auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.review-box img {
    object-fit: cover;
    height: 400px;
}

.review-box .cus-review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .5);
    text-align: center;
    z-index: 2;
}

.review-box .cus-review-overlay .fa-play-circle {
    color: #fff;
    font-size: 4em;
    -ms-transform: skewY(-5deg) translateY(-50%);
    -webkit-transform: skewY(-5deg) translateY(-50%);
    transform: skewY(-5deg) translateY(-50%) scale(0);
    position: relative;
    top: 50%;
    cursor: pointer;
    transition: .5s;
    z-index: 2;
}

.review-box:hover .cus-review-overlay .fa-play-circle {
    transform: skewY(-5deg) translateY(-50%) scale(1);
    color: #82c600;
}

.review-box .cus-review-overlay .cus-name {
    color: #fff;
    position: absolute;
    bottom: 25px;
    left: 0;
    margin: 0 auto;
    right: 0;
    width: 90%;
} */

.testi-new-img {
    height: auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.testi-new-img .fa-play-circle {
    color: #82c600;
    background: #fff;
    border-radius: 50%;
    font-size: 2.5em;
    -ms-transform: skewY(-5deg) translateY(-50%);
    -webkit-transform: skewY(-5deg) translateY(-50%);
    transform: skewY(-5deg) translateY(-50%) scale(1);
    position: absolute;
    top: 90%;
    left: 45%;
    cursor: pointer;
    transition: .5s;
    z-index: 2;
}

/*---------------- Custom modal ------------------*/

.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.74);
  overflow: auto;
  animation: fadeIn 0.3s;
}

.custom-modal-dialog {
  max-width: 80%;
  margin: 60px auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.custom-modal-header {
  padding: 15px 20px;
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #555;
}

.custom-modal-body {
  padding: 20px;
  background: #fff;
}

       .flex-col-cmn {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
       }

       .left-col span {
        font-size: 25px;
       }

       .left-col {
        width: 25%;
       }

       .rgt-col {
        width: 75%;
       }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.hover-link:hover {
    border-bottom: 1px solid #82c600;
}

/*---------------- Custom modal ------------------*/

@media (max-width: 768px) {
    .home-left-sec h1 span img {
        height: auto;
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .home-left-sec h1 span img {
        height: auto;
        max-width: 100px;
    }
}

@media (max-width: 450px) {
    .header-logo-box img {
        max-width: 220px;
    }

    header.shadow .gap-x-2 {
        column-gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    header.shadow .header-signup-btn {
        margin-bottom: 5px;
    }

    .logo-title-box h2 {
        font-size: .7rem !important;
    }

    .logo-title-box p {
        font-size: 0.5rem !important;
    }

    .header-logo-box {
        max-width: 200px;
    }

    .rating-card {
        width: calc(50% - 15px);
        min-height: 80px;
        margin: 5px;
    }

    .rating-card-flex {
        flex-wrap: wrap;
        gap: 0;
    }

       .rating-card h5 {
        font-size: 12px;
       }

       .heder-flex {
        justify-content: space-between !important;
       }

       .left-col {
        width: 100%;
       }

       .rgt-col {
        width: 100%;
       }

       .left-col {
    margin-bottom: 20px;
}

.rating-card-flex {
    display: flex !important;
    flex-wrap: wrap;
}

.line-hd-txt {
    line-height: 1.2;
    margin-bottom: 15px;
}


}


/* HubSpot form container sizing */
.help-you {
    display: flex;
    justify-content: center;
}

.help-you .hs-form-frame {
    width: 100%;
    max-width: 560px;
}

@media (min-width: 992px) {
    .help-you .hs-form-frame {
        width: 50%;
        max-width: none;
    }
}
