/* Custom Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .navbar {
    animation: fadeInDown 1s;
  }
  
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Parallax Background */
  .parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-image: url('assets/about.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
  
  /* Overlay to make text readable */
  .parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
  }
  
  .container {
    position: relative;
    z-index: 2;
  }
  
  #quoteDisplay {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffdd57;
  }
  
  /* Custom Styles for About Section */
#about .custom-heading {
    font-size: 2rem; 
    font-weight: bold; 
    color: #ffdd57;
    margin-bottom: 1.5rem; }
  
    #about p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
  }
  
  #about .lead {
      font-size: 1.25rem;
      font-weight: 500;
  }
  
  #about ul {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
  }
  
  #about ul li {
      margin-bottom: 0.75rem;
  }
  
  footer {
      position: relative;
      bottom: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.8);
  }
  