html {
  scroll-behavior: smooth;   /* smooth scrolling */
  scroll-padding-top: 80px;  /* adjust based on navbar height */
}
/* Custom logo size (easily adjustable) */
 .navbar-brand img {
     height: 65px;
     /* Change height here */
     width: auto;
     /* Adjust width automatically */
     max-width: 185px;
     /* Optional max width */
 }

 /* Increase nav text size */
 .navbar .nav-link {
     font-size: 1.05rem;
     /* slightly larger */
     color: #000 !important;
     /* all black */
     font-weight: 500;
 }

 /* Active nav item */
 .navbar .nav-link.active {
     color: red !important;
     text-decoration: underline;
 }

 /* Optional hover effect */
 .navbar .nav-link:hover {
     color: red !important;
 }

 .custom-img {
     max-height: 425px;
     /* limits height */
     width: auto;
     /* keeps aspect ratio */
 }

 @media (max-width: 768px) {
     .custom-img {
         max-height: 250px;
         /* smaller for mobile */
     }
 }

  .lead {
    font-size: 1.1rem;
    line-height: 1.6;
  }
