.page-header__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover; /* Ensures image covers the whole area */
	background-position: center center; /* Centers the image */
	background-repeat: no-repeat;
	z-index: -1; /* Puts it behind your content */
}

.page-header__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Gradient from semi-transparent black to darker black */
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
	z-index: 1; /* Sits on top of the image but behind content */
}

/* for icons */
/* Smooth transition for the icon color */
.feature-one__icon i {
	transition: color 0.7s ease;
}
/* Change icon color to white when the card is hovered */
.feature-one__single:hover .feature-one__icon i {
	color: #ffffff;
}

.services-one__icon i {
	color: #ffffff;
}

.get-quote__tab-icon i {
	color: #ffffff;
}

.custom-fab-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff; /* White background */
	color: #e66f07; /* Default theme color for icons */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	border: none;
	font-size: 22px; /* Increases icon size */
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
}

.custom-fab-btn:hover {
	background-color: #e66f07; /* Invert colors on hover */
	color: #fff;
	transform: scale(1.1);
}

.custom-fab-main {
	width: 60px;
	height: 60px;
	background-color: #e66f07; /* Default theme color */
	color: #fff;
	font-size: 26px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.custom-fab-main:hover {
	background-color: #333;
	color: #fff;
}

/* text marquee */
/* CSS for the smooth scrolling marquee */
.topbar-marquee-wrapper {
	flex: 1; /* Takes up the available space in the middle */
	overflow: hidden;
	white-space: nowrap;
	margin: 0 30px; /* Adds breathing room on the sides */
	display: flex;
	align-items: center;
	position: relative;
}

.topbar-marquee-text {
	display: inline-block;
	color: #e66f07; /* Gouna Brand Orange */
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 1px;
	animation: scrollText 20s linear infinite;
}

/* Pause the scrolling when the user hovers over it */
.topbar-marquee-wrapper:hover .topbar-marquee-text {
	animation-play-state: paused;
}

@keyframes scrollText {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

/* Hide on very small screens to prevent the top bar from breaking */
@media (max-width: 991px) {
	.topbar-marquee-wrapper {
		display: none;
	}
}
