/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
  }
  
  footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  
  h1, h2, h3 {
    color: #2c3e50;
  }
  
  .navbar {
    background-color: #3498db;
  }
  
  .navbar-brand {
    color: #fff;
  }
  
  .navbar-nav .nav-item .nav-link {
    color: #314e5b;
    font-weight: 500;
  }
  
  .navbar-nav .nav-item .nav-link.active {
    font-weight: bold;
  }
  
  .navbar-toggler-icon {
    background-color: #fff;
  }
  
  /* Section Styling */
  .container {
    max-width: 1200px;
  }
  
  /* Hero Image */
  .text-center img {
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
  }
  
      /* Banner Section Styles */
      .banner-section {
        position: relative;
        width: 100%;
        height: 100vh; /* Full viewport height */
        overflow: hidden;
      }
  
      .banner-image {
        background-image: url('./img/dna-8346570_1920.png'); /* Replace with your banner image */
        background-size: cover; /* Make sure the image covers the entire area */
        background-position: center center; /* Center the image */
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
      }
  
      /* Content on top of the banner */
      .banner-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* Center the content */
        color: white;
        text-align: center;
        padding: 0 20px;
      }
  
      /* Title Styling */
      .banner-content h1 {
        font-size: 2.7rem;
        font-weight: bold;
        margin: 0;
        color: papayawhip;
      }
  
      /* Description Styling */
      .banner-content p {
        font-size: 1.25rem;
        margin-top: 10px;
        font-style: italic;
      }
  
      /* Responsive Design */
      @media (max-width: 768px) {
        .banner-content h1 {
          font-size: 2.5rem;
        }
  
        .banner-content p {
          font-size: 1rem;
        }
      }
  
      @media (max-width: 480px) {
        .banner-content h1 {
          font-size: 2rem;
        }
  
        .banner-content p {
          font-size: 0.9rem;
        }
      }
  
      /* Optional: Add overlay for better readability on the banner */
      .banner-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
      }