/** Shopify CDN: Minification failed

Line 404:13 Expected identifier but found whitespace
Line 404:15 Unexpected "{"
Line 404:24 Expected ":"
Line 606:0 Unexpected "}"
Line 706:24 Expected "}" to go with "{"

**/
/* all heading css start */
.custom-description .description {
  max-width: 700px;
  margin: 15px auto;
  font-size: 16px;
  color: #696969;
  text-align: center;
}
.sub-heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #6B61AB;
  text-transform: uppercase;
  margin-bottom: 0px;
  text-align: center;
}
.main-heading  h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 15px auto 10px;
  text-align: center;
  letter-spacing: normal;
}
.main-heading h2 strong {
  background: linear-gradient(101.31deg, #B1F1B3 2.11%, #F3EEC2 105.05%);
  background-repeat: no-repeat;
  background-size: 90% 25%;
  background-position: 0 80%;
  padding: 0 2px;
}
.main-heading p {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .custom-description .description {
    margin: 30px auto;
    font-size: 18px;
  }
  .sub-heading {
    font-size: 16px;
    margin: 10px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-heading h2 {
    font-size: 34px;
  }

  .custom-description .description {
    max-width: 700px;
    margin: 30px auto;
    font-size: 18px;
    color: #696969;
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .main-heading h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 15px auto 10px;
    text-align: center;
  }
  
  .custom-description .description {
    max-width: 700px;
    margin: 30px auto;
    font-size: 18px;
    color: #696969;
    text-align: center;
  }
}
/* all heading css end */



/* services css start */
.professional-services .services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  /* margin-bottom: 3rem; */
}
.professional-services .service-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.professional-services .service-card:hover {
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.07);
  transform: translateY(-10px);
}
.professional-services .service-icon {
  margin-bottom: 15px;
}
.professional-services .service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top:0px;
}
.professional-services .service-text {
  font-size: 16px;
  color: #666;
}
.professional-services .highlight-text {
  color: #22c55e;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .professional-services .services-grid{
    /* margin-bottom: 5rem; */
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .professional-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .professional-services .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* services css end */



/* faqs css start */

.fast-quality-services .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
 .fast-quality-services .service-image img{
    width: 100%;
  }

.fast-quality-services .service-content {
  text-align: center;
  /* max-width: 650px; */
}
.fast-quality-services .accordion-item {
  /* border-bottom: 1px solid #eee; */
  text-align: left;
}
.fast-quality-services .accordion-title {
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  font-size: 18px;
  text-align: left;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: 800;
  margin: 8px 0;
}
.fast-quality-services .accordion-item.active .accordion-title {
  background: #6B61AB;
  color: #fff;
}
.fast-quality-services .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.fast-quality-services .accordion-inner {
  padding: 8px 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.accordion-inner p{
  margin: 0px;
}
.fast-quality-services .accordion-item.active .accordion-inner {
  opacity: 1;
}

@media (min-width: 768px) {
  .fast-quality-services .grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .accordion-inner p{
  margin: 10px 0;
}
  .fast-quality-services .accordion-title {
  padding: 20px;
  font-size: 20px;
  font-weight: 800;
  margin: 10px 0;
}
}

.custom-contact-section {
  /* padding: 40px 20px 20px; */
  text-align: center;
  /* background: #fff; */
  /* margin-top: 30px; */
}

.custom-contact-section h4 {
  color: #5a3e85;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 16px;
  text-align: left;
  font-weight: bold;

}

.contact-item {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* .contact-item:hover {
  background-color: #f1f1f1;
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
} */

/* Optional: if there’s an icon inside */
.contact-item svg,
.contact-item i {
  margin-right: 10px;
  transition: transform 0.3s ease-in-out;
}

.contact-item:hover svg,
.contact-item:hover i {
  transform: scale(1.1) rotate(5deg);
}


.contact-item svg {
  width: 22px;
  height: 22px;
  fill: #5a3e85;
  margin-right: 10px;
}

.contact-item a {
  color: #000;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
.custom-contact-section h4 {
  margin-bottom: 10px;
  font-size: 18px;
}
.contact-item {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  margin-bottom: 10px;
  font-size: 16px;
}
}
/* faqs css end */



/* multiple-img-with-text css start */
.printing-services-section .text-left{
  text-align: left;
}

.printing-services-section .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .printing-services-section .services-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.printing-services-section .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.printing-services-section .service-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.printing-services-section .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.printing-services-section .icon-wrapper {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
.printing-services-section .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.printing-services-section .card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.printing-services-section .card-text {
  font-size: 14px;
  color: #555;
}


.printing-services-section .buttons {
  display: flex;
  gap: 15px;
}
.printing-services-section .btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease;
}
.printing-services-section .primary-btn {
  background: #6B61AB;
  color: #fff;
}
.printing-services-section .primary-btn:hover {
  background: #000;
}
.printing-services-section .secondary-btn {
  background: #f1f1f1;
  color: #333;
}
.printing-services-section .secondary-btn:hover {
  background: #e4e4e4;
}

@media (min-width: 768px) {
.printing-services-section .cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
}
/* multiple-img-with-text css end */



/* services-section css start */
.custom-services-section .service-card {
  border-radius:0px;
  padding:0;
}
.custom-services-section .service-card:hover .service-link {
  background-color: #DD9933;
  color: #fff;
  transition: all 0.3s;
}
.custom-services-section .service-title:hover{
  color:#6B61AB;
}
.custom-services-section {
  background: {{ section.settings.bg_color }};
}
.custom-services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.custom-services-section .service-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.custom-services-section .service-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.custom-services-section .service-card:hover img {
  transform: scale(1.1);
}
.custom-services-section .service-content {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.custom-services-section .service-title {
  font-size: 20px;
  font-weight: bold;
}
.custom-services-section .service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #f3f3f3;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s ease;
}
.custom-services-section .service-link:hover {
  background: #000;
  color: #fff;
}
.custom-services-section .services-btn {
  text-align: center;
  margin-top: 40px;
}
.custom-services-section .btn {
  background: #7a5fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.custom-services-section .btn:hover {
  background: #000;
}
/* services-section css end */


/* custom-banner css */
#get-started-banner::before,
#get-started-banner::after {
  content: "";
  position: absolute;
  z-index: 0;
}





.get-started-banner {
  background: linear-gradient(90deg, #f8849e 0%, #f8af85 100%);
  text-align: left;
  color: #fff;
  position: relative;
}

.get-started-banner::before {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  top: -80px;
  left: -100px;
}

.get-started-banner::after {
  width: 180px;
  height: 180px;
  background-image: radial-gradient(#ffffff33 1px, transparent 1px);
  background-size: 16px 16px;
  top: 40px;
  right: 100px;
}

.banner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}


.banner-content {
  z-index: 1;
  /* padding: 2rem 0; */
  text-align: center;
}


.banner-heading {
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    font-size: 30px;
}

.banner-subheading h2 {
  font-size: 18px;
  margin: 10px auto;
    color: #fff;
}

.banner-buttons a {
  display: inline-block;
  margin-right: 10px;
  padding: 12px 24px;
  background-color: #7e59c3;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.banner-buttons a:hover {
  background-color: #000;
}

.banner-image img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}

@media (min-width: 768px) {
  .banner-wrapper {
    flex-direction: row;
    justify-content: space-between;
  gap: 40px;
  }

  /* .banner-heading {
    font-size: 64px;
    font-weight: bold;
    margin: 0 auto 10px;
} */

.banner-subheading {
    font-size: 32px;
    margin-bottom: 30px;
}
.banner-content {
  z-index: 1;
  text-align: left;
}
}
/* custom-banner css end */

/* video faqs section */

.video-faq-wrapper {
  transition: background 0.3s ease;
  
}
.video-faq-heading {
  text-align: center;
  /* font-size: 32px; */
  font-weight: bold;
  /* margin-bottom: 40px; */
}
.video-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft modern shadow */
    padding-right: 30px;
}

}
.video-faq-media {
  flex: 1;
  position: relative;
}
.video-faq-thumbnail {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.video-faq-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.video-faq-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: black;
  font-size: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  line-height: 64px;
  text-align: center;
  transition: 0.3s ease;
}
.video-faq-play-button:hover {
  background: black;
  color: white;
}
.video-faq-content {
  flex: 1;
}
.video-faq-accordion {
  display: flex;
  flex-direction: column;
}
.video-faq-item {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  transition: all 0.3s ease;
}
.video-faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.video-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 15px;
}
.video-faq-item.active .video-faq-answer {
  max-height: 500px;
  padding-bottom: 0px;
}
.video-faq-item.active .icon {
  transform: rotate(45deg);
}
.video-faq-question:hover{
  color: #6B61AB 
}
.video-faq-item:hover{
  border-bottom:1px solid  #6B61AB 
}
@media(min-width: 768px) {
  .video-faq-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .video-faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
/* video faqs section */