/*Input Your Custom CSS Here*/


/* Landing Page - Smooth Scroll Behavior */
html {
	scroll-behavior: smooth;
}

/* Proudly Serving Section */
.proudly-serving-sec {
	background: #0f0f1b;
	padding: 30px 0;
}
.proudly-serving-title {
	color: #f5ab1e;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 25px;
}
.proudly-serving-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 35px;
}
.serving-logo {
	flex: 0 0 auto;
}
.serving-logo img {
	max-height: 70px;
	width: auto;
	object-fit: contain;
}
@media (max-width: 767px) {
	.proudly-serving-logos {
		gap: 20px;
	}
	.serving-logo img {
		max-height: 50px;
	}
}

/* Landing Page - Contact Form */
#contact-form .form-control {
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}
#contact-form .form-control:focus {
	border-color: #f5ab1e;
	box-shadow: 0 0 0 2px rgba(245, 171, 30, 0.15);
	outline: none;
}
#contact-form select.form-control {
	color: #999;
}
#contact-form button[type="submit"]:hover {
	background: #e09a10 !important;
	transition: background 0.3s ease;
}

/* Landing Page - CTA Button */
.blog-sec .applay-button:hover {
	background: #e09a10 !important;
	transition: background 0.3s ease;
}

/* Landing Page - Section Anchors Offset */
#nosotros,
#servicios,
#por-que,
#testimonios,
#contacto {
	scroll-margin-top: 80px;
}
/* Mobile - Invert header colors for logo visibility */
@media only screen and (max-width: 991px) {
	.header-top {
		display: none !important;
	}
	.hd-sec {
		background: #0f0f1b !important;
	}
	.mean-container .mean-bar {
		background: #0f0f1b;
	}
	.mean-container a.meanmenu-reveal {
		background: #0f0f1b;
	}
	.mean-container a.meanmenu-reveal span {
		background: #fff;
	}
}