.dark-overlay {
    position: relative;
}

.dark-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 0;
}

.dark-overlay2 {
    position: relative;
}

.dark-overlay2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

.language-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lang-btn {
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border: 2px solid #F58634;
    border-radius: 20px;
    transition: all 0.3s ease;
    color: #F58634;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn:hover,
.lang-btn.active {
    background-color: #F58634;
    color: #fff;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: bold;
    border-bottom: 2px solid var(--primary);
}


.highlight-text {
	background-color: #F58634;
	display: inline-block;
	text-align: center;
}

.fab-menu {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
}

.fab-menu input[type="checkbox"] {
	display: none;
}

.fab-icon {
	width: 60px;
	height: 60px;
	background-color: #F58634;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	cursor: pointer;
	transition: transform 0.3s ease;
}

.fab-icon i {
	font-size: 24px;
}

.fab-options {
	position: absolute;
	bottom: 70px;
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition: all 0.3s ease;
}

.fab-options a {
	width: 50px;
	height: 50px;
	background-color: #F58634;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none; /* remove underline */
	box-shadow: 0 3px 6px rgba(0,0,0,0.3);
	transition: background-color 0.3s, transform 0.3s;
}

.fab-options a:hover {
	background-color: #e57428; /* Slightly darker orange on hover */
	transform: scale(1.1); /* Optional: make it pop a bit */
	color: #fff; /* ensure text/icon remains white */
	text-decoration: none; /* ensure no underline even on hover */
}

.fab-menu input[type="checkbox"]:checked ~ .fab-options {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.fab-icon:hover {
	background-color: #e57428; /* Slightly darker orange */
	transform: scale(1.1);     /* Optional zoom effect */
	color: #fff;               /* Keep icon white */
}

.footer-link {
	transition: color 0.3s, text-decoration 0.3s;
}

.footer-link:hover p {
	color: #F58634 !important;
	text-decoration: underline;
}

@media (max-width: 767.98px) {
	.hero-banner {
		background-position: 85% center !important;
	}
}