.elementor-kit-7{--e-global-color-primary:#01A54E;--e-global-color-secondary:#212E3B;--e-global-color-text:#5C5E5E;--e-global-color-accent:#01A54E;--e-global-color-a894af7:#FFFFFF;--e-global-color-24e7877:#000000;--e-global-typography-primary-font-family:"Outfit";--e-global-typography-primary-font-size:20px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Outfit";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:500;--e-global-typography-text-line-height:30px;--e-global-typography-accent-font-family:"Outfit";--e-global-typography-accent-font-size:20px;--e-global-typography-accent-font-weight:500;--e-global-typography-accent-line-height:25px;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1260px;}.e-con{--container-max-width:1260px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//*Car Towing Services Aniation*/
.box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #01a54e; 
  color: #1a1a5a; 
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
}

.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #01a54e;
  transition: width 0.5s ease;
  z-index: 0; 
}
.box span,
.box i {
  position: relative;
  z-index: 1; 
  transition: color 0.4s ease;
}
/* Hover Effect */
.box:hover::before {
  width: 100%;
}

.box:hover h3 {
  color: white !important;
}

.box:hover .elementor-icon svg {
  fill: #fff !important;
}

.box h2,
.box .elementor-icon svg {
  transition: all 0.3s ease;
}

/* Desktop: default grid (keep your current layout) */
.display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr; /* or whatever you already have */
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .display-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .display-grid {
    grid-template-columns: 1fr;
  }
}


/* Wrapper for the image */
.hover-image {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 12px;
}

/* Image styling */
.hover-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
}

/* Shiny overlay */
.hover-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 20%; /* thinner streak */
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15) 0%,  /* lighter transparency */
    rgba(255, 255, 255, 0.3) 50%,  /* subtle middle shine */
    rgba(255, 255, 255, 0.15) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}

/* Hover effects */
.hover-image:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hover-image:hover::after {
  left: 120%;
}/* End custom CSS */