/* Service Card Cusom CSS  */

/* Medium Screens (Tablets, 768px – 1024px) */
@media (max-width: 1024px) {
    .single-service.single-service2 .content h6 {
        font-size: 14px !important;
        margin-bottom: .3rem !important;
    }
    .single-service{
        padding: 20px 15px !important;
    }
    .single-service img {
    height: 45px !important;
}
}

/* Small Screens (Phones, below 768px) */
@media (max-width: 768px) {
    .single-service.single-service2 .content h6 {
        font-size: 12px !important;
        margin-bottom: .1rem !important;
    }
    .single-service{
        padding: 15px 10px !important;
    }
    .single-service img {
    height: 35px !important;
}
/* blogs css  */
.post-title{
    font-size: 16px !important;
}
.blog-post .post-body > p{
    font-size: 14px;
}

}

/* Phone Screens for only Phones  */
@media (max-width: 767px) {
    .single-service.single-service2 .content h6 {
        font-size: 11px !important;
        margin-bottom: .1rem !important;
    }
    .single-service.single-service2 .content p {
        font-size: 9px !important;
    }
    .single-service{
        padding: 8px 5px !important;
    }   
    .single-service img {
        height: 27px !important;
    }

    .section-title.section-title2 h2 {
    
        font-size: 20px !important;
    }


}

/* Hide on desktop/tablet */
.mobile-bottom-nav {
    display: none;
    visibility: hidden;
}

/* Mobile Only */
@media (max-width: 767px) {
    .mobile-bottom-nav {
        visibility: visible;
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 8px 0;
        border-top: 1px solid #e5e5e5;
        z-index: 9999;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    }

    .mobile-nav-item {
        flex: 1;
        text-align: center;
        font-size: 12px;
        color: #333;
        text-decoration: none;
    }

    .mobile-nav-item i {
        font-size: 20px;
        display: block;
        margin-bottom: 3px;
    }

    .mobile-nav-item span {
        font-size: 11px;
        font-weight: 500;
        display: block;
    }

    /* Cart bubble */
    .badge-count {
        position: absolute;
        top: -2px;
        right: 25px;
        background: black;
        color: #fff;
        font-size: 9px;
        padding: 2px 5px;
        border-radius: 50%;
    }
}

.mobile-nav-item.active span {
    font-weight: 700;
    color: #000; 
}

.mobile-nav-item.active svg {
    color: #000;
    fill: #000;
}
.mobile-nav-item .badge-count{
    color: white !important;
}
.mobile-nav-item.active {
    opacity: 1;
}

.mobile-nav-item {
    opacity: 0.8;
}

/* mobile new Menu  */

/* Hidden by default */
.more-menu-overlay {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999999;
    transition: 0.45s ease-in-out;
    padding: 30px 20px;
}

/* When opened */
.more-menu-overlay.active {
    bottom: 0;
}

/* Header */
.more-menu-header {
    padding: 10px 5px;
    border-bottom: 1px solid #ddd;
}

.more-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.close-more {
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
}

/* Menu Links */
.more-menu-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.more-menu-links a {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
}

/* MOBILE ONLY */
@media (min-width: 768px) {
    .more-menu-overlay {
        display: none !important;
    }
}


.read-more-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: auto;
    transition: 0.3s ease;
}

.read-more-btn:hover {
    background: #222;
    transform: translateY(-6px);
}
