/* added new css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #0d0d0d;
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  gap: 30px;
}

.col-lg-4 {
  flex: 0 0 48%;
  box-sizing: border-box;
}

.case-study-item {
  background-color: #1a1a1a; /* Dark background for cards */
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  margin-bottom: 20px;
}

.case-study-item:hover {
  transform: translateY(-5px);
}

.case-study-image img {
  width: 100%;
  height: auto;
  display: block;
}

.case-study-content {
  padding: 20px;
}

.case-study-content h3 {
  font-size: 1.6em;
  color: #ffffff;
  margin: 10px 0;
  width: auto;
  height: auto;
  padding: 10px;
}

.case-study-content p {
  font-size: 1em;
  line-height: 1.5;
  color: #cccccc;
  margin: 0 0 20px;
}

.case-study-stats {
  width: 180px;
  border-radius: 8px;
  float: right;
  margin-right: 20px;
  text-align: center;
  /* background-color: #333; */
  padding: 10px;
}

.stat-percentage {
  /* display: block; */
  font-size: 1em;
  color: #86a63d;
  font-weight: bold;
}

.stat-label {
  /* display: block; */
  font-size: 0.7em;
  color: #ffffff;
  font-weight: 100;
}

.btn {
  font-size: 1em;
  padding: 12px 20px;
  background-color: #86a63d;
  color: #000;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
}

.btn:hover {
  background-color: white;
  color: black;
}

@media (max-width: 768px) {
  .col-lg-4 {
    flex: 0 0 100%;
  }

  .case-study-content h3 {
    font-size: 1.6em;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 10;
    width: auto;
    height: auto;
    padding: 10px;
  }
}
