:root {
    --primary-color: #b30502;
}


.info-box-2 h4:hover {
    color: #b30502;
}

.hero-caption h5 {
    color: #328351;
}

.section-title h3 {
    color: #19743e;
}

.testimonial-text h5:hover {
    color: #b30502;
}

.dark_btn {
    color: white;
    /* Text color */
    padding: 8px 10px;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
}

.dark_btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #b30502;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
    /* Smooth transition for the underline */
}

.dark_btn:hover::after {
    width: 100%;
    /* Underline expands on hover */
}