


._relative{
	position: relative;
	z-index: 2;
}

._absolute{
	position: absolute;
}


.shape-top-left{
	top: 0;
	left: 0;
	height: 50px;
	width: 50px;
	object-fit: contain;
}

.shape-bottom-right{
	right: 0;
	bottom: 0;
	height: 50px;
	width: 50px;
	object-fit: contain;
}

.shape-top-right{
	top: 0;
	right: 0;
	height: 50px;
	width: 50px;
	object-fit: contain;
}

.shape-bottom-left{
	left: 0;
	bottom: 0;
	height: 50px;
	width: 50px;
	object-fit: contain;
}


.z-index-1{
	z-index: -1;
}

.z-index-2{
	z-index: 2;
}

.zoom-img{
	overflow: hidden;
}

.zoom-img img{
	transform: scale(1);
	transition: all .3s;
}

.zoom-img:hover img{
	transform: scale(1.1);
	transition: all .3s;
}

.c-btn-1{
	background: #0B0A23;
}


.img-box {
    height: 700px;
    width: 700px;
    position: absolute;
    bottom: 0;
    right: 10%;
}
 .img-box-wrap {
	z-index: 2;
 }


 .img-1 img {
	object-fit: cover;
	margin: 0 0 0 0 !important;
	height: 100%;
 }




 /* Make team-slider container relative for absolute positioning inside */
.team-slider {
  position: relative;
}

/* Center owl-nav buttons vertically */
.team-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
  pointer-events: none; /* allow clicks to pass through */
}

.team-slider .owl-nav button {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 10px 14px;
  border-radius: 50%;
  pointer-events: auto; /* enable button click */
  transition: 0.3s ease;
}

.team-slider .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.85);
}

/* Center dots below the carousel */
.team-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.team-slider .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  transition: background 0.3s;
}

.team-slider .owl-dot.active span {
  background: #333;
}

 