/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* HEADER CSS *************************/

/* Base sticky header */
.website-header {
  z-index: 9999;
  transition: transform 200ms ease;
  will-change: transform;
}
/* Hidden state: recess 145px upward */
.website-header.is-hidden {
  transform: translateY(-145px);
}

/* Hero Eyebrow */
.hero-eyebrow {
  display: inline-flex;           /* let the text and line sit in one row */
  align-items: center;            /* vertically center the line with the text */
  gap: 12px;                      /* space between text and line */
}

.hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #fff;
  flex-shrink: 0;                 /* keep it at 40px */
}

/* Custom Gallery Slider Arrows */

/* Hide default SVG inside Elementor swiper buttons */
.elementor-swiper-button-prev svg,
.elementor-swiper-button-next svg {
    display: none;
}

/* Base pseudo-element styling */
.elementor-swiper-button-prev::before,
.elementor-swiper-button-next::before {
    font-family: "Font Awesome 5 Pro"; /* OR "Font Awesome 5 Free" depending on your setup */
    font-weight: 400; /* For "far" */
    font-size: 20px;
    line-height: 1;
    display: inline-block;
	padding: 12px 14px;
	border-radius: 5px;
	background: #22222280;
}

/* Left arrow */
.elementor-swiper-button-prev::before {
    content: "\f060"; /* fa-arrow-left */
}

/* Right arrow */
.elementor-swiper-button-next::before {
    content: "\f061"; /* fa-arrow-right */
}

/* CTA HOVER FEATURE FIX */
.elementor-cta__bg-wrapper .elementor-cta__bg.elementor-bg {
	transition: all .3s ease-in-out;
}

/* Accessibility: minimize motion if user prefers */
@media (prefers-reduced-motion: reduce) {
  .website-header {
    transition: none;
  }
}

@media (max-width: 1024px) {
	/* Hidden state: recess 125px upward */
	.website-header.is-hidden {
	  transform: translateY(-125px);
	}
}

p + h3 {
	margin-top: 50px;
}

.elementor-counter-title {
	text-align: center;
}

