/* Custom Branding */
:root {
    --tunza-blue: #1e40af;
    --tunza-pink: #db2777;
}

/* Smooth transitions for images */
img {
    transition: transform 0.5s ease;
}

/* Custom button styles to match the rounded look in the design */
.btn-primary {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}

input[type], select
{
    border:2px solid #0CA9CC;
    transition: border-color 0.3s;
}


/* Base nav link */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

/* Hover underline */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ACTIVE PAGE */
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    width: 100%;
}

/* Dark mode smooth transition */
html {
    transition: background 0.3s, color 0.3s;
}