/* Title for All Projects */
.projects-title {
  text-align: center;
  margin-bottom: 30px;
}

.projects-title h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000; /* Changed to black */
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Styling for Project Cards */
.project-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Project Image Styling */
.project-image img {
  width: 100%;  /* Ensure the image takes full width */
  height: 100px; /* Fixed height for consistency */
  object-fit: cover; /* Maintain aspect ratio */
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.project-image img:hover {
  transform: scale(1.05);
}

/* Project Title Styling */
.project-title {
  font-size: 1 rem;
  font-weight: bold;
  color: #000; /* Changed to black */
  margin-top: 15px;
  transition: color 0.3s ease;
}

.project-title:hover {
  color: #333; /* Darker black shade for hover effect */
}

/* Project Details Styling */
.project-launching-soon,
.project-target-irr,
.project-asset-value,
.project-asset-type,
.project-minimum-investment {
  font-size: 13px;
  margin: 10px 0;
  color: #000; /* Changed to black */
  text-align: left;
}

.project-launching-soon strong,
.project-target-irr strong,
.project-asset-value strong,
.project-asset-type strong,
.project-minimum-investment strong {
  color: #000000;
}

/* Button Styling */
.btn-primary {
  background-color: #007bff;
  border: none;
  font-size: 1.1rem;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project-card {
    padding: 15px;  
  }

  .projects-title h2 {
    font-size: 2rem;
  }
}

.disabled-button {
  background-color: gray !important;
  cursor: not-allowed !important;
  pointer-events: none;
}
