/* 
==================================================
#BASIC TYPOGRAPHY
#HEADER	
#MENU 
#FEATURED SLIDER 
#ABOUT US
#SERVICE 
#TESTIMONIAL
#CONTACT US
#FOOTER
#RESPONSIVE STYLE
*/


/*--------------------*/
/* BASIC TYPOGRAPHY */
/*--------------------*/
/* -------------------------- */
/* 1. Define fonts using @font-face */
/* -------------------------- */

/* Open Sans */
@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/OpenSans-Regular.woff2') format('woff2'),
         url('/assets/fonts/OpenSans-Regular.woff') format('woff'),
         url('/assets/fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/OpenSans-Bold.woff2') format('woff2'),
         url('/assets/fonts/OpenSans-Bold.woff') format('woff'),
         url('/assets/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/assets/fonts/OpenSans-Italic.woff2') format('woff2'),
         url('/assets/fonts/OpenSans-Italic.woff') format('woff'),
         url('/assets/fonts/OpenSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Poppins */
@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Regular.woff2') format('woff2'),
         url('/assets/fonts/Poppins-Regular.woff') format('woff'),
         url('/assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Bold.woff2') format('woff2'),
         url('/assets/fonts/Poppins-Bold.woff') format('woff'),
         url('/assets/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* -------------------------- */
/* 2. Apply the fonts in the body and header */
/* -------------------------- */

body,
html {
	overflow-x:hidden;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	letter-spacing: 0.5px;
	line-height: 1.5;
	color: #1c1b1b;
}

ul {
	padding: 0;
	margin: 0;
}

ul li {
	list-style: disc;
	font-size: 17px;
	line-height: 1.59;
}

a { 
	text-decoration: none;
	color: #2f2f2f;  
}

a:hover,
a:focus {
	outline: none;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	margin-top: 0;
}


h1 {
	font-size: 38px;
}

h2 {  
	font-size: 32px; 
	line-height: 1.13; 
}

h3 {  
	font-size: 26px;  
}

h4 {  
	font-size: 22px;  
}

h5 {  
	font-size: 20px;  
}

h6 {  
	font-size: 18px;  
}

img {
	border: none;
	max-width: 100%;
}

code {
	background-color: #ee6e73;
	border-radius: 2px;
	color: #fff;
	padding: 2px 4px;
}

pre {
	background-color: #f8f8f8;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 10px;
}

pre code {
	background-color: transparent;
	color: #333;
}

del{
	text-decoration-color: #ee6e73;
}

kbd {
	background-color: #ddd;
	padding: 4px 6px;
	border-radius: 2px;
	color: ;
}

address {
	line-height: 1.5;
	padding-left: 10px;
}

dl dt {
	font-weight: 700;
}

dl dd {
	margin-left: 0;
}

blockquote {
	background-color: #f8f8f8;
	border-radius: 0 4px 4px 0;
	padding: 5px 15px;
	
}

blockquote p {
	margin-top: 10px;
}

button {
	padding: 5px 15px;
	border: none;
}

button:focus {
	outline: none;
	border: none;
}

/*Wordpress default class*/

.alignleft {
	float:left;
	margin-right:8px;
}

.aligncenter {
	display:block;
	margin:10px auto;
}

.alignright {
	float:right;
	margin-left:8px;
}		

.alignnone {
	max-width: 100%;
}

.wp-caption-text {
	font-size: 12px;
	font-style: italic;
	text-align: center;
}

/* ========= BUTTON =========*/

.mu-primary-btn {
	background-color: transparent;
	border-radius: 4px;
	border: 2px solid #ffffff;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	padding: 12px 35px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.mu-primary-btn:hover,
.mu-primary-btn:focus {
	background-color: #fff;
}

.mu-send-msg-btn {
	border-radius: 4px;
	border: 1px solid #888;
	background-color: transparent;
	color: #555;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-align: center;
	padding: 14px 24px;
	margin-top: 10px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	width: 130px;
}

.mu-send-msg-btn:hover,
.mu-send-msg-btn:focus {
	background-color: #fff;
}



/*--------------------*/
/* HEADER */
/*--------------------*/

#mu-header {
	display: inline;
	float: left;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	padding: 25px 0;
	z-index: 999;
	transition: all 0.5s;
}

.navbar-default .navbar-brand, 
.navbar-default .navbar-brand:hover, 
.navbar-default .navbar-brand:focus {
	color: #fff;
	font-size: 35px;
	font-family: 'Poppins', sans-serif;
	margin-top: 0;
	width: 250px;
	line-height: 18px;
}

.navbar-brand img {
	margin-top: -20px;
}

#mu-header.mu-fixed-nav {
	width: 100%;
	position: fixed;
	padding: 20px 0;
}


/*--------------------*/
/* MENU */
/*--------------------*/

.mu-navbar {
	background-color: transparent;
	border: none;
	border-radius: 0;
	margin-bottom: 0;

}

.mu-menu {
	margin-top: 40px;
}

.navbar-default .mu-menu li a {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	padding: 0;
	margin: 10px 15px;
	transition: all 0.5s;
	position: relative;
}

.navbar-default .mu-menu li a::after {
	background-color: #fff;
	content: '';
	height: 2px;
	width: 100%;
	position: absolute;
	bottom: -5px;
	left: 0;
	transform: scale(0);
	transition: all 0.5s;
}

.navbar-default .mu-menu li a:hover,
.navbar-default .mu-menu li a:focus,
.navbar-default .navbar-nav > .active > a, 
.navbar-default .navbar-nav > .active > a:focus, 
.navbar-default .navbar-nav > .active > a:hover {
	background-color: transparent;
	color: #fff;
}

.navbar-default .mu-menu li a:hover::after,
.navbar-default .mu-menu li a:focus::after,
.navbar-default .navbar-nav > .active > a:focus::after, 
.navbar-default .navbar-nav > .active > a:hover::after {
	transform: scale(1);
}


/*--------------------*/
/* FEATURED SLIDER */
/*--------------------*/

#mu-featured-slider {
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	display: inline;
	float: left;
	width: 100%;
}


.mu-featured-area {
	display: inline;
	float: left;
	width: 100%;
	padding: 16% 5%;
	text-align: center;
}

.mu-featured-area h1 {
	font-size: 60px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 0;
	line-height: 1;
}

.mu-featured-slider-wrapper {
	display: inline;
	float: left;
	width: 100%;
}

.mu-featured-slider {
	display: inline;
	float: left;
	width: 100%;
}

.mu-featured-slider p,
#typed {
	color: #fff;
	font-size: 30px;
	font-weight: 300;
}

.mu-featured-slider span,
#typed span,
.typed-cursor {
	color: #fff;
	font-size: 30px;
	font-weight: 600;
}

.mu-featured-content {
	margin-top: 15px;
	display: inline;
	float: left;
	width: 100%;
}

.mu-featured-content p{
	color: #fff;
}

.mu-featured-content a{
	margin-top: 35px;
}


/*--------------------*/
/* ABOUT US */
/*--------------------*/


#mu-about {
	background-color: #f7f7f7;
	display: inline;
	float: left;
	width: 100%;
}

.mu-about-area {
	display: inline;
	float: left;
	padding: 100px 0;
	width: 100%;
}

.mu-about-header {
	display: inline;
	float: left;
	text-align: center;
	padding: 0 120px;
	width: 100%;
}

.mu-heading-title {
	color: #1c1b1b;
	margin-bottom: 15px;
	position: relative;
}

.mu-about-content {
	background-color: #fff;
	display: inline;
	float: left;
	margin-top: 70px;
	padding: 20px;
	width: 100%;
}

.mu-about-content-left {
	display: inline;
	float: left;
	width: 100%;
}

.mu-about-content-right {
	display: inline;
	float: left;
	margin-top: 20px;
	width: 100%;
}


/*--------------------*/
/* SERVICE */
/*--------------------*/


#mu-service {
	display: inline;
	float: left;
	width: 100%;
}

.mu-service-area {
	display: inline;
	float: left;
	padding: 100px 0;
	width: 100%;
}

.mu-service-header {
	display: inline;
	float: left;
	text-align: center;
	padding: 0 120px;
	width: 100%;
}

.mu-heading-title {
	color: #1c1b1b;
	margin-bottom: 15px;
	position: relative;
}

.mu-service-content{
	display: inline;
	float: left;
	margin-top: 70px;
	width: 100%;
}

.mu-service-content-single {
	background-color: #f8f8f8;
	display: inline;
	float: left;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 25px 10px;
	width: 100%;
}

.mu-service-icon-box {
	font-size: 100px;
	margin-bottom: 20px;
	display: inline-block;	
	width: 200px;
	height: 200px;
	line-height: 75px;
}

.mu-service-content-single h4{
	margin-bottom: 20px;
	font-size: 20px;
}

.mu-service-content-single p {
	font-size: 14px;
	margin-bottom: 0;
	color: #555;
	letter-spacing: 0.5px;
}



/* Filter controls */

.mu-simplefilter {
	text-align: center;
}

.mu-simplefilter li {
	color: #555;
	cursor: pointer;
	display: inline-block;
	padding: 5px;
	margin: 0 5px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
}

.mu-simplefilter li:hover,
.mu-simplefilter li.active {
    border-color: #fff;
}

/*--------------------*/
/* CLIENT TESTIMONIALS */
/*--------------------*/

/* Keyframes for background image fading */
@keyframes fadeBackground {
    0% {
        background-image: url("assets/images/home-maintenance.jpg");
    }
    25% {
        background-image: url("assets/images/smart-home.jpg");
    }
    50% {
        background-image: url("assets/images/tado-smart-thermostats-V3.jpg");
    }
    75% {
        background-image: url("assets/images/ring-door-bell.jpg");
    }
    100% {
        background-image: url("assets/images/home-maintenance.jpg");
    }
}

/* Base styles for the testimonials section */
#mu-testimonials {
    background-position: center center;
    background-size: cover;
    background-attachment: fixed; /* Fixed background for desktop */
    display: inline;
    float: left;
    position: relative;
    width: 100%;
    
    /* Fade effect animation */
    animation: fadeBackground 20s infinite ease-in-out;
    
    /* Transition for smooth background image change */
    transition: background-image 2s ease-in-out;
}

/* Mobile-specific adjustments */
@media only screen and (max-width: 767px) {
    #mu-testimonials {
        animation: fadeBackground 20s infinite ease-in-out; /* Keeps fading on mobile */
        background-attachment: scroll; /* Remove fixed background attachment for mobile */
    }
}

/* Desktop-specific adjustments */
@media only screen and (min-width: 768px) {
    #mu-testimonials {
        background-attachment: fixed; /* Keep fixed for larger screens */
    }
}

/* Dark overlay for better contrast of text */
#mu-testimonials::before {
    background: rgba(0, 0, 0, 0.9);
    bottom: 0;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    position: absolute;
    opacity: 0.84;
}

/* Testimonials area container */
.mu-testimonials-area {
    display: inline;
    float: left;
    padding: 150px 0 210px;
    width: 100%;
}

/* Header for testimonials */
.mu-testimonial-header {
    display: inline;
    float: left;
    text-align: center;
    width: 100%;
}

/* Testimonials header text */
.mu-testimonials-area h2 {
    color: #fff;
    text-align: center;
}

/* Testimonials block styling */
.mu-testimonials-block {
    display: inline;
    float: left;
    margin-top: 60px;
    width: 100%;
}

/* Individual testimonial styling */
.mu-testimonial-slide li {
    list-style: none;
    text-align: center;
}

.mu-testimonial-slide li.slick-slide {
    padding: 0 100px;
}

/* Quote icon styling */
.mu-testimonial-slide li .mu-quote-icon {
    color: #fff;
    font-size: 16px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

/* Testimonial text styling */
.mu-testimonial-slide li p {
    color: #fff;
    font-size: 16px;
}

/* Client name styling */
.mu-ct-name {
    margin-bottom: 5px;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 30px;
}

/* Client title styling */
.mu-ct-title {
    color: #fff;
    font-size: 14px;
}

/* Slick carousel dots styling */
.mu-testimonial-slide .slick-dots {
    bottom: -70px;
}

.mu-testimonial-slide .slick-dots li {
    height: 12px;
    width: 12px;
}

.mu-testimonial-slide .slick-dots li button {
    background-color: #fff;
    border-radius: 50%;
    height: 10px;
    padding: 0;
    width: 10px;
    transition: all 0.5s;
}

.mu-testimonial-slide .slick-dots li button:hover,
.mu-testimonial-slide .slick-dots li button:focus,
.mu-testimonial-slide .slick-dots li.slick-active button {
    height: 12px;
    width: 12px;
}

.mu-testimonial-slide .slick-dots li button::before {
    display: none;
}

/*--------------------*/
/* CONTACT US */
/*--------------------*/

#mu-contact {
	background-color: #fff;
	display: inline;
	float: left;
	width: 100%;
}

.mu-contact-area {
	display: inline;
	float: left;
	padding: 100px 0;
	width: 100%;
}

.mu-contact-header {
	display: inline;
	float: left;
	text-align: center;
	width: 100%;
	padding: 0 120px;
}

.mu-contact-content{
	display: inline;
	float: left;
	margin-top: 50px;
	padding: 0 120px;
	width: 100%;
}

.mu-contact-top {
	display: inline;
	float: left;
	width: 100%;
	margin-bottom: 40px;
}

.mu-contact-top-single {
	display: inline;
	float: left;
	text-align: center;
	width: 100%;
}

.mu-contact-top-single .mu-icon {
	font-size: 25px;
	display: inline-block;
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	margin-bottom: 15px;
	color: #fff;
}

.mu-contact-top-single p{
	margin-bottom: 0;
}

.mu-contact-top-single .email-link {
    color: white; /* Ensures the link text stays white */
    text-decoration: none; /* Removes any underline */
}

.mu-contact-top-single .email-link:hover,
.mu-contact-top-single .email-link:active,
.mu-contact-top-single .email-link:focus {
    color: white; /* Keeps color white on hover, focus, and active */
}

.mu-contact-top-single .email-link i {
    color: white; /* Keeps the icon color white */
}

/* Ensure the phone icon stays white and disable hover effects */
.mu-contact-top-single #phone-icon,
.mu-contact-top-single #phone-icon a,
.mu-contact-top-single #phone-icon i {
    color: white !important; /* Forces the color to stay white */
    text-decoration: none; /* Removes any underline if it's in an <a> tag */
}

.mu-contact-top-single #phone-icon a:hover,
.mu-contact-top-single #phone-icon a:active,
.mu-contact-top-single #phone-icon a:focus,
.mu-contact-top-single #phone-icon:hover,
.mu-contact-top-single #phone-icon:active,
.mu-contact-top-single #phone-icon:focus,
.mu-contact-top-single #phone-icon i:hover,
.mu-contact-top-single #phone-icon i:active,
.mu-contact-top-single #phone-icon i:focus {
    color: white !important; /* Ensures white color on all interaction states */
}

.mu-contact-bottom {
	display: inline;
	float: left;
	width: 100%;
}

.mu-contact-form {
	text-align: center;
}

.mu-contact-form .form-group input {
	background: transparent;
	border-radius: 4px;
	color: #333;
	font-size: 15px;
	border: 1px solid #888;
	height: 45px;
	margin-bottom: 24px;
}

.mu-contact-form .form-group textarea {
	background: transparent;
	border: 1px solid #888;
	border-radius: 4px;
	color: #333;
	font-size: 15px;
	padding: 10px;
	height: 190px;
}

/* General styling for the dropdown */
.mu-contact-form .form-group select {
    background: transparent;
    border-radius: 4px;
    color: #333;
    font-size: 15px;
    border: 1px solid #888;
    height: 45px;
    margin-bottom: 24px;
    padding: 0 10px; /* Ensure padding is consistent with text inputs */
    appearance: none; /* Removes default browser styles */
}

/* Add desired pink border on focus without affecting text */
.mu-contact-form .form-group select:focus {
    background-color: #fff;
    outline: none; /* Removes default outline */
    box-shadow: 0 0 0 2px #E50073; /* Adds pink border */
    border-color: #E50073; /* Ensures the border matches the focus color */
}

/* Ensure dropdown options are readable */
.mu-contact-form .form-group select option {
    color: #333;
    background: #fff;
}

#other-text-box {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out; /* Smooth transition for opacity */
}

#other-text-box.visible {
    display: block; /* Ensure it's visible */
    opacity: 1; /* Make it fully opaque */
}

.mu-contact-form .form-control:focus {
	background-color: #fff;
    outline: 0;
    box-shadow: none;    
} ©

.mu-contact-form .form-control::-webkit-input-placeholder {
	color: #888;
	font-size: 15px;
}

.mu-contact-form .form-control:-moz-placeholder { /* Firefox 18- */
	color: #888;
	font-size: 15px; 
}

.mu-contact-form .form-control::-moz-placeholder {  /* Firefox 19+ */
	color: #888;
	font-size: 15px;
}

.mu-contact-form .form-control:-ms-input-placeholder {  
	color: #888;
	font-size: 15px;
}

.mu-contact-form .button-default::after,
.mu-contact-form .button-default > span {
	padding: 12px 40px;  
}

.mu-social-media {
	display: inline;
	float: left;
	width: 100%;
}

#form-messages {
    display: none; /* Initially hide the message box */
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px; /* Combine margin-bottom */
    background-color: #f9f9f9;
}

#loading-indicator {
    display: none; /* Initially hide loading indicator */
}

/* WhatsApp Button */

/* WhatsApp Container */
.whatsapp-container {
    position: fixed; /* Keep the container fixed */
    bottom: 8px; 
    right: 20px; 
    z-index: 1000; /* Ensure it's on top */    
    display: block; 
    opacity: 1; /* Ensure it starts fully visible */
}

/* WhatsApp Button Start */
.whatsapp-button {
    position: relative; /* Ensure position is relative for the close button */
    display: flex;
    align-items: center;
    justify-content: center; /* Center the icon */
    background-color: #25D366; /* WhatsApp green color */
    padding: 10px 15px; /* Padding for desktop */
    border-radius: 50px; /* Rounded corners for desktop */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    text-decoration: none !important;
    color: white !important;
    font-size: 16px; /* Font size for text */
}

/* Font Awesome icon */
.whatsapp-button i {
    font-size: 50px !important; /* Icon size for desktop */
}

/* WhatsApp text */
.whatsapp-text {
    margin-left: 10px;
}

/* Close Button */
.close-button {
    position: absolute; /* Position relative to the button */
    top: -20px; /* Adjust vertical position */
    right: -15px; /* Adjust horizontal position */
    color: red; /* Color of the close button */
    font-size: 50px; /* Increased size for visibility */
    font-weight: bold; /* Make the font bold */
    cursor: pointer; /* Pointer cursor for clickable element */
    display: none; /* Hide by default */
    transition: color 0.3s, transform 0.3s; /* Smooth transition for hover effects */
}

/* Add hover effect for close button */
.close-button:hover {
    color: darkred; /* Change color on hover */
    transform: scale(1.1); /* Slightly enlarge the button on hover */
}

/* Add hover effect */
.whatsapp-button:hover {
    background-color: #20b954; /* Darken on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Increase shadow on hover */
}

/* Styles for mobile devices */
@media only screen and (max-width: 768px) {
    /* Hide the text on mobile */
    .whatsapp-text {
        display: none;
    }

    /* Adjust button size for circular shape on mobile */
    .whatsapp-button {
        width: 60px;  /* Set width for circular shape */
        height: 60px; /* Set height for circular shape */
        padding: 0; /* Remove padding for perfect circle */
        bottom: 50px; /* Adjust position */
        right: 5px;   /* Adjust position */
        border-radius: 50%; /* Perfect circle */
    }

    /* Make the icon larger on mobile */
    .whatsapp-button i {
        font-size: 40px !important; /* Larger icon for mobile */
    }

    /* Show the close button on mobile */
    .close-button {
        display: block; /* Show close button on mobile */
        /* Reposition the close button slightly up and to the right */
        top: -95px; /* Adjust vertical position closer to the button */
        right: -10px; /* Adjust horizontal position */
    }
}

/* Styles for tablets */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    /* Adjust button position for tablets */
    .whatsapp-button {
        bottom: 100px; /* Position higher on the screen */
        right: 10px;   /* Adjust right position */
    }

    /* Font Awesome icon size for tablets */
    .whatsapp-button i {
        font-size: 50px !important; /* Adjust icon size for tablets */
    }

    /* Show the close button on tablets */
    .close-button {
        display: block; /* Show close button on tablets */
        /* Reposition the close button slightly up and to the right */
        top: -140px; /* Adjust vertical position closer to the button */
        right: -5px; /* Adjust horizontal position */
    }
}

/* WhatsApp Button End */

/* Custom File Upload Button */
.custom-file-upload {
    display: inline-block;
    cursor: pointer;
    background-color: #333; /* Adjust to match your style */
    color: #fff;
    padding: 12px 40px;
    font-size: 15px;
    border-radius: 4px;    
    transition: background-color 0.3s ease; /* Smooth background change on hover */
    user-select: none; /* Prevent text selection on button */
}

.custom-file-upload:hover {
    background-color: #444; /* Slightly darker on hover */    
}

.remove-button {
    background-color: #f44336; /* Red background */
    color: white; /* White text */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    padding: 8px 12px; /* Padding for button */
    font-size: 1em; /* Font size */
    margin-top: 8px; /* Margin to separate from image */
    height: 40px; /* Fixed height for the button */
    width: 100%; /* Full width to align with the image */
    transition: background-color 0.3s; /* Smooth transition for background color */
}

.remove-button:hover {
    background-color: #d32f2f; /* Darker red on hover */
}

/* Submit Button */
.mu-send-msg-btn {
    background-color: #333;
    color: #fff;
	border: none; /* No border */
    padding: 12px 40px;
    font-size: 20px;
    border-radius: 4px;   
    cursor: pointer;
	width: 100%;
    transition: background-color 0.3s ease; /* Smooth background change on hover */
}
.mu-send-msg-btn:hover {
    background-color: #444; /* Slightly darker on hover */    
}

/* Styles for the disabled state */
.mu-send-msg-btn:disabled {
    background-color: #333; /* Maintain background color */
    color: white; /* Ensure text color is white when disabled */
    cursor: not-allowed; /* Change cursor to indicate it's disabled */
    opacity: 0.5; /* Reduce opacity to indicate it's inactive */
}

/* Optional: If you want to remove hover styles when disabled */
.mu-send-msg-btn:disabled:hover {
    background-color: #333; /* Keep background the same */
    color: white; /* Keep text color the same */
}

/* Loading Indicator Styles */
#loading-indicator {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    background-color: #4CAF50; /* Green background */
    color: #fff; /* White text */
    font-size: 18px; /* Large font size */
    padding: 12px; /* Padding around the text */
    border: 2px solid #388E3C; /* Darker green border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow effect */
    margin-top: 20px; /* Add margin to create space above the loading indicator */
}

/* Upload Icon */
.upload-icon {
    margin-right: 10px; /* Space between the icon and text */
    font-size: 32px; /* Larger icon size */
}

.success {
	padding: 1em;
	margin-bottom: 0.75rem;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	color: #468847;
	background-color: #dff0d8;
	border: 1px solid #d6e9c6;
	-webkit-border-radius: 4px;
	 -moz-border-radius: 4px;
	      border-radius: 4px;
}

.error {
	padding: 1em;
	margin-bottom: 0.75rem;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	color: #b94a48;
	background-color: #f2dede;
	border: 1px solid rgba(185, 74, 72, 0.3);
	-webkit-border-radius: 4px;
	 -moz-border-radius: 4px;
	      border-radius: 4px;
}

/*--------------------*/
/* FOOTER */
/*--------------------*/


#mu-footer {
    background-color: #f8f8f8;
				 
			 
    width: 100%;
}

.mu-footer-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack items vertically */
    padding: 30px 0;
    text-align: center;
    width: 100%;
}

.mu-footer-area a.facebook-link {
    display: flex; /* Use flexbox for icon and text alignment */
    align-items: center; /* Center the icon and text vertically */
    text-decoration: none; /* Remove underline from link */
}

.mu-footer-area a.facebook-link i {
    font-size: 30px; /* Set the icon size */
    margin-right: 8px; /* Add space between icon and text */
    color: #3b5998; /* Facebook blue color */
					  
}

.follow-text {
    font-size: 15px; /* Match the text size to the icon size */
    color: #333; /* Set your desired text color */
}

.mu-copy-right {
    margin-bottom: 0;
    text-align: center;
}


/*--------------------*/
/* RESPONSIVE STYLE */
/*--------------------*/

@media (max-width: 1199px) {

	.navbar-brand img {
		width: 145px;
		margin-top: -10px;
	}

	.navbar-default .mu-menu li a {
		margin: 10px 12px 5px;
	}

	.mu-about-content-right {
		margin-top: 0;
	}

	.mu-skill-progress-bar h3 {
		margin-top: 0;
	}

	
}

@media (max-width: 991px) {
	
	.navbar-default .mu-menu li a {
		font-size: 14px;
		margin: 10px 5px;
	}	

	.mu-primary-btn {
		font-size: 14px;
		padding: 12px 22px;
	}

	.mu-simplefilter li{
		margin-bottom: 10px;
	}

	.mu-about-header,
	.mu-service-header,
	.mu-contact-header {
		padding: 0;
	}
	 
	.mu-featured-area {
		padding: 20% 5%;
	}

	.mu-about-content-left img{
		width: 100%;
	}

	.mu-about-content-right {
		margin-top: 50px;
	}

	.mu-filter-item-content {
		padding-top: 18%;
	}

	.filtr-item h4 {
		font-size: 16px;
	}

	.mu-testimonial-slide li.slick-slide,
	.mu-contact-content {
		padding: 0 50px;
	}

		
}

@media (max-width: 767px) {
	
	.navbar-brand img {
		width: 145px;
		margin-top: -18px;
	}
	
	.navbar-toggle {
		padding: 16px 8px;
	}
	
	.navbar-default .navbar-toggle {
		border-color: #fff;
	}

	.navbar-default .navbar-toggle:hover,
	.navbar-default .navbar-toggle:focus{
		background-color: transparent;
	}

	.navbar-default .navbar-toggle .icon-bar {
		background-color: #fff;
	}

	.navbar-default .navbar-collapse, 
	.navbar-default .navbar-form {
		background-color: rgba(0,0,0,0.8);
		text-align: center;
	}

	.navbar-default .mu-menu li a {
		display: inline-block;
	}

	.mu-team-content .row > div {
		width: 49.5%;
		float: left;
	}

	.mu-testimonial-slide li {
		padding: 0 15px;
	}

	.mu-filter-item-content {
		padding-top: 25%;
	}

	.mu-contact-top-single {
		margin-bottom: 25px;
	}
	
		
}


@media (max-width: 640px){
	
	.navbar-toggle {
		padding: 16px 8px;
	}

	#mu-header.mu-fixed-nav {
		padding: 25px 0;
	}
	
	.mu-featured-slider-content {
		left: 0;
		right: 0;
		bottom: 0;
		top: 30%;
		padding: 0 10px;
	}

	.mu-featured-slider-content h2 {
		font-size: 20px;
		margin-bottom: 5px;
	}

	.mu-featured-slider-content p {
		font-size: 12px;
	}

	.mu-primary-btn {
		font-size: 12px;
		padding: 10px 12px;
		margin-top: 15px;
	}

	.slick-dots {
		bottom: 15px;
	}
			

}


@media (max-width: 480px) {

	#mu-header {
		padding: 20px 0;
	}

	.navbar-default .navbar-brand, 
	.navbar-default .navbar-brand:hover, 
	.navbar-default .navbar-brand:focus {
		font-size: 25px;
		margin-top: -12px;
	}

	.navbar-toggle {
		padding: 10px 8px;
	}

	.navbar-toggle .icon-bar {
		width: 18px;
	}

	h2{
		font-size: 25px;
	}

	.mu-heading-title {
		margin-bottom: 10px;
	}

	.mu-about-content-single h4 {
		margin-bottom: 18px;
	}

	.mu-simplefilter li {
		padding: 1rem 1.3rem;
		font-size: 14px;
	}

	.mu-team-social-info a {
		width: 35px;
		height: 35px;
		font-size: 16px;
		line-height: 35px;
	}

	.mu-contact-form button {
		width: 100%;
	}

	.filtr-item h4 {
		font-size: 14px;
	}

	.mu-featured-area h1 {
		font-size: 40px;
	}

	.mu-featured-slider p, 
	#typed,
	#typed span {
		font-size: 18px;
	}

	.mu-featured-content p {
		font-size: 14px;
	}

	.mu-filter-item-content {
		padding-top: 20%;
	}

	.mu-featured-area {
		padding: 20% 5%;
	}

				
	
}


@media (max-width: 360px){

	.mu-featured-slider-content {
		top: 49%;
	}

	.mu-featured-slider-content p,
	.mu-featured-slider-content .mu-primary-btn {
		display: none;
	}

	.mu-featured-slider-content h2 {
		font-size: 18px;
		margin-bottom: 0;
	}

	.mu-filter-item-content {
		padding-top: 25%;
		padding-left: 5px;
		padding-right: 5px;
	}

	.filtr-item h4 {
		font-size: 12px;
	}

	.mu-team-content .row > div {
		width: 100%;
	}

	.mu-simplefilter li {
		padding: 1rem 1rem;
		font-size: 12px;
	}

	.mu-portfolio-content .col-xs-6 {
		width: 100%;
	}

	.mu-testimonial-slide li.slick-slide, 
	.mu-contact-content {
		padding: 0;
	}
	
}



@media (max-width: 320px){
	
	
	
	
	
}

