/* Baprus Remedies Custom Styles */

/* Logo size constraint for navbar */
.logo img, .nav-logo img, .menu-logo-mobi img {
    max-height: 40px;
    width: auto;
}
.meedy_nav_manu.style-2 .logo img, .meedy_nav_manu.style-2 .main_sticky img {
    max-height: 38px;
}
.mobile-menu .logo img {
    max-height: 35px;
}

/* Navbar container padding - compact */
.meedy_nav_manu.style-2 {
    padding: 10px 45px !important;
}
.sticky.meedy_nav_manu.style-2 {
    padding: 8px 45px !important;
}

/* Navbar link consistent sizing */
.meedy_nav_manu.style-2 .meedy_menu>ul>li>a {
    padding: 8px 16px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    white-space: nowrap;
}
.meedy_nav_manu.style-2 .meedy_menu>ul>li {
    margin: 0 2px !important;
}
.meedy_nav_manu.style-2 .header-button a {
    padding: 10px 24px !important;
    font-size: 14px !important;
}

/* Social icon sizing */
.social-box li a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    font-size: 18px !important;
    line-height: 1 !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
}

.social-box li.whatsapp a { background: #25D366 !important; }
.social-box li.whatsapp a:hover { background: #128C7E !important; transform: translateY(-3px); }
.social-box li.youtube a { background: #FF0000 !important; }
.social-box li.youtube a:hover { background: #CC0000 !important; transform: translateY(-3px); }
.social-box li.messenger a { background: #0084FF !important; }
.social-box li.messenger a:hover { background: #0066CC !important; transform: translateY(-3px); }
.social-box li.gmail a { background: #EA4335 !important; }
.social-box li.gmail a:hover { background: #D33B2C !important; transform: translateY(-3px); }
.social-box li.tiktok a { background: #010101 !important; }
.social-box li.tiktok a:hover { background: #333333 !important; transform: translateY(-3px); }
.social-box li.facebook a { background: #1877F2 !important; }
.social-box li.facebook a:hover { background: #145DBF !important; transform: translateY(-3px); }
.social-box li.linkedin a { background: #0A66C2 !important; }
.social-box li.linkedin a:hover { background: #084B8A !important; transform: translateY(-3px); }

/* Product Image Placeholder Styling */
.product-img-wrapper, .about-thumb {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}
.product-img-wrapper img, .about-thumb img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Partner CTA Section */
.partner-cta-section {
    background: linear-gradient(135deg, #0056b3, #00a8cc);
    padding: 80px 0;
    text-align: center;
    color: white;
}
.partner-cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.partner-cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.partner-cta-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #0056b3;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: #0056b3;
}
.partner-cta-btn i {
    margin-left: 10px;
}

/* Scroll Progress Indicator */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 9999;
}
#scroll-progress .scroll-progress-bar {
    height: 100%;
    background: #00a8cc;
    width: 0;
    transition: width 0.2s ease;
}

/* Active Menu Highlighting */
.nav_scroll li a.active {
    color: #00a8cc;
    font-weight: bold;
}
.nav_scroll li a:hover {
    color: #0056b3;
}

/* Mobile Menu Fixes */
.mobile-menu .nav_scroll li a.active {
    color: #00a8cc;
}

/* Gallery Section - Remove dark box styling */
#gallery .single-service-box {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    overflow: visible;
}
#gallery .single_service_inner {
    display: block;
    gap: 0;
    padding: 0;
}
#gallery .single-service-box:hover {
    transform: translateY(-3px);
}

/* Inquire Now / Attractive Button Style */
.thm-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--thm-primary, #6060e7);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.4;
}
.thm-btn:hover {
    color: #fff !important;
}
.thm-btn:hover .baprus-hover-btn {
    opacity: 1;
    transform: scaleX(1);
}

