.about-us {
    padding: 80px 60px;
    background: linear-gradient(to bottom, #f0fafa, #ffffff);
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .about-text {
    flex: 1 1 50%;
  }
  
  .about-text h2 {
    font-size: 38px;
    color: #0099cc;
    margin-bottom: 20px;
    position: relative;
  }
  
  .about-text h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #00bcd4;
    margin-top: 8px;
    border-radius: 2px;
  }
  
  .about-text p {
    font-size: 18px;
    line-height: 1.8;        
    margin-bottom: 16px;     
    color: #333;
    text-align: justify;     
    text-justify: inter-word; 
  }
  
.about-text strong {
  color: #0099cc;         
}

.about-text em {
  color: #00aabb;
  font-style: italic;
}
  
  .about-text .highlight {
    font-size: 20px;
    font-weight: bold;
    color: #00aabb;
    margin-top: 25px;
    padding: 12px 18px;
    background: #e6f9ff;
    border-left: 5px solid #00bcd4;
    border-radius: 6px;
  }
  
  .about-image {
    position: relative;
    flex: 1 1 40%;
    text-align: center;
  }
  
  .about-image .main-img {
    width: 100%;
    max-height: 600px; /* ↓ Decreased height */
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  }
  
  /* Floating drops */
  .drop {
    position: absolute;
    width: 45px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.9;
  }
  
  .drop1 { top: -20px; left: 15%; animation-delay: 0s; }
  .drop2 { bottom: -30px; right: 18%; animation-delay: 2s; }
  .drop3 { top: 35%; right: -40px; animation-delay: 4s; }
  .drop4 { top: 10%; right: 10%; animation-delay: 3s; }
  .drop5 { bottom: 10%; left: -35px; animation-delay: 5s; }
  
  @keyframes float {
    0% { transform: translateY(0px); opacity: 0.9; }
    50% { transform: translateY(-25px); opacity: 1; }
    100% { transform: translateY(0px); opacity: 0.9; }
  }
  
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }
  
    .about-text, .about-image {
      flex: 1 1 100%;
    }
  
    .about-text h2 {
      font-size: 30px;
      margin-bottom: 15px;
    }
  
    .about-text p {
      font-size: 16px;
      line-height: 1.9;
      margin-bottom: 14px;
      text-align: left; 
    }
  
    .about-text .highlight {
      font-size: 18px;
      padding: 10px 15px;
    }
  
    .about-image .main-img {
      width: 100%;
      max-height: 450px; /* slightly smaller for mobile */
      margin: 0 auto;
    }
  
    .drop {
      width: 30px;
      opacity: 0.7;
    }
  }
  
  