html {
  scroll-behavior: smooth;
}
.header-nav-menu nav ul li a.hfe-menu-item {
    padding: 0 30px !important;
}
.new-header-container.scrolled .header-top-icon {
    display: none;
}
.header-nav-menu nav ul li:last-child a.hfe-menu-item {
    padding-right: 0 !important;
}

.header-nav-menu .hfe-nav-menu .parent-has-child .sub-arrow i:before {
    background-color: #bb0001;
    padding: 2px 4px;
    border-radius: 50%;
    color: #FFFFFF;
}

/*footer right border*/
.new-footer-container .elementor-element.elementor-element-475a9c1.e-con-full.left-footer-container.e-flex.e-con.e-child:after {
    background: #1C244B;
    border-radius: 13px;
    content: "";
    height: 280px;
    position: absolute;
    right: -3px;
    top: 0;
    width: 7px;
}


/*button effects*/
.custom-hover-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    background: transparent;
		border-radius: 16px;
}

.custom-hover-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #BB0001; /* Button background color */
    transition: transform 0.4s ease-in-out;
    z-index: 0;
}

.custom-hover-button:hover::before {
    transform: translateX(-30px); /* Move background left */
    
}

.custom-hover-button span {
    font-size: 18px;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    color: white;
    position: relative;
    z-index: 1; /* Keep text above background */
    transition: transform 0.4s ease-in-out;
    
}

.custom-hover-button:hover span {
    transform: translateX(-15px); /* Move text left slightly */
    
}

.custom-hover-button::after {
    content: "➜"; /* Arrow on right */
    position: absolute;
    right: -10px; /* Start outside */
    opacity: 0;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF; /* Match background */
    transition: right 0.4s ease-in-out, opacity 0.4s ease-in-out;
    
}

.custom-hover-button:hover::after {
    opacity: 1;
    right: 5px; /* Arrow moves in */
    
}

/* Services Button */
.services-button-text, 
.services-button-arrow {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.button-services-container:hover .services-button-text {
    transform: translateX(-5px);
}

.button-services-container:hover .services-button-arrow {
    transform: translateX(5px);
}

.services-button:hover .services-button-text {
    transform: translateX(-5px);
}

.services-button:hover .services-button-arrow {
    transform: translateX(5px); /* Move arrow right */
}

.services-animated-image {
    opacity: 0;
    transition: transform 0.4s ease-in-out, opacity 1s ease-in-out;
}

.button-services-container:hover .services-animated-image {
    transform: translateX(0%) translateY(-115px); /* Moves up */
    opacity: 1;
}

.outdoor-content-text {
	height: 100px;
}

/*.services-cta-section:hover h4 {
    color: #ffffff !important;
    transition: 2s;
}*/

.services-cta-section a {
    text-decoration: none;
}

.bullet-text-content strong{
		color: #1c244b;
}
.home-animated-expert{
		width: 280px;
		left: 3% !important;
		top: 150px;
	}

/* Blogs */
.single-post {
	padding-top: 150px;	
}

.category-blog img {
	border-radius: 15px;
}

.category-blog h1.elementor-heading-title, 
.category-blog h2.wp-block-heading {
	font-family: "Bayon", Sans-serif !important;
	font-weight: 400  !important;
    text-transform: capitalize  !important;
    font-style: normal  !important;
    text-decoration: none  !important;
    line-height: 1.2em  !important;
    letter-spacing: 0  !important;
    text-shadow: 0 0 10px linen  !important;
}

.category-blog h1.elementor-heading-title {
    font-size: 65px !important; 
}

.category-blog h2.wp-block-heading {
	font-size: 40px !important;
}

.category-blog p, .category-blog ul.wp-block-list {
	    font-family: "Hind Vadodara", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.7em;
    letter-spacing: 0;
    color: #1A1A1A;
}

/* End of Blogs */

/* Single Post */
p.link-post-footer {
    margin-bottom: 100px;
}
/* End of Single Post*/

/* Start of Products */
.product-listing {
  padding: 0 20px;
}
.section-title {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 40px;
}
.products-grid {
  display: flex;
  flex-wrap: wrap;
}
.product-item {
	min-width: 250px;
  text-align: center;
  border: 1px solid #eee;
  padding: 0 0 20px;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 4px 10px rgb(0 0 0 / .1);
width: 22.3%; /* or whatever fits your design */
  margin: 15px;
  box-sizing: border-box;
}

.img-container {
  position: relative;
  height: 300px; /* Set your desired height */
  width: 100%;
  overflow: hidden;
}

.img-container img,
.img-container video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}


.img-container video {
  opacity: 0;
  pointer-events: none;
}

.img-container.has-video:hover video {
  opacity: 1;
  pointer-events: auto;
}

.img-container.has-video:hover img {
  opacity: 0;
}


.product-details {
    padding: 20px 20px 0;
    text-align: left;
}
.view-button{
  width: 100%
  position: absolute;
  bottom: 10px;
  background-color: #252422;
  padding: 10px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.view-button a {
    color: white;
    text-decoration: none
}
.view-button:hover a{
    color: #b10001;
}

.product-category {
    color: #747474;
    font-size: 10px;
    margin-bottom: 20px;
}

.product-item .product-name {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 5px;
}
.product-item .price {
  font-weight: 500;
  color: #b10001;
  font-size: 1.5rem;
  padding: 0 0 20px;
  border-bottom: 1px solid #ccc9c8;
}
.product-item .brand {
	color: #1a1a1a;
  margin-bottom: 50px;
  font-size: 0.875rem;
  font-style: italic;
}
.item-number {
    border-bottom: 3px solid #ccc9c8;
    padding-bottom: 20px;
    font-size: 0.75rem;
}

.product-button-container {
    padding: 0 5px;
}
.product-detail-button {
    background-color: #b10001;
    color: #FFFFFF !important;
    text-decoration: none !important;
    border: 1px solid #b10001 !important;
    width: 100%;
    border-radius: 0;
}
.product-button-container:hover .product-detail-button {
    color: #b10001 !important;
    background-color: white;
}

.filter-button {    
	border-radius: 15px;
    font-family: "Hind Vadodara", Sans-serif;
    font-size: 14px;
    font-weight: 400;
}
/* End of Products*/

/* Filters */
.filter-shortcode {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.filter-shortcode .elementor-shortcode {
    display: flex;
    justify-content: space-evenly;
}
.dropdown-menu {
    padding: 5px 10px;
}
/* End of Filters */

/* Sidebar Filter */
.fp-accordion-filter .fp-filter-section {
      border-bottom: 1px solid #e0e0e0;
      margin-bottom: 10px;
    }
    button.fp-accordion-toggle {
    background-color: transparent;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1.56;
    font-size: 14px;
}
button.fp-accordion-toggle:hover,button.fp-accordion-toggle.active, button.fp-accordion-toggle:focus{
    background-color: transparent;
    color: #1a1a1a;
}
    .fp-accordion-toggle {
      background: transparent;
      border: none;
      width: 100%;
      text-align: left;
      padding: 10px;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 16px;
      color: #1a1a1a;
      
    }

    .fp-accordion-content {
      padding: 10px;
      display: none;
      color: #1a1a1a;
    }

    .fp-accordion-toggle.active + .fp-accordion-content {
      display: block;
    }

    .fp-accordion-content label {
      color: #424242;
      font-weight: 400;
      font-size: 13px;
    }
/* End of Sidebar Filter */



/* Desktop screens (up to 1500px) */
@media screen and (max-width: 1500px) {
	.home-animated-expert{
		width: 260px;
		top: 310px;
	}
}

/* Desktop screens (up to 1200px) */
@media screen and (max-width: 1200px) {
	.home-animated-expert {
		width: 170px;
		top: 325px;
	}
}

/* Tablets (up to 1024px) */
@media screen and (max-width: 1024px) {
		header {
	overflow: hidden;
}
		.header-nav-menu nav ul.hfe-nav-menu {
				padding-top: 20px;
		}
	.hfe-dropdown.menu-is-active {
    margin-top: 10px !important;
}
	  .new-footer-container .elementor-element.elementor-element-475a9c1.e-con-full.left-footer-container.e-flex.e-con.e-child:after {
				height: 7px;
        left: 0px;
        top: auto;
        bottom: -10px;
        width: 100%;
		}
		.outdoor-content-text {
    		height: 140px;
}
		.outdoor-content-title {
				height: 80px;
	}
	    .home-animated-expert {
        width: 160px;
        top: 100px;
    }
		.single-post {
			padding-top: 100px;	
	}
	  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	.product-item {
		min-width: 45%;
	}
	.efs-heading {
	font-size: 24px !important;
}
}

/* Mobile devices (up to 782px, matching WP mobile admin bar size) */
@media screen and (max-width: 767px) {
		.outdoor-content-title {
				height: 55px;
	}
		.outdoor-content-text {
        height: 110px;
    }
	.home-animated-expert {
        width: 120px;
		    top: 105px;
    }
	.single-post {
		padding-top: 80px;	
	}
	.products-grid {
    grid-template-columns: 1fr;
  }
	.product-listing {
    padding: 0;
}
	.product-item {
		min-width: 90%;
	}
	.section-title {
    font-size: 1.5rem;
    text-align: center; 
	}
	.efs-heading {
	font-size: 15px !important;
}
}
