/* Define global custom properties */
:root {}

/* image css */
/* Image Container */
.wel_img_div {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 1;
  background: white;
}

.wel_img_div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.two_col_img_div {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

  .two_col_img_div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
  }

/* Carousel Navigation */
.carousel_nav {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  display: flex;
  gap: 15px;
}

.carousel_arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(12, 130, 192, 0.2);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.carousel_arrow:hover {
  background: #0C82C0;
  transform: translateY(-3px);
}

.carousel_arrow:hover .carousel_icon {
  fill: white;
}

.carousel_icon {
  width: 20px;
  height: 20px;
  fill: #0C82C0;
  transition: all 0.3s ease;
}


.card-img-container {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

  .icon-container {
    width: 40px;
    height: 40px;
  }