.bg-gradient {
    background: linear-gradient(145deg, #232323, #2d2d2d);
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(255, 255, 0, 0.3);
  }
  
  ul.list {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  ul.list li {
    list-style: none;
  }
  
  ul.list li::before {
    content: "✔ ";
    color: #ffcc00;
    font-weight: bold;
  }

  /* Grid Layout */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
  padding: 20px;
}

/* Individual Logo Styling */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo {
  max-width: 100%;
  max-height: 80px; /* Adjust for balance */
  object-fit: contain; /* Ensures logos fit without distortion */
  filter: grayscale(80%); /* Makes logos look uniform */
  transition: filter 0.3s ease-in-out;
}

/* Hover Effect */
.client-logo:hover {
  filter: grayscale(0%);
}

/* White Card Container */
.br3.shadow-5.pa4.bg-white {
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Grid Layout */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers logos in the middle */
  align-items: center; /* Keeps everything vertically aligned */
  gap: 30px; /* Adds even spacing */
  max-width: 100%;
  margin: 10px;
  padding: 20px;
}

/* Individual Logo Containers */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px; /* Ensures consistent height for all logos */
  max-height: 100px; /* Prevents oversized logos */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo Images */
.client-logo {
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
  margin: 10px;
}

/* Hover Effect */
.client-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Modal Background Overlay */
.modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  align-items: center;
  justify-content: center;
}

/* Modal Content (Dark Gray Background) */
.modal-content {
  background: #222; /* Dark gray background */
  color: white; /* Ensure text is readable */
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
  text-align: center;
}

/* Close Button */
.close {
  float: right;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Form Inputs */
input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #555;
  border-radius: 5px;
  background: #333; /* Darker input fields */
  color: white;
}

/* Form Submit Button */
button {
  cursor: pointer;
}

/* Hide Modal by Default */
.hidden {
  display: none;
}

.font-m {
  font-family: 'Montserrat', sans-serif;
}