/* About Page Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    background: url('/Images/Anant-Tantu-logo-only.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    
    text-align: center;
    color: #fff;
    animation: fadeInUp 1.5s ease-out forwards;
  }
  .about-hero h2 {
    font-size: 3rem;
    
  }
  .about-hero p {
    font-size: 1.5rem;
  }
  
  /* About Content Section */
  .about-content {
    padding: 60px 20px;
    background: #fff;
  }
  .about-content .container {
    max-width: 800px;
    margin: auto;
    animation: fadeIn 1.5s ease-out;
  }
  .about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .signature {
    font-style: italic;
    text-align: right;
  }
  
  /* Fade In Up Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(-150px);
    }
}
    
    @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }
      
  
  