.why-us h3 {
  font-weight: 700;
  font-size: 34px;
  color: #2f4d5a;
  margin-bottom: 30px;
}

.aa:hover {
  color: #fff;
} /*# sourceMappingURL=style.css.map */

.youtube {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.youtube .video-container {
  position: relative;
  padding-bottom: 50%;
  width: 80%;
  height: 0;
}

@media (max-width: 768px) {
  .youtube .video-container {
    width: 100%;
  } /* Adjusted for smaller size */
}

@media (min-width: 1024px) {
  .youtube .video-container {
    width: 50%;
    padding-bottom: 30%;
  } /* Adjusted for larger size */
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Existing classes retained */
.section-bg {
  background-color: #f4f9fc;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  color: #2f4d5a;
}

.section-title p {
  font-size: 18px;
  color: #6c757d;
}

.card-body h5 {
  font-size: 18px;
  font-weight: bold;
  color: #2f4d5a;
}

.card-body p {
  font-size: 14px;
  color: #6c757d;
}

.shadow-sm {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hover-effect:hover {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.pointer {
  cursor: pointer;
}

/* New styles for image handling */
.image-container {
  height: 180px; /* Fixed height for images */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain; /* Maintain aspect ratio */
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card-link:hover {
  text-decoration: none;
}

/* Button styles */
.btn-primary {
  background-color: #67b0d1;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #8ec4dd;
  transform: translateY(-3px);
}
