.navigation-menu .has-children > a {
    padding-right: 14px;
    position: relative;
    font-weight: 600;
}
.navigation-menu .has-children > a::after {
    content: "▾";
    position: absolute;
    right: -2px;
    top: 1px;
    font-size: 13px;
    transition: 0.3s;
}
.navigation-menu .has-children:hover > a::after {
    transform: rotate(180deg);
}
.navigation-menu .sub-menu {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 0;
    min-width: 210px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .25s ease;
}
.navigation-menu .has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.navigation-menu .sub-menu li a {
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 500;
    transition: .2s;
}
.navigation-menu .sub-menu li a:hover {
    background: #eef4ff;
    color: #0066ff;
}

/* --------------------------------------------------
    New Banner (Consistent With About & Contact)
-------------------------------------------------- */
.services-banner {
    background: linear-gradient(to bottom, #f8fbfd, #d1e6ff);
    padding: 150px 0 120px;
    text-align: center;
}
.services-banner h1 {
    font-size: 46px;
    font-weight: 700;
    color: black;
}
.services-banner h5 {
    font-size: 18px;
    color: #000;
    margin-top: 10px;
    opacity: 0.9;
}

/* --------------------------------------------------
    Section Visual Enhancements (NO content changed)
-------------------------------------------------- */
.section-space--ptb_100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.feature-large-images-wrapper,
.feature-images-wrapper,
.about-delivering-wrapper {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.bg-gray {
    background: #f7f9fb !important;
}

/* Card polish */
.ht-box-images.style-04, 
.ht-box-images.style-05, 
.style-06 {
    border-radius: 18px;
    overflow: hidden;
    transition: .3s;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.ht-box-images:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Appointment Form Polishing */
.business-solution-form-wrap {
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}
.business-solution-form-wrap input,
.business-solution-form-wrap textarea,
.business-solution-form-wrap select {
    border-radius: 12px;
}
    /* Hamburger button */
#mobileMenuOpen {
cursor: pointer;
z-index: 9999;
position: absolute;
right: 15px;
top: 25px;
width: 30px;
height: 25px;
}
#mobileMenuOpen span {
display: block;
width: 100%;
height: 3px;
margin-bottom: 5px;
background-color: #0079ff !important;
border-radius: 3px;
}

/* Mobile menu panel (slide right) */
.mobile-menu-panel {
position: fixed;
top: 0;
right: -100%;
width: 80%;
max-width: 300px;
height: 100vh;
background: #ffffff;
box-shadow: -5px 0 15px rgba(0,0,0,0.1);
z-index: 100000;
transition: right 0.3s ease-in-out;
padding: 20px;
visibility: hidden;
}
.mobile-menu-panel.open {
right: 0;
visibility: visible;
}

.mobile-menu-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
border-bottom: 1px solid #eee;
padding-bottom: 15px;
}

.close-btn {
font-size: 35px;
background: none;
border: none;
cursor: pointer;
line-height: 0.7;
}

@media (max-width: 768px) {
#mobileMenuOpen { right: 12px !important; top: 22px !important; transform: scale(0.9); }
#mobileMenuOpen span { background-color: #0079ff !important; }

.header { padding: 8px 0 !important; }
.header__logo img { width: 120px !important; height: auto !important; }
}
/* Center footer items on mobile */
@media (max-width: 767px) {

.footer-brand, 
.footer-links, 
.footer-contact, 
.footer-bottom {
    text-align: center !important;
}

.footer-brand .social-links {
    justify-content: center !important;
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

/* THIS PART CENTERS THE LOGO */
.footer-logo {
    margin: 0 auto 15px auto;
    display: block;
}
.mt-30{
    margin-left: 14px;
}
}