/* 
Theme Name:		 uTech Child
Theme URI:		 https://wp.mehedidb.com/utech
Description:	 uTech Child is a child theme of uTech.
Author:			 BDEXPERT
Author URI:		 https://themeforest.net/user/bdexpert/portfolio
Template:		 utech
Version:		 2.0.0
*/

/*
    Add your custom styles here
*/

/* Mobile Contact Bar */
/* Mobile Contact Bar */
.mobile-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #f9d423, #ff4e50); /* Subtle gradient for premium feel */
    padding: 15px 10px;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    justify-content: space-around;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

/* Call and Action Buttons */
.mobile-contact-bar .call-button,
.mobile-contact-bar .action-button {
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 10px 15px; /* Adjusted for better fit */
    background-color: #ffcc00; /* Yellow button matching your theme */
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Space between icon and text */
    cursor: pointer;
    min-width: 140px; /* Prevents text wrapping */
    max-width: 200px; /* Keeps buttons consistent */
    text-align: center;
    white-space: nowrap; /* Prevents text breaking */
}

/* Hover Effects */
.mobile-contact-bar .call-button:hover,
.mobile-contact-bar .action-button:hover {
    background-color: #e6b800; /* Slightly darker yellow on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* Icon Styling */
.mobile-contact-bar .icon {
    font-size: 18px;
    margin-right: 5px;
}

/* Responsive for Mobile Devices */
@media only screen and (max-width: 767px) {
    .mobile-contact-bar {
        display: flex !important;
    }
}