/* ====== MTA Laboratory Custom Styles ====== */

/* Font custom (kalau nak import Google Font, boleh tambah @import) */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Custom shadow */
.card-shadow {
  box-shadow: 0 4px 15px rgba(0, 0, 255, 0.1);
}

/* Hover animation for service boxes */
.service-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2); /* blue-600 */
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Section spacing (kalau nak lebih kawalan) */
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Button pulse effect (optional) */
.btn-pulse:hover {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Footer glow (optional aesthetic) */
footer {
  box-shadow: 0 -3px 10px rgba(37, 99, 235, 0.3);
}

/* Body text */
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

/* Headings */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Optional: stronger title */
h1 {
  font-weight: 700;
}


body {
  transition: background-color 0.4s ease, color 0.4s ease;
}

body, html {
  margin: 0;
  padding: 0;
}

@keyframes floating {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
  }

  .animate-floating {
    animation: floating 3s ease-in-out infinite;
  }

  body {
  font-family: 'Poppins', sans-serif;
}



