*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'inter', sans-serif;
}

.text-decoration{
    color: #7353F6;
}
.bg-decoration{
    background-color: #7353F6;
}


/* -----------------Header----------------------------------------------- */

  .hero-section h1, .hero-section h2 {
    text-align: center;
  }
  /* Default background image */
 


.custom-hover-box:hover h3 {
      color: #7353F6;
    }


    .hero-section h1,
    .hero-section h3 {
      margin-bottom: 1rem;
    }

    .hero-section .btn {
      margin-top: 2rem;
    }

    @media (max-width: 576px) {
      .hero-section h1 {
        font-size: 2rem;
      }

      .hero-section h3 {
        font-size: 1.25rem;
      }

      .hero-section .btn {
        font-size: 1rem;
      }
    }
  /* -----------------Circle Titans----------------------------------------------- */
  .circle-titans img {
    border-radius: 50%;
    width: 100%;
    height: auto;
    max-width: 150px;
  }
  .text-decoration {
    color: #7353F6;
  }
  .empower-section {
    background: #f3effe;
  }
  .card-custom {
    background-color: #7353F6;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    position: relative;
  }
  /* -----------------Call to action   ----------------------------------------------- */
  .bg-danger-custom {
    background-color: #dc3545;
    color: white;
}
.btn-light-custom {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.half-height {
    height: 100vh;
}
.image-column {
    /* background-image: url('./Ontropi_Homepage_Images/5.png'); Replace with your image path */
    background-size: cover;
    background-position: center;
}
.text-column {
    display: flex;
    align-items: center;
    justify-content: center;
}
.container-fluid1 {
  background-color: #f3effe;
}

/* -----------------images------------- */

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 200px;
}

.image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: filter 0.3s ease;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(128, 0, 128, 0); 
  border-radius: 5px;
  transition: background-color 0.3s ease;
  pointer-events: none; 
}

.image-container:hover .overlay {
  background-color: #7353F6;
}

.overlay h4 {
  margin: 0;
  padding: 10px;
  color: white;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  white-space: pre-line;
}.investor-card {
  transition: transform 0.3s, box-shadow 0.3s, color 0.3s;
}

.investor-card img {
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 50%; /* Make the image circular */
}

.investor-card:hover img {
  transform: scale(1.1); /* Enlarge the image */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Add a larger shadow */
}

.investor-card:hover h5,
.investor-card:hover p {
  color: purple;
}

