/* === LOGO STYLING === */

/* Default: Mobile (small screens) */
.logo-wrapper {
  width: 160px;
  height: 90px;
}

/* Desktop and larger screens */
@media (min-width: 768px) {
  .logo-wrapper {
    width: 250px;
    height: 140px;
  }
}

/* Optional: Add a smooth resize transition */
.logo-wrapper img {
  transition: transform 0.3s ease;
}

/* Optional hover effect (just polish) */
.logo-wrapper:hover img {
  transform: scale(1.05);
}

/* Custom deep blue color */
.text-our-blue {
  color: #004b8d !important;
}

/* Extra bold font weight (like Tailwind's font-extrabold) */
.fw-extrabold {
  font-weight: 800 !important;
}

/* Make all service cards same height and aligned */
.service-card {
  background: linear-gradient(135deg, #0072ce, #00b050);
  transition: transform 0.3s ease;
  height: 100%;
  min-height: 220px; /* Adjust for consistent card height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Custom heading color and boldness */
.text-our-blue {
  color: #004b8d !important;
}

.fw-extrabold {
  font-weight: 800 !important;
}
