.dr1044whyus {
  background: linear-gradient(180deg, #e3f2fd, #bbdefb);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #0d47a1;
  overflow: hidden;
}

.whyus-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.whyus-title {
  font-size: 2.6rem;
  color: #01579b;
  margin-bottom: 50px;
  position: relative;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

.whyus-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

.whyus-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.whyus-img {
  width: 300px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(13, 71, 161, 0.3);
  background: #fff;
  padding: 20px;
  transition: transform 0.4s ease;
}

.whyus-img:hover {
  transform: scale(1.05) rotate(-3deg);
}

.whyus-right {
  flex: 2;
  font-size: 1.05rem;
  line-height: 1.8;
}

.whyus-right .intro {
  font-size: 1.2rem;
  color: #01579b;
  margin-bottom: 15px;
}

.whyus-right a {
  color: #0277bd;
  text-decoration: none;
}

.whyus-right a:hover {
  text-decoration: underline;
}

.whyus-right .highlight {
  background: linear-gradient(90deg, #81d4fa, #29b6f6);
  color: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
}

/* Fade-in animation */
.fadein-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fadein-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .whyus-content {
    flex-direction: column;
    text-align: center;
  }
  .whyus-img {
    width: 220px;
  }
  .whyus-right {
    font-size: 1rem;
  }
}