/* Increase Logo Size in Header */
#header .navbar-brand img {
    height: 80px !important; /* Adjust this value (default is usually ~40px) */
    width: auto;
    max-height: none;
}

/* Ensure the header expands to fit the larger logo */
#header .navbar {
    min-height: 100px; /* Adjust to be slightly larger than your logo height */
}


/* High-Visibility CTA Button */
.btn-primary.btn-lg {
    box-shadow: 0 0 0 0 rgba(0, 51, 102, 0.7);
    animation: pulse 2s infinite;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: transform 0.2s ease;
}

.btn-primary.btn-lg:hover {
    transform: scale(1.05); /* Slightly enlarges on hover */
    background-color: #004080; /* Darkens slightly */
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 51, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(0, 51, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 51, 102, 0);
    }
}
