
/* appointment button center */
.btn-center {
    text-align: center;
    margin-top: 30px;
}
/* SERVICE CARD DEFAULT */
.service-card {
    padding: 40px;
    border: 1px solid #e8ecf1;
    background: #fff;
    transition: 0.3s ease;
}

/* ICON WRAPPER BOX (SAME AS OTHER CARDS) */
.icon-box {
    width: 70px;
    height: 70px;
    background: #f3faff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* ICON DEFAULT STYLE */
.service-icon {
    width: 40px;
    height: 40px;
    display: block;
    filter: invert(0); /* black icon */
    transition: 0.3s ease;
}



/* ICON COLOR CHANGE ON HOVER */
.service-card:hover .icon-box {
    background: rgba(0, 123, 255, 0.1); /* light theme background (optional) */
}

.service-card:hover .service-icon {
    filter: invert(31%) sepia(93%) saturate(3000%) hue-rotate(200deg) brightness(95%) contrast(90%);
    /* Converts black SVG into theme color */
}




/* Fix icon escaping issue completely */
.icon-box-fix {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 70px !important;
    height: 70px !important;

    background: #f3faff !important;
    border-radius: 6px !important;

    margin-bottom: 25px !important;
    z-index: 10 !important;
}

/* Force icon inside box */
.icon-box-fix img {
    width: 38px !important;
    height: 38px !important;
    object-fit: contain !important;
    position: relative !important;
    z-index: 20 !important;
}

/* Background shape stays behind */
.service-bg-shape {
    position: absolute !important;
    top: 0;
    right: 0;
    z-index: 1;
    opacity: 0.3;
}



    /* Floating Icons Container */
.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 150px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

/* Icon Style */
.ficon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover Effect */
.ficon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* Tooltip Label */
.ficon .label {
    position: absolute;
    right: 65px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    white-space: nowrap;
}

.ficon:hover .label {
    opacity: 1;
    transform: translateX(0);
}

/* Different Colors for Each */
.whatsapp { background: #25D366; }
.call { background: #007BFF; }
.instagram { 
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}
.youtube { background: #FF0000; }




