:root {
    --primary: #0b4a6f;
    --accent: #f6b24a;
    --light: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background-color: #09425b;
    border-color: #09425b;
}
.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #000;
}
.btn-accent:hover {
    background-color: #e5a23d;
    color: #000;
}

.whatsapp-cta {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: white !important;
}
.whatsapp-cta:hover {
    background-color: #1ebe57 !important;
}


.whatsapp-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    display: block !important;
    animation: pulse 2s infinite;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Remove any previous hiding rules */
.whatsapp-inline,
.whatsapp-float + * {
    display: block !important;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.card {
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
img.card-img-top {
    height: 220px;
}


.navbar-brand {
  display: flex;
  align-items: center;
  white-space: nowrap; /* keeps text and logo in one line */
}

.navbar-brand img {
  height: 88px;
  width: auto;
}

.logo-text {
  font-size: 1.1rem;
}

@media (max-width: 575.98px) {
  .navbar-brand {
    flex-wrap: nowrap; /* prevent wrapping */
  }
  .logo-text {
    font-size: 1rem;
  }
}
