html, body {
  margin: 0; padding: 0;
  width: 300px; height: 250px; overflow: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Arial, 'Noto Sans Bengali', sans-serif;
  background: #ffffff;
}

.cta { 
  border: 0;
  padding: 8px 14px; 
  border-radius: 50px;
  background: linear-gradient(180deg, #2563eb, #1e40af);
  color: #fff; 
  font-weight: 700; 
  font-size: 14px;
  cursor: pointer; 
  float: right; 
  margin-top: 10px; 
  margin-right: 5px;
}


.center {
	top: 50%;
	left: 50%;
	margin: auto;
	transform: translate(-50%, -50%);
	height: 100%;
	width: 100%;
	position: relative;
}

.banner {
	width: 300px;
	height: 250px;
	position: relative;
	transform-style: preserve-3d;
	perspective: 1000px;
  position: absolute;
}

.front-face, .back-face {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px !important;
	height: 250px !important;
	text-align: center;
	background: url(/add/new_test/3.webp);
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	backface-visibility: hidden;
	transform-style: preserve-3d;
}




.contents {
	width: 300px !important;
	height: 250px !important;
	perspective: 1000px;
	transform: translateZ(60px) scale(0.94);
}



.logo img{
  
  width: 100px;
  float: left;
  margin-left: 10px;
  margin-top: -20px;
  
}


.tag img {
  position: absolute;
  bottom: 120px;
  left: 8px;
  width: 160px;
  z-index: 10;
}


.leaf  img{
  position: absolute;
  width: 170px;
  top: 145px;
  right: 130px;
}



.i-btn {
  cursor: pointer;
  position: absolute;
  
  z-index: 2;
  width: 25px;
  top: 205px;
  left: 150px;
}

.i-details {
  display: none;
  position: absolute;
  left: 30px;
  top: 205px;
  background: #fff;
  color: #333;
  
  border-radius: 4px;
  z-index: 1;
  min-width: 120px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.i-btn-wrapper:hover .i-details,
.i-btn-wrapper:focus-within .i-details {
  display: block;
  animation: slideInRTL 0.3s forwards;
}

@keyframes slideInRTL {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
