@charset "UTF-8";
/* Hover effect only inside Why Us section */
#whyus .p-4 {
  transition: all 0.3s ease-in-out;
}

#whyus .p-4:hover {
  background-color: #708090;
  color: #ffffff;
  transform: scale(1.02);
}

#whyus .p-4:hover h5,
#whyus .p-4:hover p {
  color: #3D74B6;
}

/* ===============================
   Headline Animations (Hero)
   =============================== */
/* Headline: slide from top down */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-slide-down {
  animation: slideDown 1s ease-out forwards;
}

/* Project Consultation button */
.btn-consult {
  background-color: #3D74B6;
  color: #ffffff;
  border: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-consult:hover {
  background-color: #000; /* turns black */
  color: #fff;
}

/* Download Company Profile button */
.btn-download {
  background-color: #f8f9fa; /* Bootstrap light */
  color: #000;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-download:hover {
  background-color: #3D74B6; /* turns blue */
  color: #fff; /* text becomes white */
}

/* ===============================
   Patners Logo Slider Animation
   =============================== */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-slide-track {
  display: flex;
  width: 2400px; /* logo width * number of logos */
  animation: scroll 25s linear infinite;
}

.logo {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.logo img {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Style navbar links */
.navbar-nav .nav-link {
  text-decoration: underline; /* Underline the text */
  text-decoration-color: black; /* Set underline color */
  margin-left: 15px; /* Space between links */
  margin-right: 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #3D74B6 !important; /* Change text color on hover */
}

/* Active page link stays blue */
.navbar-nav .nav-link.active {
  color: #3D74B6 !important;
}

.navbar-nav .nav-link:first-child {
  margin-left: 0; /* Remove left margin from the first link */
}

.brand-text {
  font-family: "Montserrat", sans-serif; /* Unique font */
  font-size: 1.2rem;
  text-decoration: none;
}

.brand-medware {
  color: #3D74B6;
}

.brand-solutions {
  color: grey;
}

.brand-ltd {
  color: black;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030; /* Ensure it stays above other elements */
}

/* Featured projects */
.fixed-img {
  height: 220px; /* uniform image height */
  object-fit: contain; /* crop edges instead of stretching */
  width: 100%; /* full width of card */
}

/* Scope styles only to the servicesbrief section */
/* ===============================
   Services Section Animations
   =============================== */
/* Subheadline: slide in from right */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-slide-right {
  animation: slideInRight 1s ease-out forwards;
}

.animate-delay {
  animation-delay: 1s; /* ensures subheadline appears after headline */
}

#servicesbrief {
  max-width: 60%; /* keeps cards centered on page */
  margin: 0 auto; /* center the section */
}

#servicesbrief .services-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
}

#servicesbrief .services-card h5 {
  color: #3D74B6; /* brand color for headings */
}

#servicesbrief .services-card ul li {
  position: relative;
  padding-left: 1.5rem; /* space for the checkmark */
  margin-bottom: 0.6rem;
  color: black; /* dark shade text */
  font-size: 1rem;
}

#servicesbrief .services-card ul li::before {
  content: "●"; /* Unicode for black circle */
  position: absolute;
  left: 0;
  color: #000000; /* black color */
  font-weight: bold;
  font-size: 0.8rem; /* adjust size as needed */
  top: 0.2em; /* vertical alignment */
}

#servicesbrief .services-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/*# sourceMappingURL=style.css.map */
