 .aboutus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  gap: 30px;
  flex-wrap: wrap;
  background-color: #ffffff;
}

.aboutus div {
  width: 48%; 
  box-sizing: border-box;
}

.about-us-left {
  padding-left: 80px;
  text-align: left;
}

.aboutus img {
  width: 100%;
  max-width: 500px;  
  height: auto;
  max-height: 450px; 
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.aboutus img:hover {
  transform: scale(1.05);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2);
}

.aboutside {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}

.aboutside h6 {
  font-size: 18px;
  color: #3f51b5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.aboutside h1 {
  font-size: 36px; 
  font-weight: 700;
  margin: 15px 0;
  color: #333;
}

.aboutside strong {
  display: block;
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
}

.aboutside p {
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
  color: #555;
  margin-bottom: 20px;
}

.know-btn {
  background: linear-gradient(to right, #3f51b5, #10089d);
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  text-decoration: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.know-btn:hover {
  transform: translateY(-3px);
}

.aboutside ul {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.aboutside ul li {
  font-size: 16px;
  color: #333;
  align-items: center;
  display: flex;
}

.aboutside ul li i {
  color: #4caf50;
  margin-right: 10px;
  font-size: 18px;
}

.aboutside button {
  padding: 12px 30px;
  background-color: #3f51b5;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.aboutside button i {
  margin-right: 8px;
}

.aboutside button:hover {
  background-color: #2c387e;
  transform: translateY(-3px);
}

.aboutside button:active {
  background-color: #1a237e;
  transform: translateY(1px);
}


@media (max-width: 1440px) {
  .aboutus {
    flex-direction: row;
    justify-content: space-around;
  }

  .aboutus img {
    max-width: 400px;  
  }

  .aboutside {
    width: 80%;
    max-width: 600px;
  }

  .aboutside h1 {
    font-size: 32px;
  }

  .aboutside p {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .aboutus {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

  .aboutus div {
    width: 100%;
  }

  .about-us-left {
    padding-left: 0;
  }

  .aboutus img {
    width: 100%;
    max-width: 350px; 
    height: auto;
  }

  .aboutside {
    width: 100%;
    max-width: 500px;
  }

  .aboutside h1 {
    font-size: 28px;
  }

  .aboutside strong {
    font-size: 20px;
  }

  .aboutside p {
    font-size: 14px;
  }

  .aboutside ul {
    justify-content: center;
  }

  .aboutside button {
    justify-content: center;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .aboutside h1 {
    font-size: 24px;
  }
  .about-us-left img {
    display: block;
margin: auto;
  }


  .aboutside p {
    font-size: 14px;
  }

  .aboutside ul {
    flex-direction: column;
    gap: 10px;
  }

  .aboutside button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .aboutus {
    padding: 20px;
  }

  .aboutus div {
    width: 100%;
    padding: 0;
  }

  .about-us-left {
    padding-left: 0;
    text-align: center;
  }

  .aboutus img {
    width: 100%;
    max-width: 300px;  
  }

  .aboutside h1 {
    font-size: 20px;
  }

  .aboutside p {
    font-size: 12px;
  }

  .aboutside button {
    font-size: 14px;
    padding: 10px 20px;
  }
 } 