/* Default styles for larger screens */
.mp-header-top {
    background: linear-gradient(90deg, #f44336, #ff9800, #ffeb3b); /* From your logo */
    padding: 10px 0;
    color: #fff;
    width: 100%;
    margin: 0 auto;
}
/* Container & Flex Structure */
.mp-outer-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
/* Adjust left & right widths */
.mp-header-top-left,
.mp-header-top-right {
    display: flex;
    align-items: center;
}

.mp-header-top-left {
    flex: 2.5;
}
.mp-header-top-right {
    flex: 1;
    justify-content: flex-end;
}
/* Contact Info */
.mp-header-contact-info ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.mp-header-contact-info li {
    display: flex;
    align-items: center;
    color: #fff;
}
.mp-header-contact-info .mp-icon {
    font-size: 18px;
    margin-right: 10px;
}
.mp-header-contact-info .mp-text p {
    margin: 0;
    font-size: 11px;
    color: #fff;
}
.mp-header-contact-info .mp-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
    color: #fff;
}
.mp-header-contact-info .mp-text a {
    color: #fff;
    text-decoration: none;
}
/* Social Icons */
.mp-header-social-link ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}
.mp-header-social-link ul li a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    font-size: 16px;
}
/* Brand Colors */
.mp-header-social-link ul li:nth-child(1) a {
    background-color: #3b5998; /* Facebook */
}
.mp-header-social-link ul li:nth-child(2) a {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* instagram */
}
.mp-header-social-link ul li:nth-child(3) a {
    background-color: #00acee; /* Twitter */
}
.mp-header-social-link ul li:nth-child(4) a {
    background-color: #0077b5; /* LinkedIn */
}
.mp-header-social-link ul li:nth-child(5) a {
    background-color: #bd081c; /* Pinterest */
}
.mp-header-social-link ul li a:hover {
    transform: scale(1.1);
    color: #fff;
}
/* Override floats if used */
.mp-pull-left, .mp-pull-right {
    float: none !important;
}
/* Banner */
.orbitWrapper {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	border-radius: 0px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	margin-top: 0px;
}
.orbitTrack {
	display: flex;
	transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.orbitSlide {
	flex-shrink: 0;
	width: 100%;
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.orbitSlide.active {
	opacity: 1;
	transform: scale(1);
}
.orbitSlide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	border-radius: 0px;
}
.orbitNav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	padding: 0 15px;
}
.orbitBtn {
	background: rgba(255, 255, 255, 0.7);
	color: #333;
	border: none;
	font-size: 26px;
	padding: 8px 12px;
	cursor: pointer;
	border-radius: 50%;
	transition: background 0.3s ease;
}
.orbitBtn:hover {
	background: rgba(255, 255, 255, 1);
}
.service-carousel-container {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}
.service-carousel-container:active {
    cursor: grabbing;
}
.service-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}
.single-service-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px;
}
.owl-carousel .item img {
	display: block;
	width: 100%;
	height: auto;
	cursor: pointer;
	border-radius: 10px;
}
/* Modal Style */
.modal {
	display: none;
    position: fixed;
    z-index: 99999999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}
.modal-content {
    margin: auto;
    max-width: none;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-clip: padding-box;
    border: 0;
    border-radius: .3rem;
    outline: 0;
    background-color: transparent;
}
.close {
	position: absolute;
	top: 25px;
	right: 35px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
}
.nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 50px;
	color: #fff;
	cursor: pointer;
	z-index: 10000;
	user-select: none;
	padding: 10px;
}
.nav.prev {
	left: 20px;
}
.nav.next {
	right: 20px;
}
.partner-box .single-partner-logo-box {
    padding: 5px;
    text-align: center;
    border: 1px solid #dbdbdb;
}
.partner-box .single-partner-logo-box img {
    width: 100%;
    max-width: 400px; /* you can increase/decrease this */
    height: auto;
    display: inline-block;
}
.feedback-form-style1-area{
	position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 1;
}
.feedback-form-outer-box{
	position: relative;
    display: block;
    padding: 60px;
    padding-bottom: 40px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    margin-bottom: 0px;
    z-index: 10;
}
.feedback-form-inner-box{
	
}
.feedback-form{
	
}
/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 20px;
	left: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}
.contact-buttons a {
	color: white;
	font-size: 15px;
	padding: 5px 5px;
	border-radius: 15px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 130px;
	text-decoration: none;
	transition: transform 0.3s ease;
	letter-spacing: 1px;
}
.contact-buttons a.call-button {
	4336, #ff9800, #ffeb3b);
	background: linear-gradient(90deg, #f44336, #ff9800, #ffeb3b);
}
.contact-buttons a.whatsapp-button {
	background-color: #25D366;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
/* Scroll to Top Button */
/* Desktop: 3 items per row */
@media (min-width: 992px) {
    .single-service-item {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}
@media (max-width: 768px) {
	.mp-outer-box {
        flex-direction: column;
        align-items: stretch; /* change from center */
        gap: 15px;
    }
    .mp-header-top-left{
        display: none;
    }
    .mp-header-top-right {
        justify-content: center; /* move to end */
        margin-top: 10px;
    }
	.orbitWrapper {
		margin-top: 0px;
	}
	.orbitBtn {
        font-size: 20px;
		padding: 6px 10px;
	}
	.owl-carousel .item {
		margin: 0 10px;
	}
	.owl-carousel .item img {
		height: auto;
	}
	.contact-buttons {
		width: 100%;
		margin: 0;
		padding: 0;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;
		display: block;
	}
	.contact-buttons a {
		min-width: auto;
        padding: 10px 12px;
        font-size: 14px;
        float: left;
        width: 50%;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
	}
	.scroll-top {
		position: fixed;
		bottom: 0px;
		right: 0px;
		color: white;
		font-size: 24px;
		padding: 0px;
		cursor: pointer;
		width: 50px;
		height: 54px;
		line-height: 10px;
		z-index: 99999;
		border-radius: 0%;
		background: #413d3c;
	}
}
/* Tablet: 2 items per row */
@media (min-width: 576px) {
    .single-service-item {
        flex: 0 0 33%;
        max-width: 50%;
    }
}
@media (max-width: 480px) {
	.orbitWrapper {
		margin-top: 0px;
	}
	.orbitBtn {
		font-size: 18px;
		padding: 5px 8px;
	}
	.orbitNav {
		padding: 0 8px;
	}
}