/**about page**/
.about-container {


      margin: 30px auto;
      padding: 20px;
    }


    .about-text {
    margin: 50px auto;
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

    }
.about-text img {
  width: 20%;
  height: 10%;
  object-fit: fill;
  border-radius: 8px;
  margin-bottom: 15px;
}
.about-text h1 {
      font-size: 2.5rem;
      color: #007bff;
      margin-bottom: 15px;
      text-align: center;
    }

    .about-text p {
      font-size: 1.1rem;
      margin-bottom: 12px;
      text-align: justify;
    }

    .services-section h2 {
      text-align: center;
      color: #007bff;
      margin-bottom: 20px;
    }

    .about_cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .about_card {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .about_card:hover {
      transform: translateY(-5px);
    }

    .about_card img {
      width: 100%;
      height: 60%;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .about_card h3 {
      color: #0056b3;
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .about_card p {
      font-size: 0.95rem;
      color: #444;
    }
    
    @media screen and (max-width:800px) {
     .about-text img {
  width: 100%;
  height: 30%;
  object-fit: fill;
  border-radius: 8px;
  margin-bottom: 15px;
}   
    }
