b{
    color: #032642;
}
.social-media ul li a {
    background: #03264200;
}
.featured {
    padding: 40px 0 40px;
}
p {
    font-size: 16px;
    line-height: 30px;
}
.counter-container {
    padding: 68px 6px 78px;
}
/* .tcull_hover:hover {
    color: var(--primary-color);
    text-decoration: underline !important;
}
.tcull_hoverr:hover{
    position: relative;
    color: inherit;
    text-decoration: none;
}  */

.tcul_hover {
    position: relative;
    display: inline-block;
    color: inherit; /* Inherit normal text color */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth color transition */
}

.tcul_hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
}

.tcul_hover:hover {
    color: var(--primary-color); /* Color only on hover */
}

.tcul_hover:hover::after {
    width: 100%;
}


