 .transformation-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #006d75;
  padding: 60px 40px;
  color: white;
}

.content h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #d9f0f0;
}

.cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  text-decoration: none;
  padding: 15px 30px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e0a800;
  color:#000;
}

.image-container {
  flex: 1 1 400px;
  text-align: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
}
  

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 1;
}

.overlay-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.overlay-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.overlay-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.stat-box {
  background-color: #276ebe; /* Semi-transparent green */
  padding: 1.5rem 2rem;
  border-radius: 10px;
  min-width: 180px;
}

.stat-box h2 {
  font-size: 2rem;
  margin: 0;
}

.stat-box p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
}
.project-two__content-box {
    position: absolute;
    bottom: 27px;
    left: 0px;
    padding: 10px;
    padding-right: 10px;
    background-color: var(--careon-white);
    border-left: 0px solid var(--careon-primary);
    border-radius: 5px;
    opacity: 0;
    transform: translateY(42px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 2;
}
.smartbox
{
    margin-bottom:20px;
    padding:10px;
    border:1px solid grey;
    border-radius:5px;
}
@media only screen and (max-width: 600px) {
    .banner-one {
    padding: 10px 0 0;
}
.overlay-content h1 {
    font-size: 2rem;
}
}
.project-two__content-box {
    width: 100%;
    opacity:1;
    bottom:70px;
}