@charset "UTF-8";
/* CSS Document */

.overlay-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px; /* Adjust as needed */
  height: auto;
  z-index: 2;
}

.logo-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.centered-logo {
  max-width: 50%; /* Adjust as needed */
  height: auto;
}

@media (max-width: 768px) {
  .centered-logo {
    max-width: 60%;
  }
  .banner-image {
    height: 180px;
  }
}

.image-card img {
  width: 80%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.full-bg-light {
  background-color: #F3F7FA;
}

.icon-large {
  width: 60px;
  height: 60px;
}

/* Align button to match the start of the paragraph (60px img + 15px gap) */
.align-button-with-text {
  margin-left: 75px;
}

/* Optional: ensure the icon doesn't shrink */
.icon-fixed-size {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.lions-den-bg {
  background-image: url('../img/innovation/innovation-update/lions-den-bg.png');
  background-size: cover;
  background-position: center; /* or adjust to match the alignment visually */
  background-repeat: no-repeat;
  border-radius: 15px;
}


.gradient-text {
  background: linear-gradient(90deg, 
    rgb(1, 206, 255), 
    rgb(130, 2, 126), 
    black /* K:1 from CMYK = full black in RGB */);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; 
  text-fill-color: transparent;
}



  .gradient-text {
    background: linear-gradient(90deg, rgb(1, 206, 255), rgb(130, 2, 126), black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }


