/* Body CSS */
body {
  margin: 0;
  min-height: 100vh;
  min-width: 344px;
  background-color: white;
}

strong {
  font-size: 1.5rem;
  color: darkgreen;
}

/* Navbar CSS */
.navbar-nav {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.dropdown-link {
  color: darkblue;
}

#logo-call-section {
  max-height: 72px;
}
#call-btn {
  border-radius: 12px;
  max-height: 3rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  text-align: center;
  align-items: center;
  background-color: rgba(250, 189, 82, 0.94);
  color: darkblue;
}
#call-btn:hover {
  background-color: gold;
  color: blue;
}
#call-btn:active {
  background-color: darkgoldenrod;
}
a.nav-link {
  color: darkblue;
}
.hover-link:hover {
  color: blue !important;
}

/* Hero Section */
.hero {
  background-color: wheat;
}

/* Background color for Nav at less than small (≥768px) */
@media (max-width: 576px) {
  .bg-mobile-nav {
    background-color: white; /* Light Sage */
  }
}
@media (min-width: 576px) {
  .bg-desktop-nav {
    background-color: rgba(250, 189, 82, 0.94);
  }
}
@media (max-width: 767.5px) {
  .bg-mobile-hero {
    background-color: white !important;
  }
}

/* Custom Breakpoint for Triple XL */
@media (min-width: 1600px) {
  .d-xxxl-flex {
    display: flex !important;
  }
}

/* Custom Breakpoint for Quad XL */
@media (min-width: 1900px) {
  .d-xxxxl-flex {
    display: flex !important;
  }
}

/* Custom Breakpoint for Quad XL */
@media (min-width: 2100px) {
  .d-xxxxl-flex {
    display: flex !important;
  }
}

/* Services */

.card-img {
  max-width: 100%;
  height: 60%;
  flex: 1 1 auto;
  object-fit: cover; /* Ensures the image covers the container */
}

@keyframes growShrink {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.grow-shrink {
  animation: growShrink 2s ease-in-out;
}
