:root {
    --primary-dark: #002145;
    --primary-light-font: #898989;
    --accent-red: #FF0000;
    --white: #ffffff;
    --red-btn: #FF3232;
    --text-dark: #002145;
    --alert-red: #EA1934;
    --bg-light: #F7F7F7;
    --bg-border: #D5D5D5;
    --input-bg: #F1F1F1;
    --box-shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.15);
    --font-family: 'Poppins', sans-serif;
    --card-bg: #DE0A24;
    --subtitle-bg: #E7F7F0;
    --title-green: #1FB86C;
}

body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    padding: 10px 45px;
}

.nav-link {
    font-weight: 400;
    position: relative;
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.client-btn-login {
    background-color: transparent;
    color: var(--red-btn);
    border: 1px solid var(--red-btn);
    padding: 8px 30px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.client-btn-login:hover {
    background-color: var(--alert-red);
    color: #fff;
}

.visa-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.visa-card:hover {
    transform: scale(1.02);
}

.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.95rem;
    padding: 10px 45px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links li {
    margin-right: 10px;
}

.footer-links li:last-child {
    margin-right: 0;
}

.social-icons a {
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0dcaf0;
}
.whatsapp-btn {
    text-decoration: none !important;     /* Removes underline */
    font-weight: 500;
    background-color: var(--title-green);
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2); /* soft shadow */
}

.whatsapp-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none !important;
}





/* Responsive */

@media(max-width:425px){
    .logoimg-class{
    height: 25px;
}
}