/* Jabco Pharma - custom styles */
html { scroll-behavior: smooth; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

.hero-gradient {
  background:
    linear-gradient(120deg, rgba(18,59,115,.92) 0%, rgba(0,119,182,.82) 60%, rgba(101,184,46,.55) 100%),
    url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

.card-hover { transition: transform .35s ease, box-shadow .35s ease; }
.card-hover:hover { transform: translateY(-6px); box-shadow: 0 25px 50px -20px rgba(18,59,115,.25); }

.btn-primary { background:#65B82E; color:#fff; }
.btn-primary:hover { background:#4f9825; }

.section-title::after {
  content: ''; display:block; width:56px; height:3px; background:#65B82E;
  margin-top:16px; border-radius:2px;
}

.link-underline { position:relative; }
.link-underline::after {
  content:''; position:absolute; left:0; bottom:-2px; height:2px; width:0; background:#65B82E; transition:width .3s;
}
.link-underline:hover::after { width:100%; }

img { max-width:100%; height:auto; }
