/** Shopify CDN: Minification failed

Line 87:0 Unexpected "<"
Line 92:0 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:grids (INDEX:40) */
.cust_grid-section {
    padding: 60px 0;
  }

  .cust_section-title {
    text-align: center;
    margin-bottom: 40px;
  }

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

  .cust_grid-item-inner {
    display: flex;
    align-items: center;
  }

  .cust_image-container {
    flex: 0 0 100px;
    margin-right: 20px;
  }

  .cust_circular-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
  }

  .cust_content-container {
    flex: 1;
    text-align: left;
  }

  .cust_item-title {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .cust_button-container {
    margin-top: 40px;
    text-align: center;
  }

  .cust_button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }

  .cust_button:hover {
    background-color: #333;
  }

  @media screen and (max-width: 767px) {
    .cust_grid-container {
      grid-template-columns: 1fr;
    }
  }

  @media screen and (min-width: 768px) and (max-width: 991px) {
    .cust_grid-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
/* END_SECTION:grids */

/* START_SECTION:new-multicoloumn (INDEX:72) */
<style>
  .feature-icon {
    width: 32px;
    height: 32px;
  }
</style>
/* END_SECTION:new-multicoloumn */

/* START_SECTION:our-services (INDEX:74) */
.our-services {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 1rem;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.service-image {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
  transition: opacity 0.3s ease;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.service-image img:not(.active) {
  display: none;
}

.service-image img.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.service-content-wrapper {
  flex: 1;
  min-width: 300px;
}

.service-tab {
  cursor: pointer;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  transition: all 0.3s ease;
}

.service-title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
  position: relative;
  padding-left: 1.5rem;
}

.service-title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  width: 3px;
  background-color: #FF5A1F;
  transition: all 0.3s ease;
}

.service-tab:hover .service-title:before {
  height: 100%;
  top: 0;
  transform: none;
}

.service-tab:hover .service-title {
  color: #FF5A1F;
}

.service-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
  padding-left: 1.5rem;
}

.service-tab:hover .service-detail {
  max-height: 500px;
  opacity: 1;
}

.service-detail ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.service-detail li {
  margin-bottom: 0.5rem;
  color: #666;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .our-services {
    flex-direction: column;
  }
  
  .service-image {
    order: -1;
  }
  
  .service-title {
    font-size: 1.1rem;
  }
}
/* END_SECTION:our-services */