.elementor-kit-7{--e-global-color-primary:#272660;--e-global-color-secondary:#121315;--e-global-color-text:#666666;--e-global-color-accent:#121315;--e-global-color-eb37d4f:#FFFFFF;--e-global-color-db1f4f5:#000000;--e-global-typography-primary-font-family:"Outfit";--e-global-typography-primary-font-size:40px;--e-global-typography-primary-font-weight:700;--e-global-typography-primary-line-height:40px;--e-global-typography-primary-letter-spacing:0.6px;--e-global-typography-secondary-font-family:"Outfit";--e-global-typography-secondary-font-size:40px;--e-global-typography-secondary-font-weight:700;--e-global-typography-secondary-line-height:35px;--e-global-typography-secondary-letter-spacing:0.6px;--e-global-typography-text-font-family:"Outfit";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:30px;--e-global-typography-text-letter-spacing:0.5px;--e-global-typography-accent-font-family:"Outfit";--e-global-typography-accent-font-size:25px;--e-global-typography-accent-font-weight:600;--e-global-typography-accent-line-height:35px;--e-global-typography-accent-letter-spacing:0.5px;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.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-kit-7{--e-global-typography-secondary-font-size:22px;--e-global-typography-secondary-line-height:32px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */@keyframes image-animation {
    0% {
        transform: translateY(0); }
    100% {
        transform: translateY(-10px);
    }
}
.image-animation {
    position: relative;
    animation-name: image-animation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out; }





/* Card Base Style */
.unique-card {
  background: #fff; 
  color: #1a1a5a;  
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: background 0.5s ease, transform 0.3s ease, color 0.5s ease;
  position: relative;
  overflow: hidden;
}

/* Hover with animated gradient */
.unique-card:hover {
  background-size: 300% 300%;
  animation: bgMove 3s ease infinite;
  transform: translateY(-5px);
 }

/* Keyframes for background movement */
@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}





/* Wrapper for the image Animation */
.hover-image {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* 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%; 
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15) 0%,  
    rgba(255, 255, 255, 0.3) 50%, 
    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%;
}



/* Container for overall form structure */
.contact-form {

 
  font-family: 'Outfit', Arial, sans-serif;
}

/* Two-column layout */
.form-row {
  display: flex;
  flex-wrap: wrap;
}

/* Desktop view (default) */
.half {
  width: 48%;
  float: left;
  box-sizing: border-box;
}

.half + .half {
  margin-left: 4%;
}

/* Desktop view (two fields in one row) */
@media (min-width: 769px) {
  .half {
    width: 48% !important;
    float: left !important;
    margin-left: 2% !important;
  }
  .half:first-child {
    margin-left: 0 !important;
  }
}
/* Mobile view (stacked fields + less padding) */
@media (max-width: 768px) {
  .half {
    width: 100% !important;
    float: none !important;
    margin-left: 0 !important;
  }
  .half + .half {
    margin-left: 0 !important;
  }
}
.form-row.full {
  flex: 1 1 100%;
  display: block;
}

/* Input and textarea styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus {
  border-color: #a67c52;
  box-shadow: 0 0 3px rgba(166, 124, 82, 0.5);
  outline: none;
}



/* Full width button */
[type=button], [type=submit], button {
    width: 100%;
    padding: 1rem;
    background-color: #809BEB;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}
[type=button], [type=submit], button:hover {
  background-color: #809BEB;
  transform: translateY(-2px);
}

/* Responsive fix */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
  .half {
    flex: 1 1 100%;
    margin-left: 0;
  }

}

.logo img {
  filter: brightness(0) invert(1); 
}



/*Car Towing Services Aniation*/
.box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f6fa; 
  color: #1a1a5a; 
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
}

.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #1a1a5a;
  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 h2 {
  color: white;
}

.box:hover .elementor-icon svg {
  fill: #fff !important;
}

.box h2,
.box .elementor-icon svg {
  transition: all 0.3s ease;
}



/* Vertical Menu */
.main-navigation ul {
  display: block !important;     
  flex-direction: column !important;
  width: 220px;                   /* Adjust width */
  background: #fff;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-navigation ul li {
  display: block;
  margin: 0;
  padding: 0;
}

.main-navigation ul li a {
  display: block;
  text-decoration: none;
  color: #000;
}

/* Submenu styling */
.main-navigation ul ul {
  display: none;
  position: absolute;           
  left: 220px;                   
  top: 0;                        
  width: 180px; 
  background: #fff;
  border: 1px solid #ddd;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 9999;
}

.main-navigation ul li:hover > ul {
  display: block;                
}

/* Submenu items */
.main-navigation ul ul li a {
  padding: 8px 10px;
  color: #000;
  white-space: nowrap;          
}

.main-navigation ul ul li a:hover {
  background: #f5f5f5;           
}/* End custom CSS */