
/* Add this to your CSS file, include the hover effect for the served sectors card */
.served-sectors-card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  border-radius: 0.5rem;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.served-sectors-card:hover {
  transform: translateY(-5px); /* Slight lift effect */
  box-shadow: 0 6px 12px 0 rgba(0,150,0,0.5); /* Green glow effect */
}

.served-sectors-card .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media (max-width: 768px) {
  .served-sectors-card .card-body {
    padding: 1.25rem;
  }
}

.served-sectors-card .card-text {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

/* Add to your CSS file */
.blob {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 10px;
  overflow: hidden;
}

.green-blob {
  background: #A6E22E;
  transform: translate(100px, 150px);
}

.yellow-blob {
  background: #E6DB74;
  transform: translate(200px, -50px);
}

.blue-blob {
  background: #66D9EF;
  transform: translate(300px, 100px);
}

.red-blob {
  background: #F92672;
  transform: translate(400px, 50px);
}

.purple-blob {
  background: #AE81FF;
  transform: translate(500px, 150px);
}

.absolute {
  position: absolute;
}

.object-cover {
  object-fit: cover;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.m-4 {
  margin: 1rem;
}

/* Ensure the blob shapes are as desired, you might need to tweak the 'transform' property values */

/* CSS */
@media (max-width: 767px) {
  .col-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

@media (min-width: 768px) {
  .col-md-2 {
    max-width: 20%;
    flex: 0 0 20%;
  }
  
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

h1 {
    font-family: 'Poppins', Arial, Helvetica, freesans, sans-serif;
    font-weight: 400;
    color: rgb(33, 33, 33); /* Dark grey color */
    font-size: 46px;       /* Font size */
    line-height: 60px;     /* Line height */
}
@media (max-width: 576px) { /* Adjust max-width as needed */
    .contact-info {
        font-size: 14px; /* Reduce the font size for smaller screens */
    }
}

/* Apply this class to the phone number */
.contact-info {
    font-size: 16px; /* Default font size for larger screens */
}

@media (max-width: 767px) {
    .footer-menu {
        display: none;
    }
}

/* Default size for larger screens */
img[alt="nursery and plants"] {
    width: 271px;
    height: 70px;
}

/* Size for smaller screens (e.g., max-width: 767px is a common breakpoint for mobile devices) */
@media (max-width: 767px) {
    img[alt="nursery and plants"] {
        width: 161px;
        height: 46px;
    }
}

@media only screen and (max-width: 768px) {
    .responsive-img {
        width: 100%;
        height: auto;
    }
}
