/* ===== GTIL Custom Styles ===== */

/* Navbar brand text color (flips like nav links on sticky/mobile) */
.navbar-light .navbar-brand .brand-text {
    color: #ffffff;
    transition: .5s;
}
.sticky-top.navbar-light .navbar-brand .brand-text {
    color: var(--bs-dark);
}
@media (max-width: 991.98px) {
    .navbar-light .navbar-brand .brand-text {
        color: var(--bs-dark);
    }
}

/* Service cards */
.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}
.service-card-home {
    transition: .4s;
}
.service-card-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 208, 132, .25) !important;
}
.service-card-home:hover .service-icon {
    background: var(--bs-secondary);
}

/* Certification badges */
.cert-badge {
    display: inline-block;
    padding: 10px 22px;
    margin: 6px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
    background: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: .3s;
}
.cert-badge:hover {
    background: var(--bs-primary);
    color: #ffffff;
}

/* Floating WhatsApp button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .3);
    z-index: 9999;
    transition: transform .3s ease;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
}

/* Inner-page breadcrumb hero text */
.bg-breadcrumb h1 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}
