/* Mobile Action Buttons */
.mobile-actions {
	display: none;
}

.mobile-action-btn {
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border-radius: 50%;
	margin-left: 8px;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s ease;
}

.mobile-action-btn.whatsapp {
	background: #25D366;
}

.mobile-action-btn.phone {
	background: #355749;
}

.mobile-action-btn:hover {
	opacity: 0.8;
	transform: scale(1.1);
}

/* Show mobile actions on smaller screens */
@media only screen and (max-width: 1036px) {
	.mobile-actions {
		display: inline-flex !important;
		align-items: center;
	}
	
	.nav-holder {
		display: none;
	}
}

@media only screen and (max-width: 778px) {
	.mobile-actions {
		display: inline-flex !important;
		margin-left: auto;
		margin-right: 10px;
	}
}

@media only screen and (max-width: 640px) {
	.mobile-action-btn {
		width: 32px;
		height: 32px;
		line-height: 32px;
		font-size: 14px;
	}
}

/* Footer logo size */
.footer-logo img {
	max-width: 150px;
	height: auto;
}

/* Services Holder - Fixed 2x2 Grid - Rectangle Shape */
.services-holder {
	display: flex !important;
	flex-wrap: wrap;
	float: none !important;
	width: 100% !important;
	margin-top: 60px;
	padding-bottom: 40px;
	border-bottom: 1px solid #eee;
}

.serv-item {
	width: 50% !important;
	padding: 10px !important;
	box-sizing: border-box;
	float: none !important;
	position: relative !important;
}

.serv-item:nth-child(odd) {
	padding-right: 5px !important;
	padding-left: 10px !important;
}

.serv-item:nth-child(even) {
	padding-left: 5px !important;
	padding-right: 10px !important;
}

.serv-item-inner {
	position: relative !important;
	overflow: hidden;
	width: 100% !important;
	height: 0 !important;
	padding-bottom: 65% !important;
	float: none !important;
}

.serv-item-inner:before {
	content: '';
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: rgba(0,0,0,0.21);
	z-index: 2;
}

.serv-item-inner img {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	z-index: 1;
}

/* Hide scrolling animation lines */
.particular {
	display: none !important;
}

/* Hide all decorative lines and dots */
.sect-subtitle {
	display: none !important;
}

.sect-subtitle:before,
.sect-subtitle:after {
	display: none !important;
}

.content:before {
	display: none !important;
}

.content-footer:before {
	display: none !important;
}

.footer-wrap:before {
	display: none !important;
}

.footer-wrap.tth:before {
	display: none !important;
}
