/* Animate image: simple scale and fade-in effect */
.base-img   { 
    display:block; 
    width:100%; 
    height:auto; 
    transition:transform 1s ease;
}

.hover-img {
    position:absolute;
    inset:0;
    width:100%; 
    height:100%; 
    object-fit:cover; 
    opacity:0; 
    transition:opacity .3s ease; 
    z-index:2;
}

/* hover properties */



.works-grid.hover-white .work-item:hover .work-img:after

{
    background: #00000000;
}

/* carousel next prev icon */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {

    display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #888888;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
  position: absolute;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #5c9ef4;
}

.carousel-control-prev-icon {
    left: -150%;
}
.work-item:hover .work-intro {
    font-size: 15px;
    font-weight: 100;
    letter-spacing: -0.00200em;
    line-height: 1.1;
}
.btn-mod, a.btn-mod {
    background-color:#0081c6;
}

.btn-mod:hover, .btn-mod:focus, a.btn-mod:hover, a.btn-mod:focus {
    background-color: #0081c6;
}


.ci-icon:before, .mt-icon:before {
    background: #0081c6;
}

.footer-social-links a:hover::before {
    background: #0081c6;
}

/* Responsive Grid for Charts */
.chart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Canvas Styling */
canvas:hover {
  background: #ffffff;
  border-radius: 8px;

  padding: 20px;
}

canvas:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.chart-radar {
 padding: 0 0 100px 0;
}

   /* Hover shadow & lift */
    .card-hover {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .card-hover:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    /* Optional: circular logo */
    .logo-circle {
      border-radius: 50%;
      object-fit: cover;
    }


    /* Container */
    .image-box {
      position: relative;
      display: inline-block;
      overflow: hidden;
      width: 300px;       /* set your width */
      height: 200px;      /* set your height */
      font-family: sans-serif;
      cursor: pointer;
    }

    /* Base image */
    .image-box img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: filter .3s ease;
    }

    /* Overlay layer */
    .image-box .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1rem;
      opacity: 0;
      transition: background .3s ease, opacity .3s ease;
    }

    /* Text styling */
    .image-box .overlay .info {
      font-size: 1.1rem;
      line-height: 1.4;
      transform: translateY(10px);
      transition: transform .3s ease;
    }

    /* Hover state */
    .image-box:hover img {
      filter: brightness(40%);
    }
    .image-box:hover .overlay {
      background: rgba(0,0,0,0.6);
      opacity: 1;
    }
    .image-box:hover .overlay .info {
      transform: translateY(0);
    }

.team-item-image img

 {
 
   filter: grayscale(1); 
}

.team-item-decoration {
filter: grayscale(1);
}

.no-mobile .team-item:hover .team-item-image:after {
    background: #0081c6d1;
}

.work-item > a {
    padding: 0 0 30px 0;
}

.banner-image-1 {
    width: 110%;
    margin: 22% 0px 0px 0px;
}
