/* Button Styling */
.btn-cirt {
    margin-top: 0.75rem;
    background-color: rgb(3, 3, 197);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cirt:hover {
    background-color: #030862; /* Darker green for hover */
    transform: scale(1.05);
}