  .container{
	  min-height:auto !important;
  }

  .btn:hover {
    background-color: #fbb42c !important;
  }

  .hero-banner {
    min-height: 200px;
    max-height: 300px;
    /*height: auto;*/
    padding: 5px 10px;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    text-align: center;
  }

  .hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(197, 46, 59, 0.6));
    z-index: 2;
  }

  .hero-content {
    z-index: 3;
    position: relative;
    max-width: 800px;
    padding: 0 15px;
  }

    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    .animate-fade {
    animation: fadeInUp 0.8s ease-out;
    }

    .animate-fade-delay {
    animation: fadeInUp 1.2s ease-out;
    }

    .section {
      padding: 60px 0;
    }

    .section img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

  .section img:hover {
      transform: scale(1.03);
  }

  .section {
      padding: 60px 0;
  }

.service-nav .nav-link {
  padding: 8px 0;
  font-weight: 500;
  color: #555;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}

.service-nav .nav-link:hover {
  color: #c52e3b;
  border-left: 3px solid #c52e3b;
  background-color: #f8f8f8;
}

.service-nav .nav-link.active {
  color: #c52e3b;
  border-left: 3px solid #c52e3b;
  font-weight: 600;
  background-color: #f8f8f8;
}


  .founder-section h3 {
    font-weight: 600;
  }

  .founder-section p.lead {
    font-size: 1.2rem;
    color: #444;
  }

  .publications-section h2 {
    font-weight: 600;
  }