/* 
  BoldTech ICT Solutions – Custom Styles 
  Overrides for Aircon Template to match BoldTech branding
*/

:root {
    --bs-primary: #0061df;
    --bs-secondary: #003380;
    --boldtech-dark: #001f3f;
    --boldtech-accent: #007bff;
}

.text-primary { color: var(--bs-primary) !important; }
.bg-primary { background-color: var(--bs-primary) !important; }
.btn-primary { 
    background-color: var(--bs-primary); 
    border-color: var(--bs-primary); 
}
.btn-primary:hover {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

/* Navbar Enhancements */
.navbar .navbar-nav .nav-link {
    font-weight: 500;
}
.navbar .navbar-brand img {
    max-height: 45px;
}

/* Page Headers */
.page-header {
    background: linear-gradient(rgba(0, 97, 223, 0.7), rgba(0, 51, 128, 0.7)), url('../../Images/second-hero.jpg') center center no-repeat;
    background-size: cover;
}

/* Breadcrumb Fix */
.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: rgba(255,255,255,0.5);
    content: var(--bs-breadcrumb-divider, "/");
}

/* Footer Styles */
.footer {
    background: #001529;
    color: #fff;
}
.footer .btn.btn-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
}
.footer .btn.btn-link:hover {
    color: #fff;
    padding-left: 10px;
}

/* Blog & Solution Cards */
.blog-item, .service-item, .card {
    transition: 0.3s;
    border: none;
}
.card:hover {
    transform: translateY(-5px);
}

/* Gallery Hover Overlay */
.gallery-item {
    position: relative;
    overflow: hidden;
}
.gallery-item:hover .gallery-caption {
    bottom: 0;
}
.gallery-caption {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(0, 97, 223, 0.9);
    color: #fff;
    padding: 10px;
    transition: 0.4s;
}

/* Responsive fixes */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

/* Custom Widgets */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}
.sticky-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}
.sticky-whatsapp a:hover {
    transform: scale(1.1);
}
