.customer-image {
    width: 120px;
    height: 120px;

}

.btn-view {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    border: 1px solid #444;
    width: 200px;
    height: 60px;
    white-space: nowrap;
    color: #ff0;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(14, 15, 18, .2);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

/**/
a.tooltip1 {
    outline: none;
    color: #FF0;
    font-weight: normal;
    -webkit-animation: blink .90s linear infinite;
    -moz-animation: blink .90s linear infinite;
    -ms-animation: blink .90s linear infinite;
    -o-animation: blink .90s linear infinite;
    animation: blink .90s linear infinite;
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

a.tooltip1:hover {
    color: #FFF;
    -webkit-animation: none;
    -moz-animation: none;
    animation: none;
}

/* 180226 */
@media (max-width: 767px) {
    .nav-tabs.nav-justified>li {
        display: table-cell !important;
        width: 1% !important;
        float: none !important;
    }

    .nav-tabs.nav-justified>li>a {
        margin-bottom: 0 !important;
    }
}

@keyframes blink {
    0%   { opacity: 1; }
    50%  { opacity: 0.5; }
    100% { opacity: 1; }
}

.blinking {
    animation: blink 3s infinite;
}

/* ✅ Stop blinking on hover */
.blinking:hover {
    animation: none;
    opacity: 1; /* ensure fully visible */
}


.callblock .custom-btn {
    display: inline-block;
    padding: 10px 25px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6); /* subtle hover */
    border: 1px solid #444;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    transition: all 0.3s ease;
}

.callblock .custom-btn:hover {
    background-color: rgba(255, 255, 255, 0.1); /* subtle hover */
    color: #fff;
    transform: scale(1.05);
}

@keyframes blink {
    0%   { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 1; }
}

.blinking {
    animation: blink 1s infinite;
}
/* ============================= */
/*  Equal Height Animated Tabs  */
/* ============================= */

.desc-tabs .nav-tabs {
    display: flex;
    width: 100%;
    border-bottom: none;
}

.desc-tabs .nav-tabs > li {
    float: none;          /* remove bootstrap float */
    flex: 1;              /* equal width */
    display: flex;
    margin-bottom: 0;     /* remove bootstrap shift */
}

.desc-tabs .nav-tabs > li > a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    height: 90px;              /* fixed equal height */
    padding: 10px;

    font-size: 18px;
    color: #fff !important;

    border: none !important;   /* remove bootstrap active border */
    margin: 0 !important;
    border-radius: 0;

    transition: all 0.3s ease;
}

/* ICON */
.desc-tabs .nav-tabs > li > a i {
    font-size: 22px;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
}

/* ACTIVE TAB (same height as others) */
.desc-tabs .nav-tabs > li.active > a {
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

/* ================= */
/*  HOVER ANIMATION */
/* ================= */

.desc-tabs .nav-tabs > li > a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.desc-tabs .nav-tabs > li > a:hover i {
    transform: scale(1.2);
}

/* ============ */
/* Responsive   */
/* ============ */

@media (max-width: 991px) {
    .desc-tabs .nav-tabs > li > a {
        height: 80px;
        font-size: 15px;
    }

    .desc-tabs .nav-tabs > li > a i {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .desc-tabs .nav-tabs > li > a {
        height: 70px;
        font-size: 13px;
    }

    .desc-tabs .nav-tabs > li > a i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .desc-tabs .nav-tabs > li > a {
        height: 60px;
        font-size: 11px;
    }
}
