/* Reset */
body, h1, p, div, section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Body styling */
  body {
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
  }
  
  /* Container */
  .container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* About Us Section */
  .about-us {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    max-width: 1200px;
    margin: 20px;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .text-section {
    padding: 40px;
    color: #ffffff;
    animation: slideIn 1.2s ease-in-out;
    max-width: 60%;
  }
  
  .text-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    animation: textReveal 1.2s ease-in-out;
  }
  
  .text-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .cta-button {
    background-color: #ffffff;
    color: #2575fc;
    border: none;
    padding: 10px 25px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.4s ease, transform 0.2s ease;
  }
  
  .cta-button:hover {
    background-color: #f9f9f9;
    transform: scale(1.1);
  }
  
  /* Image Section */
  .image-section {
    overflow: hidden;
    animation: imageFadeIn 1.5s ease-in-out;
  }
  
  .team-img {
    width: 600px;
    height: auto;
    animation: imgFloat 4s ease-in-out infinite alternate;
    display: block;
  }
  
  /* Animations */
  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes slideIn {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
  }
  
  @keyframes textReveal {
    0% { opacity: 0; transform: scaleY(0); }
    100% { opacity: 1; transform: scaleY(1); }
  }
  
  @keyframes imageFadeIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
  }
  
  @keyframes imgFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-us {
      flex-direction: column;
      max-width: 95%;
    }
    
    .text-section {
      max-width: 100%;
      text-align: center;
    }
  
    .image-section {
      display: flex;
      justify-content: center;
    }
  
    .team-img {
      width: 100%;
      max-width: 400px;
    }
  }
  