.elementor-kit-8{--e-global-color-primary:#DD340E;--e-global-color-secondary:#004F71;--e-global-color-text:#75706D;--e-global-color-accent:#FFFFFF;--e-global-color-c35a8a3:#000000;--e-global-typography-primary-font-family:"Crimson Text";--e-global-typography-primary-font-size:60px;--e-global-typography-primary-font-weight:600;--e-global-typography-primary-text-transform:none;--e-global-typography-primary-line-height:40px;--e-global-typography-primary-letter-spacing:0.5px;--e-global-typography-secondary-font-family:"Crimson Text";--e-global-typography-secondary-font-size:48px;--e-global-typography-secondary-font-weight:700;--e-global-typography-secondary-line-height:60px;--e-global-typography-secondary-letter-spacing:0.5px;--e-global-typography-text-font-family:"Kumbh Sans";--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:"Nunito Sans";--e-global-typography-accent-font-size:20px;--e-global-typography-accent-font-weight:500;--e-global-typography-accent-line-height:35px;--e-global-typography-accent-letter-spacing:0.5px;--e-global-typography-8563f94-font-family:"Caveat";--e-global-typography-8563f94-font-size:25px;--e-global-typography-8563f94-font-weight:600;--e-global-typography-8563f94-line-height:30px;--e-global-typography-8563f94-letter-spacing:0.5px;}.elementor-kit-8 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-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* 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%;
}

/*Button Hover Effects*/
.box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #dd340e; /* default background */
  color: #1a1a5a; /* default text color */
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
}

.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 100%;
  background: #004F71;
  transition: width 0.5s ease;
  z-index: 0; /* sits behind text */
}
.box span,
.box i {
  position: relative;
  z-index: 1; /* keep text/icons above overlay */
  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;
}





/*Button1 Hover Effects*/
.box1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent; 
  color: #1a1a5a; 
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
}

.box1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1px;
  height: 100%;
  background: #dd340e;
  transition: width 0.5s ease;
  z-index: 0; 
}
.box1 span,
.box1 i {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

/* Hover Effect */
.box1:hover::before {
  width: 100%;
}

.box1:hover h2 {
  color: white;
}
.box1:hover .elementor-icon svg {
  fill: #fff !important;
}

.box1 h2,
.box1 .elementor-icon svg {
  transition: all 0.3s ease;
}/* End custom CSS */